/* ============================================
   RONGRONG SUPPLY CHAIN — Premium CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1e2d45;
  --accent: #e8a020;
  --accent-light: #f5c060;
  --electric: #00c8ff;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --gray: #8a9ab5;
  --gray-light: #c5d0e0;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--gray-light); font-size: 1.05rem; }
a { text-decoration: none; color: inherit; }

/* ---- Layout ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 6px; border: none; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.03em;
}
.btn-primary {
  background: var(--accent); color: var(--navy);
}
.btn-primary:hover {
  background: var(--accent-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,160,32,0.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
}
.btn-electric {
  background: var(--electric); color: var(--navy);
}
.btn-electric:hover { background: #33d4ff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,255,0.3); }

/* ---- Tag / Badge ---- */
.tag {
  display: inline-block; padding: 0.3rem 0.9rem;
  background: rgba(232,160,32,0.15); color: var(--accent);
  border: 1px solid rgba(232,160,32,0.3); border-radius: 100px;
  font-size: 0.8rem; font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem;
}

/* ---- Section Label ---- */
.section-label {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.8rem; display: block;
}

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}
#header.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  color: var(--white);
}
.logo-icon {
  width: 38px; height: 38px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head); font-size: 0.92rem; font-weight: 500;
  color: var(--gray-light); transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 0.4rem; width: 42px; height: 42px;
  position: relative; z-index: 1001;
}
.hamburger .bar {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              width 0.3s ease;
}
/* Open state — morph into X */
.hamburger.is-open .bar-top {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .bar-mid {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .bar-bot {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; padding: 6rem 2rem 2rem;
  flex-direction: column; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--white); border-bottom: 1px solid var(--border); padding-bottom: 1rem;
}
.mobile-menu a:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,200,255,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 20% 80%, rgba(232,160,32,0.05) 0%, transparent 50%),
              linear-gradient(160deg, #0a0f1e 0%, #0d1828 50%, #0a1520 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.06;
  background-image: linear-gradient(var(--electric) 1px, transparent 1px),
                    linear-gradient(90deg, var(--electric) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.25);
  color: var(--electric); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--gray-light); max-width: 580px; margin-bottom: 2.5rem; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
}
.stat { }
.stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 0.3rem; letter-spacing: 0.05em; text-transform: uppercase; }

.hero-visual {
  position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%);
  width: 48%; display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-visual-inner {
  position: relative; width: 100%; max-width: 560px;
  aspect-ratio: 1/1;
}
.globe-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,200,255,0.15);
  animation: rotate linear infinite;
}
.globe-ring:nth-child(1) { inset: 0; animation-duration: 20s; }
.globe-ring:nth-child(2) { inset: 8%; border-color: rgba(232,160,32,0.12); animation-duration: 30s; animation-direction: reverse; }
.globe-ring:nth-child(3) { inset: 20%; border-color: rgba(0,200,255,0.1); animation-duration: 15s; }
.globe-center {
  position: absolute; inset: 28%; background: var(--navy-light);
  border-radius: 50%; border: 2px solid rgba(0,200,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 60px rgba(0,200,255,0.15), inset 0 0 40px rgba(0,200,255,0.05);
}
.node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
}
.node:nth-child(4) { top: 12%; left: 48%; }
.node:nth-child(5) { top: 48%; right: 8%; }
.node:nth-child(6) { bottom: 15%; left: 22%; }
.node:nth-child(7) { top: 28%; right: 18%; background: var(--electric); box-shadow: 0 0 12px var(--electric); }

@keyframes rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 1rem 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 3rem; animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em;
  flex-shrink: 0;
}
.ticker-item .dot { color: var(--accent); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}
.service-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,160,32,0.05) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1.5rem;
}
.service-card h3 { margin-bottom: 0.8rem; color: var(--white); }
.service-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-link {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
  color: var(--accent); display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 0.7rem; }

/* ============================================
   WHY US / FEATURES
   ============================================ */
.features { background: var(--navy-mid); }
.features-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.features-text h2 { margin-bottom: 1.5rem; }
.features-text p { margin-bottom: 2rem; }
.features-list { display: flex; flex-direction: column; gap: 1.2rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feature-check {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
}
.feature-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.9rem; margin: 0; }

.features-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.feat-card {
  background: var(--navy); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: var(--transition);
}
.feat-card:hover { border-color: rgba(0,200,255,0.3); }
.feat-card:first-child { grid-column: span 2; }
.feat-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.feat-label { font-size: 0.85rem; color: var(--gray); margin-top: 0.3rem; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 4rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 35px; left: 12.5%;
  right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--navy-mid); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--accent); margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.step:hover .step-num {
  background: var(--accent); color: var(--navy);
  border-color: var(--accent); box-shadow: 0 0 30px rgba(232,160,32,0.4);
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.88rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}
.testimonial-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(232,160,32,0.25); transform: translateY(-4px); }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--gray-light); font-style: italic;
  margin-bottom: 1.5rem; line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--electric));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; color: var(--navy);
}
.author-name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--gray); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 5rem 4rem; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,160,32,0.08) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #060b15; border-top: 1px solid var(--border); padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 4rem;
}
.footer-about p { color: var(--gray); font-size: 0.92rem; margin: 1.2rem 0 1.8rem; max-width: 300px; }
.footer-socials { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px; background: var(--navy-mid);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition); color: var(--gray);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--gray); font-size: 0.92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px; background: var(--navy);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,200,255,0.06) 0%, transparent 60%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--gray); }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 600; color: var(--gray-light); margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--navy); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.85rem 1.1rem;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--navy-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ============================================
   TRACKING
   ============================================ */
.tracking-box {
  max-width: 700px; margin: 3rem auto 0;
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3rem;
}
.track-input-group { display: flex; gap: 0; }
.track-input-group input {
  flex: 1; background: var(--navy); border: 1px solid var(--border);
  border-right: none; border-radius: 8px 0 0 8px; padding: 1rem 1.2rem;
  color: var(--white); font-family: var(--font-body); font-size: 1rem; outline: none;
  transition: border-color var(--transition);
}
.track-input-group input:focus { border-color: var(--accent); }
.track-input-group button {
  border-radius: 0 8px 8px 0; padding: 1rem 2rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  background: var(--accent); color: var(--navy); border: none; cursor: pointer;
  transition: var(--transition);
}
.track-input-group button:hover { background: var(--accent-light); }

.tracking-result {
  margin-top: 2rem; padding: 1.5rem; background: var(--navy);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: none;
}
.track-status { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.status-badge {
  padding: 0.3rem 0.8rem; border-radius: 100px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.status-transit { background: rgba(232,160,32,0.15); color: var(--accent); border: 1px solid rgba(232,160,32,0.3); }
.status-delivered { background: rgba(0,200,80,0.15); color: #00c850; border: 1px solid rgba(0,200,80,0.3); }

.track-timeline { display: flex; flex-direction: column; gap: 0; }
.track-event {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 0.8rem 0; position: relative;
}
.track-event:not(:last-child)::after {
  content: ''; position: absolute; left: 9px; top: 28px;
  width: 2px; height: calc(100% - 10px); background: var(--border);
}
.track-dot {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
  background: var(--navy-mid); flex-shrink: 0; margin-top: 2px;
  position: relative; z-index: 1;
}
.track-dot.active { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 10px rgba(232,160,32,0.5); }
.track-event-info { flex: 1; }
.track-event-label { font-weight: 500; font-size: 0.92rem; color: var(--white); }
.track-event-meta { font-size: 0.8rem; color: var(--gray); margin-top: 0.1rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info { }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-item h4 { font-size: 0.9rem; font-family: var(--font-head); margin-bottom: 0.2rem; }
.info-item p { font-size: 0.88rem; margin: 0; }

.contact-form-box {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-form-box h3 { margin-bottom: 2rem; }

/* ============================================
   ABOUT
   ============================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
.value-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 4rem; }
.team-card {
  text-align: center; background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 1.5rem;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-4px); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--electric) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--navy); margin: 0 auto 1.2rem;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.85rem; color: var(--accent); font-family: var(--font-head); margin: 0; }

/* ============================================
   GET A QUOTE
   ============================================ */
.quote-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 5rem; align-items: start; }
.quote-form-box {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.quote-info { }
.quote-info h2 { margin-bottom: 1rem; }
.quote-info > p { margin-bottom: 2rem; }
.quote-benefits { display: flex; flex-direction: column; gap: 1rem; }
.quote-benefit { display: flex; gap: 0.8rem; align-items: flex-start; }
.qb-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.qb-text h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.qb-text p { font-size: 0.85rem; margin: 0; }

/* ============================================
   ALERT / TOAST
   ============================================ */
.alert {
  padding: 1rem 1.5rem; border-radius: 8px; margin-top: 1rem; display: none;
  font-size: 0.92rem;
}
.alert-success { background: rgba(0,200,80,0.1); border: 1px solid rgba(0,200,80,0.3); color: #00c850; }
.alert-error { background: rgba(255,60,60,0.1); border: 1px solid rgba(255,60,60,0.3); color: #ff3c3c; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .features-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .about-intro, .quote-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-btn-hide { display: none !important; }
  .hamburger { display: flex; }
  .hero-stats { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .features-visual { grid-template-columns: 1fr; }
  .feat-card:first-child { grid-column: span 1; }
}

/* ============================================
   NEWS
   ============================================ */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 2rem; margin-top: 3rem;
}
.news-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.news-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-6px); box-shadow: var(--shadow); }

.news-card-img {
  display: block; width: 100%; height: 200px; overflow: hidden;
  flex-shrink: 0;
}
.news-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img--placeholder {
  background: var(--navy-light); display: flex;
  align-items: center; justify-content: center; font-size: 3rem;
}

.news-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.9rem; flex-wrap: wrap; gap: 0.4rem;
}
.news-author { font-size: 0.8rem; color: var(--accent); font-family: var(--font-head); font-weight: 600; }
.news-date   { font-size: 0.78rem; color: var(--gray); }
.news-card-body h3 { font-size: 1.1rem; margin-bottom: 0.7rem; line-height: 1.3; }
.news-card-body h3 a { color: var(--white); transition: color var(--transition); }
.news-card-body h3 a:hover { color: var(--accent); }
.news-card-body p { font-size: 0.88rem; margin-bottom: 1.2rem; flex: 1; }

/* pagination */
.pagination { display: flex; gap: 0.6rem; justify-content: center; margin-top: 3rem; }
.page-btn {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  background: var(--navy-mid); border: 1px solid var(--border);
  color: var(--gray); transition: var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--accent); color: var(--navy); border-color: var(--accent);
}

/* single article */
.article-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start;
}
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; width: 100%; }
.article-hero-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.article-meta-top {
  display: flex; gap: 1.5rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.article-excerpt {
  font-size: 1.1rem; color: var(--gray-light); font-style: italic;
  border-left: 3px solid var(--accent); padding-left: 1.2rem;
  margin-bottom: 2rem; line-height: 1.7;
}
.article-content { line-height: 1.85; color: var(--gray-light); }
.article-content h2 { color: var(--white); margin: 2rem 0 1rem; }
.article-content h3 { color: var(--white); margin: 1.5rem 0 0.8rem; }
.article-content p  { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.article-content li { margin-bottom: 0.4rem; }
.article-content strong { color: var(--white); }
.article-content a  { color: var(--accent); }
.article-content a:hover { text-decoration: underline; }
.article-footer { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }

.article-sidebar { position: sticky; top: 100px; }
.sidebar-title {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray);
  margin-bottom: 1.2rem;
}
.related-card {
  display: flex; gap: 0.9rem; align-items: center; padding: 0.8rem;
  border-radius: var(--radius); transition: var(--transition);
}
.related-card:hover { background: var(--navy-mid); }
.related-img {
  width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
}
.related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-img--placeholder {
  background: var(--navy-light); display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem;
}
.related-title { font-size: 0.88rem; font-weight: 500; color: var(--white); margin-bottom: 0.2rem; line-height: 1.3; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }