/* ============================================
   AURUM GLOBAL LOGISTIC — MAIN STYLESHEET
   Clean Corporate Design | 2025
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --navy-dark:    #071426;
  --navy:         #0D1F3C;
  --navy-mid:     #12284A;
  --navy-light:   #1A3660;
  --gold:         #C9A135;
  --gold-light:   #E8B94A;
  --gold-pale:    #FDF6E3;
  --blue-accent:  #1E6FBF;
  --blue-light:   #E8F1FB;

  /* Neutral */
  --white:        #FFFFFF;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-500:     #64748B;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-900:     #0F172A;

  /* Typography */
  --font-head:    'Space Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:    0 24px 64px rgba(0,0,0,0.16);

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);

  /* Spacing */
  --section-py:   96px;
  --container-w:  1280px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Utility Classes --- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy-dark); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section--navy .section-title,
.section--navy-mid .section-title { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}
.section--navy .section-sub,
.section--navy-mid .section-sub { color: var(--gray-300); }

.text-gold { color: var(--gold); }
.text-blue { color: var(--blue-accent); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .section-label { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,161,53,0.35); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 26px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 12px 26px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-dark);
  color: var(--gray-300);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 16px; }

.topbar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  transition: color 0.2s;
}
.topbar a:hover { color: var(--gold); }
.topbar a i { font-size: 12px; }

.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--gray-400);
  font-size: 12px;
  transition: all 0.2s;
}
.topbar-social a:hover { background: var(--gold); color: var(--navy-dark); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: all 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo img { height: 48px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-100);
}
.nav-link i { font-size: 10px; transition: transform 0.2s; }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  border: 1px solid var(--gray-200);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}
.nav-dropdown a i {
  width: 20px;
  color: var(--gold);
  font-size: 13px;
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--navy); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,20,38,0.92) 0%,
    rgba(13,31,60,0.78) 50%,
    rgba(13,31,60,0.40) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}
/* Hero brand stamp */
.hero-brand-stamp {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.5s var(--ease-out) both;
}
.hero-logo {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-brand-name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-brand-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(201,161,53,0.15);
  border: 1px solid rgba(201,161,53,0.35);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--ease-out) both;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s var(--ease-out) both;
}
.hero-title .line2 { color: var(--gold); }

.hero-desc {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s 0.2s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s 0.3s var(--ease-out) both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s var(--ease-out) both;
}
.hero-stat { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1s both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   TRUST TICKER
   ============================================ */
.ticker {
  background: var(--navy-dark);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ticker-item i { color: var(--gold); font-size: 14px; }
.ticker-dot { color: var(--gold); }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--blue-accent);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--gold-pale);
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-accent);
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================
   CHINA SPECIALIZATION SECTION
   ============================================ */
.china-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.china-section::before {
  content: '中国';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 260px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.china-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.china-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.china-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.china-image:hover img { transform: scale(1.04); }
.china-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

.china-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.china-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.china-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201,161,53,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.china-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.china-feature p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-card:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-suffix { font-size: 0.65em; vertical-align: super; }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-icon {
  font-size: 28px;
  color: rgba(255,255,255,0.15);
  margin-bottom: 16px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 16px;
}
.why-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.why-image-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-image-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.why-image-badge span { font-size: 12px; font-weight: 600; }

.why-items { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}
.why-item:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateX(6px); }
.why-item-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--navy-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
}
.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.why-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue-accent) 100%);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.process-step:hover .process-num {
  background: var(--navy-dark);
  color: var(--gold);
}
.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.industry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.industry-card:hover img { transform: scale(1.07); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,38,0.90) 0%, rgba(7,20,38,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all 0.3s;
}
.industry-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}
.industry-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.industry-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.industry-card:hover .industry-desc { max-height: 100px; }

/* ============================================
   NETWORK / LOCATIONS
   ============================================ */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 24px;
}
.location-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.location-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.25s var(--ease);
}
.location-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.location-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.location-item h4 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; }
.location-item p { font-size: 13px; color: var(--gray-500); }

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 480px;
  border: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; display: flex; gap: 4px; }
.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-text::before { content: '"'; font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -20px; margin-right: 4px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--navy-dark); }
.testimonial-role { font-size: 12px; color: var(--gray-500); }

/* ============================================
   KNOWLEDGE BASE / BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-thumb {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-thumb { transform: scale(1.04); }
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--blue-light);
  color: var(--blue-accent);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.blog-meta i { color: var(--gold); }

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.quote-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,161,53,0.08) 0%, transparent 70%);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quote-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
}
.quote-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-form-title i { color: var(--gold); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,161,53,0.12);
}
textarea { resize: vertical; min-height: 100px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-submit {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
}
.footer-main {
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-wrap img { height: 52px; width: auto; filter: brightness(0) invert(1); }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.footer-brand-name::after {
  content: 'Customs Clearance & Freight Forwarding';
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.footer-links a i { font-size: 10px; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item i { color: var(--gold); font-size: 14px; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-bubble {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 200px;
  text-align: right;
  animation: bounceIn 0.5s var(--ease-out) 2s both;
  display: none;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: pulse-whatsapp 2s 3s infinite;
}
.whatsapp-btn:hover { background: #128C7E; transform: scale(1.1); }
.whatsapp-float:hover .whatsapp-bubble { display: block; }

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.70), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue-accent) 50%, transparent 100%);
}
.page-header-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-header p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ============================================
   TRACKING WIDGET
   ============================================ */
.track-widget {
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
}
.track-form {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.track-form input { flex: 1; padding: 16px 20px; font-size: 15px; }
.track-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.track-option {
  flex: 1;
  min-width: 160px;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  text-align: center;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.track-option:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.track-option i { font-size: 32px; color: var(--gold); margin-bottom: 12px; display: block; }
.track-option h4 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.track-option p { font-size: 13px; color: var(--gray-500); }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.8); }
  80%  { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .china-grid { gap: 48px; }
  .why-grid { gap: 40px; }
  .quote-grid { gap: 48px; }
  .network-grid { gap: 40px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .topbar { display: none; }

  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--gray-100);
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
    border-radius: 0;
    display: none;
    padding: 4px 0;
  }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero { min-height: 80vh; }
  .hero-stats { gap: 20px; }
  .hero-stat { padding-left: 12px; }
  .hero-stat-num { font-size: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .china-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .industry-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .track-form { flex-direction: column; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-card:last-child { border-bottom: none; }
  .why-image-badge { right: 16px; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: row; gap: 16px; }
  .form-submit { flex-direction: column; }
  .track-options { flex-direction: column; }
}
