/* ═══════════════════════════════════════════════════════════
   HETVIK MARITIME LLP — Premium Design System
   Palette: Deep Navy · Midnight · Gold · Warm White · Steel
   Typography: Cormorant Garamond + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --navy:       #0A1628;
  --midnight:   #0D1F3C;
  --navy-mid:   #112240;
  --navy-light: #1A3A5C;
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --gold-dim:   #8B6F2E;
  --warm-white: #F5F0E8;
  --cream:      #EDE8DC;
  --steel:      #8FA3B8;
  --steel-light:#B8CDD8;
  --text-dark:  #0A1628;
  --text-body:  #2C3E50;
  --text-muted: #6B7C93;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.22);
  --shadow-gold:0 8px 32px rgba(201,168,76,0.18);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 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);
  background: var(--warm-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Container ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section Base ── */
.section {
  padding: 100px 0;
  position: relative;
}

/* ── Typography Utilities ── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--warm-white); }
.section-title.light em { color: var(--gold-light); }

.section-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 8px;
}

.body-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0 32px;
}
.gold-rule.centered { margin: 24px auto 32px; }

/* ── Reveal Animations ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

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

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark svg { display: block; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
#waveCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.95) 0%,
    rgba(13,31,60,0.85) 50%,
    rgba(10,22,40,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.title-line {
  color: var(--white);
  display: block;
}
.italic-gold {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--steel-light);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn-ghost {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  font-weight: 600;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin-right: 40px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.fc-1 { top: 22%; right: 8%; animation-delay: 0s; }
.fc-2 { top: 42%; right: 4%; animation-delay: 2s; }
.fc-3 { top: 62%; right: 10%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about-section { background: var(--warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.highlight-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.highlight-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.highlight-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.highlight-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* About Visual */
.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.av-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
  width: 200px;
}
.av-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.av-card-1 { top: 0; left: 0; }
.av-card-2 { top: 0; right: 0; }
.av-card-3 { bottom: 0; left: 0; }
.av-card-4 { bottom: 0; right: 0; }
.av-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.av-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.av-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.av-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.1), var(--shadow-lg);
  z-index: 2;
}
.av-badge-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.av-badge-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.av-badge-sub {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--steel);
}

/* ══════════════════════════════════════════════════════════
   VISION & MISSION
══════════════════════════════════════════════════════════ */
.vm-section {
  background: var(--navy);
  overflow: hidden;
}
.vm-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 64px;
}
.vm-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  margin: 0 60px;
}
.vm-card {
  padding: 48px 0;
}
.vm-icon {
  margin-bottom: 24px;
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}
.vm-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.vm-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.vm-text {
  font-size: 15px;
  color: var(--steel-light);
  line-height: 1.8;
  margin-bottom: 28px;
}
.vm-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}
.values-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--steel-light);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: var(--transition);
}
.value-pill:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   LEADERSHIP
══════════════════════════════════════════════════════════ */
.leadership-section { background: var(--cream); }
.leadership-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.leadership-visual { text-align: center; }
.lv-frame {
  position: relative;
  width: 240px;
  height: 280px;
  margin: 0 auto 24px;
}
.lv-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px solid rgba(201,168,76,0.3);
  position: relative;
  z-index: 1;
}
.lv-initials {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.lv-title-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--steel-light);
  text-align: center;
  padding: 0 20px;
}
.lv-decoration {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.15);
}
.lv-d1 {
  inset: -10px;
  z-index: 0;
}
.lv-d2 {
  inset: -20px;
  z-index: -1;
  border-color: rgba(201,168,76,0.07);
}
.lv-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.lv-role {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(201,168,76,0.15);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}
.leadership-sign {
  font-style: italic;
  color: var(--text-muted);
}
.signature-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,22,40,0.1);
}
.signature-line {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-dim);
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services-section { background: var(--warm-white); overflow: hidden; }
.services-bg {
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(10,22,40,0.07);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .sc-icon { background: var(--navy); border-color: var(--navy); }
.service-card:hover .sc-icon svg { stroke: var(--gold); }

.sc-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: rgba(201,168,76,0.2);
}
.sc-featured .sc-title { color: var(--white); }
.sc-featured .sc-desc { color: var(--steel-light); }
.sc-featured .sc-icon { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }
.sc-featured .sc-icon svg { stroke: var(--gold); }
.sc-featured .sc-features span { background: rgba(255,255,255,0.08); color: var(--steel-light); border-color: rgba(255,255,255,0.1); }
.sc-featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(1); }

.sc-china {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1f3c 100%);
  border-color: rgba(201,168,76,0.2);
  grid-column: span 1;
}
.sc-china .sc-title { color: var(--white); }
.sc-china .sc-desc { color: var(--steel-light); }
.sc-china .sc-icon { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }
.sc-china .sc-icon svg { stroke: var(--gold); }
.sc-china .sc-features span { background: rgba(255,255,255,0.08); color: var(--steel-light); border-color: rgba(255,255,255,0.1); }

.sc-icon {
  width: 56px; height: 56px;
  background: rgba(10,22,40,0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(10,22,40,0.08);
  transition: var(--transition);
}
.sc-icon svg { stroke: var(--navy); transition: var(--transition); }
.sc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.sc-tag-china { color: #ff9f43; background: rgba(255,159,67,0.1); border-color: rgba(255,159,67,0.2); }
.sc-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sc-features span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(10,22,40,0.04);
  border: 1px solid rgba(10,22,40,0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ══════════════════════════════════════════════════════════
   TRADE ROUTES
══════════════════════════════════════════════════════════ */
.routes-section { background: var(--cream); }
.routes-world {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,22,40,0.06);
}
.routes-origin, .routes-destinations { padding: 0; }
.origin-label, .dest-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.origin-label::before, .dest-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.origin-ports {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.origin-port {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.op-dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
  flex-shrink: 0;
}
.op-dot-sm {
  width: 8px; height: 8px;
  background: var(--steel);
  box-shadow: 0 0 0 3px rgba(143,163,184,0.15);
}
.op-main { font-size: 17px; }

.routes-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  gap: 16px;
  min-height: 200px;
}
.arrow-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.arrow-ship {
  animation: float 4s ease-in-out infinite;
}

.dest-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.dest-region {
  background: rgba(10,22,40,0.02);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}
.dest-region:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.2);
}
.dr-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.dr-flag { font-size: 18px; }
.dr-ports { display: flex; flex-direction: column; gap: 8px; }
.dr-port {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.dp-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.china-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a0a2e 100%);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(201,168,76,0.2);
}
.cb-icon { font-size: 48px; flex-shrink: 0; }
.cb-content { flex: 1; }
.cb-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.cb-desc { font-size: 14px; color: var(--steel-light); line-height: 1.6; }
.cb-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.cb-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cb-stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.cb-stat span { font-size: 11px; color: var(--steel); letter-spacing: 0.08em; }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════ */
.why-section { background: var(--warm-white); overflow: hidden; }
.why-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201,168,76,0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(10,22,40,0.03) 0%, transparent 40%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(10,22,40,0.07);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover::after { transform: scaleX(1); }
.wc-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(10,22,40,0.05);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}
.wc-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.why-card:hover .wc-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.why-card:hover .wc-icon svg { stroke: var(--gold); }
.wc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.wc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Premium Statements */
.premium-statements {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(201,168,76,0.15);
}
.ps-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 36px;
  text-align: center;
}
.ps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.ps-item:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
}
.ps-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
  margin-top: 2px;
}
.ps-item p {
  font-size: 15px;
  color: var(--steel-light);
  line-height: 1.7;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   NETWORK & INDUSTRIES
══════════════════════════════════════════════════════════ */
.network-section { background: var(--cream); }
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.hub-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.hub-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid rgba(10,22,40,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(10,22,40,0.1);
  transition: var(--transition);
}
.hc-active::before { background: var(--gold); }
.hub-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}
.hc-port {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 4px;
}
.hc-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hc-services {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.hc-status {
  font-size: 11px;
  font-weight: 600;
  color: #27ae60;
  letter-spacing: 0.05em;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.industry-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  border: 1px solid rgba(10,22,40,0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
}
.ii-icon { font-size: 24px; }
.industry-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   PROCESS FLOW
══════════════════════════════════════════════════════════ */
.process-section { background: var(--warm-white); overflow: hidden; }
.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.03) 50%, transparent 100%);
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.ps-circle {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: var(--transition);
}
.process-step:hover .ps-circle {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.ps-connector {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
  z-index: 1;
}
.ps-connector.last { display: none; }
.ps-content {
  margin-top: 24px;
  text-align: center;
  padding: 0 8px;
}
.ps-icon { font-size: 28px; margin-bottom: 10px; }
.ps-content h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ps-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   INFRASTRUCTURE
══════════════════════════════════════════════════════════ */
.infra-section { background: var(--cream); }
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.infra-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.is-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(10,22,40,0.07);
  transition: var(--transition);
}
.is-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.is-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.is-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.infra-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.if-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10,22,40,0.07);
  transition: var(--transition);
}
.if-item:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.if-check {
  width: 28px; height: 28px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold-dim);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.if-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.if-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   COMMITMENT
══════════════════════════════════════════════════════════ */
.commitment-section { background: var(--navy); overflow: hidden; }
.commitment-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.commitment-inner { text-align: center; max-width: 900px; margin: 0 auto; }
.commitment-text {
  font-size: 18px;
  color: var(--steel-light);
  line-height: 1.85;
  margin-bottom: 56px;
  font-style: italic;
  font-family: var(--font-display);
}
.commitment-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cp-item {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  border: 1px solid rgba(201,168,76,0.12);
  transition: var(--transition);
}
.cp-item:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.cp-icon { font-size: 36px; margin-bottom: 16px; }
.cp-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.cp-desc {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   FUTURE VISION
══════════════════════════════════════════════════════════ */
.future-section { background: var(--warm-white); }
.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expansion-roadmap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.er-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid rgba(10,22,40,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.er-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(10,22,40,0.1);
}
.er-item:first-child::before { background: var(--gold); }
.er-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.er-phase {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.er-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.er-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.er-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
}
.er-status.active { background: rgba(39,174,96,0.1); color: #27ae60; }
.er-status.upcoming { background: rgba(201,168,76,0.1); color: var(--gold-dim); }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section { background: var(--cream); overflow: hidden; }
.contact-bg {
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-intro {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.ci-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.15);
  height: 100%;
}
.ci-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ci-company {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
}
.ci-tagline {
  font-size: 12px;
  color: var(--gold);
  margin-top: 3px;
}
.ci-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.ci-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ci-item span {
  font-size: 14px;
  color: var(--steel-light);
}
.ci-ports-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}
.ci-port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ci-port-tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}

.cf-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10,22,40,0.07);
}
.cf-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.cf-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: span 2; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(10,22,40,0.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-body);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.btn-submit {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: var(--navy); }
.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  margin: 16px 0 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.7;
  max-width: 280px;
}
.fc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li {
  font-size: 13px;
  color: var(--steel);
  transition: color var(--transition);
  cursor: default;
}
.footer-col li:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; }
.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--steel);
}
.fb-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dim);
}

/* ══════════════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-featured { grid-column: span 2; }
  .sc-china { grid-column: span 1; }
  .process-flow { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .process-step:nth-child(4) .ps-connector { display: none; }
  .commitment-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .about-grid, .leadership-grid, .network-grid,
  .infra-grid, .future-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-header-row { grid-template-columns: 1fr; gap: 20px; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-divider { display: none; }
  .routes-world { grid-template-columns: 1fr; }
  .routes-arrow { flex-direction: row; min-height: auto; padding: 20px 0; }
  .arrow-line { flex: none; width: 60px; height: 1px; }
  .dest-regions { grid-template-columns: 1fr 1fr; }
  .china-banner { flex-direction: column; text-align: center; }
  .cb-stats { justify-content: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(40px, 8vw, 72px); }
  .fc-1, .fc-2, .fc-3 { display: none; }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) .ps-connector,
  .process-step:nth-child(4) .ps-connector,
  .process-step:nth-child(6) .ps-connector { display: none; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .sc-featured { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .commitment-pillars { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fb-inner { flex-direction: column; gap: 8px; text-align: center; }
  .dest-regions { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: 1fr; }
  .ps-connector { display: none !important; }
  .infra-stats { grid-template-columns: 1fr 1fr; }
}