/* ============================================================
   HYT Website — Main Stylesheet
   Design System: Ocean Blue → Cyan (Logo-aligned)
   ============================================================ */

/* ===== CSS Custom Properties (Design Tokens) ===== */
:root {
  /* Brand Colors — Aligned with HYT Logo */
  --color-ocean: #0B1D4A;
  --color-ocean-light: #142D6E;
  --color-teal: #1677D3;
  --color-teal-hover: #1365C0;
  --color-teal-light: #D6EDFF;
  --color-teal-surface: #EBF5FF;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-border: #E2E8F0;
  --color-gray: #64748B;
  --color-slate: #475569;
  --color-text: #1E293B;
  --color-text-secondary: #64748B;
  --color-text-muted: #94A3B8;

  /* Accent — Cyan + Warm Gold */
  --color-amber: #F59E0B;
  --color-amber-light: #FFFBEB;
  --color-cyan: #2CD4C2;
  --color-steel: #334155;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 25px -5px rgba(11,29,74,.08);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* ===== CSS Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-teal-hover); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-ocean); }
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* Utility: Text sizes */
.text-large { font-size: 1.125rem; }
.text-small { font-size: 0.875rem; }
.text-caption { font-size: 0.75rem; color: var(--color-text-muted); }

/* Utility: Text alignment */
.text-center { text-align: center; }

/* Utility: Margin helpers */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* Utility: Hidden */
.hidden { display: none !important; }

/* Required marker */
.required { color: #EF4444; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-ocean);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ===== Layout: Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-narrow { max-width: 800px; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-ocean);
  text-decoration: none;
}
.nav-logo:hover { color: var(--color-teal); text-decoration: none; }

.nav-logo-svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-svg {
  transform: scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-slate);
  border-radius: 6px;
  transition: all 0.15s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--color-ocean);
  background: var(--color-surface);
  text-decoration: none;
}
.nav-chevron {
  opacity: 0.4;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* ===== Apple-Style Mega Menu ===== */
.nav-item {
  position: static;
}
.mega-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 20px 50px rgba(11,29,74,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s 0.25s;
  z-index: 998;
  pointer-events: none;
}
.nav-item.hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s 0s;
  pointer-events: auto;
}
.nav-item.hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.mega-backdrop {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11,29,74,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s 0.25s;
  z-index: 997;
  pointer-events: none;
}
.nav-item.hover ~ .mega-backdrop,
body.mega-open .mega-backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s 0s;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.mega-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
}

.mega-cols-3 {
  grid-template-columns: 1fr 1fr 1.5fr;
}

.mega-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  padding: 0 4px;
}
.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-col ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.mega-col ul li a:hover {
  background: var(--color-surface);
  color: var(--color-teal);
  text-decoration: none;
}

/* Mega menu highlight card */
.mega-highlight {
  display: flex;
  align-items: stretch;
}
.mega-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  flex: 1;
  transition: transform 0.2s ease;
}
.mega-card:hover {
  transform: translateY(-2px);
}
.mega-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.mega-card-text {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-card-text strong {
  font-size: 14px;
  color: var(--color-ocean);
}
.mega-card-text span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher (Custom Dropdown) */
.lang-switcher {
  position: relative;
  z-index: 10;
}
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-slate);
  background: var(--color-white);
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}
.lang-switcher-btn:hover { border-color: var(--color-teal); }
.lang-switcher-btn .chevron {
  font-size: 8px;
  transition: transform 0.2s;
  color: var(--color-text-muted);
}
.lang-switcher-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.lang-switcher-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 150px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(11,29,74,0.08);
  overflow: hidden;
  z-index: 100;
}
.lang-switcher.open .lang-switcher-dropdown,
.lang-switcher-dropdown.open { display: block; }

.lang-switcher-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-slate);
  text-decoration: none;
  transition: background 0.15s;
}
.lang-switcher-option:hover { background: var(--color-teal-surface); }
.lang-switcher-option.active { color: var(--color-teal); font-weight: 600; background: var(--color-teal-surface); }
.lang-switcher-option .check {
  font-size: 12px;
  color: var(--color-teal);
  opacity: 0;
  transition: opacity 0.15s;
}
.lang-switcher-option.active .check { opacity: 1; }

/* Hamburger Menu (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-slate);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  gap: 8px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn-primary:hover {
  background: var(--color-teal-hover);
  border-color: var(--color-teal-hover);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn-outline:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-teal);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: var(--color-teal-surface);
  border-color: var(--color-teal);
}

.btn-amber {
  background: var(--color-amber);
  color: var(--color-white);
  border-color: var(--color-amber);
}
.btn-amber:hover { background: #B45309; border-color: #B45309; color: var(--color-white); }

/* Button Sizes */
.btn-sm { padding: 6px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 17px; }


/* ===== Hero Section ===== */
.hero {
  min-height: 580px;
  height: calc(100vh - 72px);
  max-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(165deg, #061232 0%, var(--color-ocean) 25%, #0C2658 50%, var(--color-ocean-light) 70%, #143570 100%);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

/* AI-generated hero banner overlay */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('/static/images/hero-banner.png') center bottom/cover no-repeat;
  background-position: 50% 55%;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
  animation: heroBannerDrift 25s ease-in-out infinite;
}

@keyframes heroBannerDrift {
  0%, 100% { transform: scale(1) translateY(0); }
  25% { transform: scale(1.04) translateY(-2px); }
  50% { transform: scale(1) translateY(0); }
  75% { transform: scale(1.03) translateY(3px); }
}

/* Subtle grid lines background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Hero overlay gradient for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(6,18,50,0.85) 0%,
    rgba(11,29,74,0.55) 30%,
    rgba(11,29,74,0.20) 55%,
    rgba(11,29,74,0.35) 80%,
    rgba(6,18,50,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Hero ocean wave overlay */
.hero-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 3;
  pointer-events: none;
}
.wave {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
}
.wave-deep { animation: waveRoll 14s ease-in-out infinite; }
.wave-mid  { animation: waveRoll 10s ease-in-out infinite 1s;  opacity: 0.8; }
.wave-top  { animation: waveRoll 7s ease-in-out infinite 0.5s; opacity: 0.85; }
.wave-foam { animation: waveRoll 6s ease-in-out infinite;       opacity: 0.65; }

@keyframes waveRoll {
  0%, 100% { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(1.5%) translateY(4px); }
  50%  { transform: translateX(3%) translateY(0); }
  75%  { transform: translateX(1.5%) translateY(-4px); }
}

/* ========== Hero Inner: LEFT + RIGHT layout ========== */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}

/* ===== LEFT: Route Map Visual ===== */
.hero-visual {
  flex: 0 0 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroVisReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroVisReveal {
  from { opacity: 0; transform: translateX(-20px) scale(0.97); filter: blur(8px); }
  to   { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1.36 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44,212,194,0.1);
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at center, rgba(44,212,194,0.03) 0%, transparent 70%);
  overflow: hidden;
}

/* Tech frame corner accents */
.hero-visual-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44,212,194,0.04);
  pointer-events: none;
  z-index: 2;
}

.hero-visual-frame::after {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44,212,194,0.15), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-map {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(44,212,194,0.08));
  position: relative;
  z-index: 1;
}

/* Tech scan line overlay - animated horizontal sweep */
@keyframes scanLine {
  0% { transform: translateY(-5%); }
  50% { transform: translateY(105%); }
  50.01% { transform: translateY(-5%); }
  100% { transform: translateY(-5%); }
}

.hero-visual-frame .scan-line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44,212,194,0.08), transparent);
  pointer-events: none;
  z-index: 3;
  animation: scanLine 8s linear infinite;
}

/* === Tech floating orbs (decorative ambient particles) === */
.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  top: 15%;
  right: 5%;
  background: radial-gradient(circle, rgba(44,212,194,0.04) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: ambientOrb 12s ease-in-out infinite;
}

@keyframes ambientOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33% { transform: translate(-20px, 15px) scale(1.15); opacity: 0.6; }
  66% { transform: translate(10px, -10px) scale(0.9); opacity: 0.3; }
}

/* === Tech text highlight for hero keywords === */
.hero-title .tech-highlight {
  background: linear-gradient(135deg, #2CD4C2 0%, #5EEAD4 50%, #1677D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Data pulse ring for hero buttons area === */
@keyframes dataPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(44,212,194,0.3); }
  70% { box-shadow: 0 0 0 15px rgba(44,212,194,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,212,194,0); }
}

.hero-actions .btn-primary {
  animation: dataPulseRing 2.5s ease-out infinite;
}

/* === Tech-Modern HUD Map Labels (deprecated - now SVG-internal) === */
.hero-map-label { display: none; }
.hero-map-status {
  position: absolute;
  bottom: 12px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  font-family: 'Courier New', 'SF Mono', 'Consolas', monospace;
  font-weight: 600;
  color: rgba(44,212,194,0.6);
  letter-spacing: 0.12em;
  pointer-events: none;
}
.hud-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2CD4C2;
  box-shadow: 0 0 8px rgba(44,212,194,0.6);
  animation: hudStatusBlink 3s ease-in-out infinite;
}
@keyframes hudStatusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== RIGHT: Content ===== */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  padding-left: var(--space-xl);
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  position: relative;
}

/* Tech accent line under title */
.hero-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin-top: var(--space-md);
  background: linear-gradient(90deg, #2CD4C2, rgba(44,212,194,0.3), transparent);
  border-radius: 2px;
  animation: titleLinePulse 3s ease-in-out infinite;
}

@keyframes titleLinePulse {
  0%, 100% { width: 60px; opacity: 0.6; }
  50% { width: 90px; opacity: 1; }
}

.hero-subtitle {
  font-size: 1.075rem;
  color: rgba(255,255,255,.72);
  margin-bottom: var(--space-xl);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

.hero-trust-badges {
  display: flex;
  gap: 18px;
  margin-top: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.hero-badge:hover {
  color: rgba(255,255,255,0.75);
  border-color: rgba(44,212,194,0.2);
  background: rgba(44,212,194,0.05);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Page Hero (subpages) ===== */
.page-hero {
  padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-ocean), var(--color-ocean-light));
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* AI-generated page banner overlay */
.page-hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('/static/images/about-banner.png') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.page-hero > .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.page-hero p { font-size: 1.125rem; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; }

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.trust-stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-teal);
}
.trust-stat-label {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-top: 4px;
}

/* ===== Section (generic page section) ===== */
.section {
  padding: var(--space-4xl) 0;
}
.section-sm { padding: var(--space-3xl) 0; }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-3xl);
}
.section-header p {
  color: var(--color-gray);
  font-size: 1.0625rem;
  margin-top: var(--space-sm);
}

/* ===== Services Grid / Card Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-slow);
}
.card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card h4 { font-size: 1.0625rem; margin: var(--space-md) 0 var(--space-sm); }
.card p { color: var(--color-gray); font-size: 0.9375rem; line-height: 1.6; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.card-icon-teal { background: var(--color-teal-surface); }

/* Animate In */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }
.animate-in-delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Service Detail (Services Page) ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: stretch;
  min-height: 400px;
}
.service-detail:nth-child(even) .service-detail-content { order: 2; }
.service-detail:nth-child(even) .service-detail-visual { order: 1; }

.service-detail-content {
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-content h2 { margin-bottom: var(--space-md); }
.service-detail-content p { color: var(--color-slate); line-height: 1.7; margin-bottom: var(--space-md); }
.service-detail-content ul { list-style: none; padding: 0; }

.service-features { list-style: none; padding: 0; margin: var(--space-md) 0; }
.service-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: var(--space-sm);
  color: var(--color-slate);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
}

.service-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ===== Platform Tabs ===== */
.platform-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}
.platform-tab {
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-slate);
  background: var(--color-surface);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.platform-tab:hover { color: var(--color-teal); border-color: var(--color-teal); text-decoration: none; }
.platform-tab.active {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.platform-panel { display: none; }
.platform-panel.active { display: block; }

/* ===== Partners Grid ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: var(--space-md);
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .3px;
  text-align: center;
  transition: all 0.25s ease;
  background: var(--color-white);
  cursor: default;
}
.partner-logo:hover {
  border-color: var(--partner-color, var(--color-teal));
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  transform: translateY(-3px);
}
.partner-logo svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
  transition: filter 0.25s ease;
}
.partner-logo:hover svg {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.partner-logo span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-slate);
}
.partner-logo:hover span {
  color: var(--partner-color, var(--color-teal));
}

/* Airline partner variant */
.partner-logo-air {
  border-style: dashed;
}
.partner-logo-air:hover {
  border-color: var(--color-teal);
  border-style: solid;
}

/* ===== About Page — Modern Tech Overhaul ===== */

/* Stat bar */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.about-stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: var(--space-md) var(--space-lg);
}
.about-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-ocean);
  line-height: 1.2;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--color-gray);
  margin-top: 2px;
}
.about-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Air partner cards */
.air-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.air-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--color-teal);
}
.air-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.air-card-icon span {
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.air-card-name {
  font-size: 0.75rem;
  color: var(--color-slate);
  font-weight: 600;
  text-align: center;
}

/* Network section */
.about-network-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(44,212,194,0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(22,119,211,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.network-card {
  padding: var(--space-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.network-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(44,212,194,0.2);
}
.network-card-icon {
  margin-bottom: var(--space-md);
}
.network-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.network-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.network-city-tags span {
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: rgba(44,212,194,0.8);
  background: rgba(44,212,194,0.08);
  border: 1px solid rgba(44,212,194,0.15);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Animated route bar */
.route-bar {
  padding: var(--space-lg) 0;
}
.route-node {
  padding: 8px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.route-node-start {
  background: rgba(44,212,194,0.12);
  color: #2CD4C2;
  border: 1px solid rgba(44,212,194,0.25);
}
.route-node-end {
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  border: 1px solid rgba(245,158,11,0.25);
}
.route-line-animated {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, #2CD4C2, #F59E0B);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  min-width: 60px;
}
.route-line-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  animation: routeGlide 1.8s ease-in-out infinite;
}
@keyframes routeGlide {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* Culture quote */
.about-quote {
  position: relative;
  margin-top: var(--space-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-teal-surface) 0%, var(--color-white) 60%);
}
.about-quote-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  opacity: 0.4;
}
.about-quote-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ocean);
  font-style: italic;
  line-height: 1.7;
  padding-left: var(--space-xl);
}
.about-quote-by {
  margin-top: var(--space-md);
  padding-left: var(--space-xl);
  font-size: 0.88rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* Value cards */
.value-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-cyan));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,29,74,0.08);
  border-color: var(--color-teal);
}
.value-card:hover::before {
  opacity: 1;
}
.value-card-icon {
  margin-bottom: var(--space-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-surface);
  border-radius: var(--radius-md);
}
.value-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.value-card p {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Home News Section (Priority Position, Tech Style) ===== */
.home-news-section {
  background: linear-gradient(180deg, #061232 0%, var(--color-ocean) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}
.home-news-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(44,212,194,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(22,119,211,0.05) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(44,212,194,0.015) 2px, rgba(44,212,194,0.015) 4px);
  pointer-events: none;
}

.home-news-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  align-items: stretch;
}

/* Featured large card */
.home-news-featured {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.home-news-featured:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(44,212,194,0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.home-news-corner-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(44,212,194,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.home-news-featured-badge {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-lg);
}
.home-news-hot {
  font-size: 0.65rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  color: white;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  animation: hotPulse 2s ease-in-out infinite;
}
@keyframes hotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}
.home-news-cat {
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  color: rgba(44,212,194,0.9);
  background: rgba(44,212,194,0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(44,212,194,0.2);
}
.home-news-featured-title {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.4;
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.home-news-featured-excerpt {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.home-news-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.home-news-readlink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2CD4C2;
  transition: gap 0.2s;
}
.home-news-featured:hover .home-news-readlink { gap: 8px; }

/* Sidebar mini cards */
.home-news-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.home-news-mini {
  flex: 1;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.home-news-mini::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2CD4C2, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.home-news-mini:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(44,212,194,0.2);
  transform: translateX(4px);
}
.home-news-mini:hover::after { opacity: 1; }
.home-news-mini-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}
.home-news-mini-cat {
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  color: rgba(44,212,194,0.8);
  background: rgba(44,212,194,0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.home-news-mini-date {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono, monospace);
}
.home-news-mini-title {
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news-mini-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(44,212,194,0.7);
  margin-top: var(--space-sm);
  transition: color 0.2s;
}
.home-news-mini:hover .home-news-mini-link { color: #2CD4C2; }

/* View all link */
.home-news-viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--space-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  margin-top: var(--space-sm);
}
.home-news-viewall:hover {
  color: #2CD4C2;
  border-color: rgba(44,212,194,0.3);
  background: rgba(44,212,194,0.05);
  gap: 10px;
}
.news-feature-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.news-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-cyan));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.news-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,29,74,0.08);
  border-color: var(--color-teal);
}
.news-feature-card:hover::before { opacity: 1; }

.news-feature-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.news-feature-tag {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-teal);
  background: var(--color-teal-surface);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.news-feature-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: var(--font-mono, monospace);
}
.news-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.news-feature-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-feature-title a:hover {
  color: var(--color-teal);
}
.news-feature-excerpt {
  font-size: 0.88rem;
  color: var(--color-gray);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-md);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.news-feature-link:hover { gap: 8px; }

/* ===== News Section (News list & detail pages) ===== */

/* News list card enhancements */
.news-list-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* News toolbar */
.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.news-toolbar .platform-tabs {
  margin-bottom: 0;
}

/* Enhanced news card */
.news-card-readmore {
  color: var(--color-teal);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-top: var(--space-sm);
  transition: transform 0.2s;
}
.news-card:hover .news-card-readmore {
  transform: translateX(4px);
}

/* News Detail page */
.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-gray);
  text-decoration: none;
  margin-bottom: var(--space-lg);
  transition: color 0.2s;
}
.news-back-link:hover { color: var(--color-teal); }

.news-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.news-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Article body typography */
.news-article-body {
  line-height: 1.85;
  font-size: 1.05rem;
  color: var(--color-text);
}
.news-article-body h2 { font-size: 1.3rem; margin: 1.5em 0 0.6em; }
.news-article-body h3 { font-size: 1.15rem; margin: 1.3em 0 0.5em; }
.news-article-body p { margin: 0.8em 0; }
.news-article-body img { max-width: 100%; border-radius: var(--radius-md); margin: 1em 0; }
.news-article-body ul, .news-article-body ol { padding-left: 1.5em; margin: 0.8em 0; }
.news-article-body li { margin: 0.3em 0; }
.news-article-body blockquote {
  border-left: 3px solid var(--color-teal);
  padding: var(--space-md) var(--space-lg);
  margin: 1em 0;
  background: var(--color-teal-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-slate);
  font-style: italic;
}

/* CTA box in article */
.news-cta-box {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-ocean), var(--color-ocean-light));
  border-radius: var(--radius-xl);
  color: white;
}
.news-cta-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.news-cta-content h3 { color: white; margin-bottom: var(--space-sm); }
.news-cta-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: var(--space-md); }

/* Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: 80px;
  align-self: start;
}
.news-sidebar-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.news-sidebar-title {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.news-share-buttons {
  display: flex;
  gap: 8px;
}
.news-share-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-slate);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.news-share-btn:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: white;
}

.news-sidebar-cta {
  background: linear-gradient(135deg, var(--color-teal-surface), var(--color-amber-light));
  border-color: transparent;
}
.news-sidebar-cta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-ocean);
}
.news-sidebar-cta p {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}
.news-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  align-items: flex-start;
}
.news-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.news-card-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--color-teal-surface);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-xs);
}
.news-card-date-day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
}
.news-card-date-month {
  font-size: 0.75rem;
  color: var(--color-gray);
  margin-top: 2px;
  text-transform: uppercase;
}

.news-card-content { flex: 1; min-width: 0; }
.news-card-content h4 {
  font-size: 1.0625rem;
  margin: var(--space-sm) 0 var(--space-xs);
  color: var(--color-ocean);
}
.news-card-content p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-teal);
  background: var(--color-teal-surface);
  border-radius: var(--radius-full);
  letter-spacing: .3px;
}

/* News Search Input */
.news-search-input {
  max-width: 400px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.news-search-input:focus { border-color: var(--color-teal); }

/* News List Container */
.news-list-container { display: flex; flex-direction: column; gap: var(--space-lg); }

/* Load More Button */
.load-more-btn { display: inline-block; }

/* ===== Contact Form ===== */
.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(22,119,211,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-success {
  padding: var(--space-lg);
  background: #D1FAE5;
  color: #065F46;
  border-radius: var(--radius-md);
  font-weight: 500;
  margin-top: var(--space-md);
}
.form-error {
  padding: var(--space-lg);
  background: #FEF2F2;
  color: #991B1B;
  border-radius: var(--radius-md);
  font-weight: 500;
  margin-top: var(--space-md);
}

/* ===== Newsletter ===== */
.newsletter {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(135deg, var(--color-ocean), var(--color-ocean-light));
  border-radius: var(--radius-xl);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.newsletter h3 { color: var(--color-white); margin-bottom: var(--space-sm); }
.newsletter p { color: rgba(255,255,255,.7); margin-bottom: var(--space-lg); }

/* Enhanced newsletter: decorative geometric elements */
.newsletter-enhanced {
  background: linear-gradient(160deg, var(--color-ocean) 0%, #0F2847 40%, var(--color-ocean-light) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.15);
}
.newsletter-decor-top,
.newsletter-decor-bottom {
  position: absolute;
  pointer-events: none;
}
.newsletter-decor-top {
  top: -20px;
  right: -10px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(22,119,211,0.2);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out infinite;
}
.newsletter-decor-top::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 18px;
  height: 18px;
  background: rgba(22,119,211,0.25);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.newsletter-decor-bottom {
  bottom: -30px;
  left: -15px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(212,168,75,0.12);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out infinite 2s;
}
.newsletter-decor-bottom::after {
  content: '';
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 14px;
  height: 14px;
  background: rgba(212,168,75,0.2);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--color-teal-light); }

/* ===== Footer ===== */
.footer {
  background: var(--color-ocean);
  color: rgba(255,255,255,.7);
  padding: var(--space-4xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--space-lg); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 18px;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--color-teal); text-decoration: none; }

.footer h5 {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: var(--space-md);
}

.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer ul li a:hover { color: var(--color-teal); text-decoration: none; }
.footer ul li:not(:has(a)) {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--space-lg) var(--space-md);
  margin-top: var(--space-3xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); font-size: 0.8125rem; }
.footer-bottom a:hover { color: var(--color-teal); }

/* Footer newsletter form (inline version) */
.footer-bottom .newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
}
.footer-bottom .newsletter-form input {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--color-white);
}
.footer-bottom .newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-bottom .newsletter-form button { font-size: 13px; padding: 8px 18px; }

/* ===== Responsive Breakpoints ===== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    gap: var(--space-2xl);
    text-align: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .hero-title::after {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-subtitle { max-width: 480px; }
  .hero-visual { flex: 0 0 auto; width: 88%; max-width: 500px; }
  .hero-visual-frame { max-width: 500px; }
  .hero-title { font-size: clamp(2rem, 5.5vw, 3rem); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-content { padding: var(--space-2xl); order: 1 !important; }
  .service-detail-visual { min-height: 200px; order: 2 !important; }
  .network-split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about-stats { gap: var(--space-md); }
  .about-stat-divider { display: none; }
  .home-news-layout { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { font-size: 15px; }

  .nav { height: 64px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-lg);
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--color-border); border-radius: 0; }

  .nav-toggle { display: flex; }
  .nav-actions > a:not(.nav-toggle):not(.btn) { display: none; }

  .hero { min-height: auto; height: auto; max-height: none; padding: calc(64px + var(--space-xl)) 0 var(--space-2xl); }
  .hero-inner { flex-direction: column; gap: var(--space-xl); padding: 0 var(--space-md); }
  .hero-visual { width: 100%; max-width: 400px; }
  .hero-visual-frame { max-width: 400px; }
  .hero-content { align-items: center; text-align: center; padding-left: 0; }
  .hero-title::after { margin-left: auto; margin-right: auto; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-subtitle { font-size: 0.95rem; max-width: 380px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-trust-badges { justify-content: center; }
  .hero-map-label { font-size: 8px; }
  .hero-map-label-primary { font-size: 9px; }
  .about-stats { flex-direction: column; gap: var(--space-sm); }
  .about-stat-divider { width: 60px; height: 1px; }
  .route-bar { flex-direction: column; gap: var(--space-md); }
  .route-line-animated { width: 60px; height: 2px; flex: none; }
  .news-article-body .container { grid-template-columns: 1fr; }
  .news-sidebar { position: static; }
  .news-cta-box { flex-direction: column; text-align: center; }

  .page-hero { padding: calc(64px + var(--space-2xl)) 0 var(--space-2xl); }

  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .trust-stat-number { font-size: 1.75rem; }

  .services-grid { grid-template-columns: 1fr; }
  .section { padding: var(--space-2xl) 0; }
  .section-sm { padding: var(--space-xl) 0; }
  .section-header { margin-bottom: var(--space-xl); }

  .news-card { flex-direction: column; gap: var(--space-md); }
  .news-card-date { width: auto; display: flex; gap: var(--space-sm); align-items: center; padding: var(--space-sm) var(--space-md); }

  .partners-grid { grid-template-columns: repeat(3, 1fr); }

  .platform-tabs { flex-wrap: wrap; }
  .platform-tab { padding: 8px 18px; font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .container { padding: 0 var(--space-md); }
  .container-narrow { padding: 0 var(--space-md); }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-tabs { gap: 6px; }
  .platform-tab { padding: 6px 14px; font-size: 12px; }
}

/* ============================================================
   Premium Animations & Apple-grade Polish
   ============================================================ */

/* -- Scroll-triggered reveal -- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(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; }

/* -- Smooth card hover with spring-like physics -- */
.card,
.news-card,
.partner-logo,
.service-detail-visual {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}
.card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11,29,74,0.1);
  border-color: var(--color-teal);
}

/* -- Service card images -- */
.card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card-img img {
  transform: scale(1.06);
}
.card-body {
  padding: var(--space-lg);
}

/* -- Button micro-interaction -- */
.btn {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:active {
  transform: scale(0.96);
}

/* -- Navigation link hover line -- */
.nav-links li a {
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-teal);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

/* -- Hero button overrides for dark background -- */
.hero-actions .btn-primary {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  color: #0B1D4A;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(44,212,194,0.3);
}
.hero-actions .btn-primary:hover {
  background: #5DE0D4;
  border-color: #5DE0D4;
  color: #0B1D4A;
  box-shadow: 0 6px 28px rgba(44,212,194,0.45);
  transform: translateY(-2px);
}
.hero-actions .btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

/* -- Hero badge subtle shimmer -- */
.hero-badge svg {
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-badge:nth-child(2) svg { animation-delay: 1.5s; }

/* -- Trust Stat Counter -- */
.trust-stat-number {
  transition: color 0.4s ease, text-shadow 0.4s ease;
  position: relative;
  display: inline-block;
}
.trust-stat-number[data-target]::before {
  content: '';
  position: absolute;
  inset: -8px -16px;
  background: radial-gradient(circle, rgba(22,119,211,0.08) 0%, transparent 70%);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}
.trust-stat.counted .trust-stat-number::before {
  opacity: 1;
  animation: countGlow 3s ease-in-out infinite;
}
@keyframes countGlow {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}
.trust-stat:hover .trust-stat-number {
  color: var(--color-teal);
  text-shadow: 0 0 20px rgba(22,119,211,0.15);
}

/* -- Section header decorative accent line -- */
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-amber));
  border-radius: 2px;
  animation: sectionLine 4s ease-in-out infinite;
}
@keyframes sectionLine {
  0%, 100% { width: 48px; opacity: 0.7; }
  50% { width: 64px; opacity: 1; }
}

/* -- Form focus glow -- */
.form-input:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(22,119,211,0.15), 0 2px 8px rgba(22,119,211,0.08);
}

/* -- Newsletter glow -- */
.newsletter {
  transition: box-shadow 0.5s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.newsletter:hover {
  box-shadow: 0 8px 30px rgba(11,29,74,0.06);
}
.newsletter-enhanced {
  position: relative;
  overflow: hidden;
}
.newsletter-enhanced .newsletter-decor-top {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,119,211,0.08) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.newsletter-enhanced .newsletter-decor-bottom {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 100px;
  height: 100px;
  border: 1.5px solid rgba(212,168,75,0.15);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite 1s;
}
/* Newsletter geometric triangle accent */
.newsletter-decor-top::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 35px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid rgba(22,119,211,0.12);
  animation: float 4s ease-in-out infinite 0.5s;
}
.newsletter-decor-bottom::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid rgba(212,168,75,0.12);
  animation: float 5s ease-in-out infinite 2s;
}
.newsletter-enhanced .btn-amber {
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.newsletter-enhanced:hover .btn-amber {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(245,158,11,0.25);
}

/* -- Page Hero subtle animation -- */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,119,211,0.3), transparent);
}

/* -- SVG icon replacements for service cards (CSS-only) -- */
.svc-icon-ship::before { content: ''; display: block; width: 28px; height: 28px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 20v-2h2l1-5h15l1 5h1v2H2zm3.3-5L4 20h16l-1.3-5H5.3zM5 9h3v3H5V9zm4 0h3v3H9V9zm4 0h3v3h-3V9z'/%3E%3C/svg%3E") center/contain no-repeat; }
.svc-icon-box::before { content: ''; display: block; width: 28px; height: 28px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 3H3v18h18V3zm-2 16H5V5h14v14zM7 7h10v2H7V7zm0 4h10v2H7v-2zm0 4h7v2H7v-2z'/%3E%3C/svg%3E") center/contain no-repeat; }
.svc-icon-plane::before { content: ''; display: block; width: 28px; height: 28px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5A1.5 1.5 0 0011.5 2 1.5 1.5 0 0010 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E") center/contain no-repeat; }
.svc-icon-home::before { content: ''; display: block; width: 28px; height: 28px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3L4 9v12h16V9l-8-6zm0 2.7L18 11v8h-3v-6H9v6H6v-8l6-5.3z'/%3E%3C/svg%3E") center/contain no-repeat; }
.svc-icon-truck::before { content: ''; display: block; width: 28px; height: 28px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zM18 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E") center/contain no-repeat; }
.svc-icon-warehouse::before { content: ''; display: block; width: 28px; height: 28px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3L2 12h3v9h14v-9h3L12 3zm0 3.7L18 11v8h-2v-5H8v5H6v-8l6-4.3zM10 14h4v5h-4v-5z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* -- Text gradient accent for special headings -- */
.text-gradient {
  background: linear-gradient(135deg, var(--color-teal), #2CD4C2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -- Glass card effect -- */
.glass-card {
  background: rgba(255,255,255,0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226,232,240,0.6);
}

/* -- Shimmer loading placeholder -- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--color-border) 25%, var(--color-teal-surface) 50%, var(--color-border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* -- Floating animation for decorative elements -- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float {
  animation: float 4s ease-in-out infinite;
}
.float-delay-1 { animation-delay: 0.5s; }
.float-delay-2 { animation-delay: 1s; }

/* -- Smooth page load fade -- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* -- Border gradient animation for CTA sections -- */
.cta-glow {
  position: relative;
  overflow: hidden;
}
.cta-glow::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--color-teal), var(--color-amber), var(--color-teal));
  background-size: 200% 200%;
  animation: border-glow 3s linear infinite;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
.cta-glow:hover::before { opacity: 1; }
@keyframes border-glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* -- Refined shadow system (Apple-like) -- */
.shadow-sm { box-shadow: 0 1px 2px rgba(11,29,74,0.04); }
.shadow-md { box-shadow: 0 4px 12px rgba(11,29,74,0.06); }
.shadow-lg { box-shadow: 0 8px 30px rgba(11,29,74,0.08); }
.shadow-xl { box-shadow: 0 20px 60px rgba(11,29,74,0.1); }

/* ============================================================
   Premium Homepage — Feature Rows, Why Grid, Partners Showcase
   ============================================================ */

/* -- Section Label -- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

/* -- Feature Row (alternating) -- */
.feature-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}
.feature-row-reverse {
  grid-template-columns: 1fr 1.2fr;
}
.feature-row-reverse .feature-visual {
  order: 1;
}
.feature-row-reverse .feature-content {
  order: 0;
}

.feature-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease;
}
.feature-visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.feature-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-visual:hover img {
  transform: scale(1.03);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.feature-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.feature-desc {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--color-teal-surface);
  color: var(--color-teal);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  width: fit-content;
}
.feature-badge-sky {
  background: #E0F2FE;
  color: #0284C7;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.feature-list li {
  font-size: 0.9rem;
  color: var(--color-slate);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

/* -- Feature Double (2 mini cards) -- */
.feature-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.feature-mini-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}
.feature-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-mini-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature-mini-text {
  padding: var(--space-lg);
}
.feature-mini-text h4 {
  margin: var(--space-sm) 0;
}

/* -- Why Grid -- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.why-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(22,119,211,0.3);
}
.why-icon {
  margin-bottom: var(--space-md);
}
.why-card h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -- Partners Showcase -- */
.partners-showcase {
  padding: var(--space-2xl) 0;
}
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.partners-strip-sm {
  gap: 10px;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-slate);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-color, var(--color-border));
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  cursor: default;
}
.partner-badge:hover {
  color: var(--brand-color, var(--color-teal));
  border-color: var(--brand-color, var(--color-teal));
  background: var(--color-teal-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* -- News Feature Cards -- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.news-feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.news-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal);
  text-decoration: none;
  color: inherit;
}
.news-feature-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
}
.news-feature-card h4 {
  font-size: 1.05rem;
  line-height: 1.4;
}
.news-feature-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}
.news-feature-card time {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* -- CTA Section -- */
.cta-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-ocean) 0%, #0F2847 40%, var(--color-ocean-light) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(22,119,211,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,75,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--color-teal), #1365C0);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(22,119,211,0.25);
  letter-spacing: 0.02em;
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(22,119,211,0.35);
  color: var(--color-white);
  text-decoration: none;
}
.btn-cta::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.btn-cta:hover::after {
  transform: translateX(4px);
}

/* Section header light variant (for dark backgrounds) */
.section-header-light .section-label { color: rgba(22,119,211,0.8); }
.section-header-light h2 { color: var(--color-white); }
.section-header-light h2::after {
  background: linear-gradient(90deg, var(--color-teal), rgba(212,168,75,0.5));
}

/* ============================
   Responsive — Mega Menu + Premium
   ============================ */
@media (max-width: 1024px) {
  .mega-columns { grid-template-columns: 1fr 1fr; }
  .mega-cols-3 { grid-template-columns: 1fr 1fr; }
  .mega-highlight { display: none; }
  .feature-row, .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .feature-row-reverse .feature-visual { order: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { height: 64px; }
  .mega-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    background: var(--color-surface);
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.35s ease;
  }
  .nav-item:hover .mega-menu {
    max-height: 600px;
    transform: none;
  }
  .mega-inner { padding: var(--space-md); }
  .mega-columns { grid-template-columns: 1fr; gap: var(--space-md); }
  .mega-cols-3 { grid-template-columns: 1fr; }
  .mega-highlight { display: none; }
  .mega-backdrop { display: none; }

  /* Mobile nav active state */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-lg);
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .nav-toggle { display: flex; }
  .nav-actions > a:not(.nav-toggle):not(.btn) { display: none; }

  /* Premium mobile */
  .feature-double { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .partners-strip { gap: 8px; }
  .partner-badge { padding: 8px 14px; font-size: 0.72rem; }
}
