/* ============================================================
   INTERNATIONAL SHIPPING CONQUEST — STYLES.CSS
   Design System: Deep Navy / Steel Blue / White
   Palette: #000719 | #1a344b | #ffffff
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* ── Core palette ── */
  --bg-deepest:  #000719;   /* page background, darkest surfaces  */
  --bg-mid:      #0a1628;   /* intermediate bg layer              */
  --surface:     #1a344b;   /* cards, navbar (scrolled), sections */
  --surface-lo:  #142840;   /* slightly darker cards              */
  --surface-hi:  #214060;   /* hover / elevated cards             */
  --border:      rgba(255,255,255,0.10);
  --border-hi:   rgba(255,255,255,0.22);

  /* ── Keep legacy names mapped to new palette ── */
  --navy-950: #000719;
  --navy-900: #000e24;
  --navy-800: #0d1f35;
  --navy-700: #142840;
  --navy-600: #1a344b;
  --navy-500: #214060;
  --navy-400: #3a6080;
  --navy-300: #6a90aa;
  --navy-200: #a8c0d0;
  --navy-100: #d8e8f0;

  /* ── No red — white is the accent ── */
  --accent:        #ffffff;
  --accent-hover:  rgba(255,255,255,0.85);
  --accent-dim:    rgba(255,255,255,0.18);
  --accent-border: rgba(255,255,255,0.30);

  /* ── Legacy red vars remapped to white-on-dark ── */
  --red-600: #1a344b;
  --red-500: #1a344b;
  --red-400: #214060;
  --red-300: #3a6080;

  --white:      #ffffff;
  --off-white:  #e8f0f8;
  --gray-100:   #d0dce8;
  --gray-200:   #a8b8cc;
  --gray-400:   #6a80a0;
  --gray-600:   #3a5068;

  --primary-text:   var(--white);
  --secondary-text: var(--navy-200);
  --muted-text:     var(--gray-400);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm:        0 2px 8px rgba(0, 0, 0, 0.40);
  --shadow-md:        0 8px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg:        0 20px 60px rgba(0, 0, 0, 0.70);
  --shadow-glow-red:  0 0 30px rgba(255,255,255,0.08);
  --shadow-glow-blue: 0 0 30px rgba(26, 52, 75, 0.60);

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

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --navbar-h:      90px;
  --container-max: 1200px;
}


/* ---------- 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-color: #000719;
  color: var(--primary-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SECTION SHARED ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--navy-200);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.highlight {
  background: linear-gradient(135deg, #ffffff, #a8c0d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-primary {
  background: #1a344b;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.btn-primary:hover {
  background: #214060;
  border-color: rgba(255,255,255,0.50);
  box-shadow: 0 8px 32px rgba(0,0,0,0.50);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn-nav-cta {
  background: #1a344b;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.btn-nav-cta:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  background: #214060;
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 7, 25, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 76px;
  width: auto;
  transition: transform var(--transition);
  display: block;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 3px 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.navbar.scrolled .logo-img {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.nav-logo:hover .logo-img { transform: scale(1.04); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 20px;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    url('assets/hero_bg.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 7, 25, 0.93) 0%,
    rgba(0, 7, 25, 0.80) 40%,
    rgba(26, 52, 75, 0.60) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--navbar-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-100);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fade-up 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,255,255,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}

.badge-dot.pulse { animation: pulse-dot 1.5s ease-in-out infinite; }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px rgba(255,255,255,0.7); }
  50%       { box-shadow: 0 0 18px rgba(255,255,255,0.9); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fade-up 0.8s 0.1s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--navy-100);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 44px;
  animation: fade-up 0.8s 0.2s ease both;
}

.hero-subtitle strong { color: var(--white); }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  width: fit-content;
  animation: fade-up 0.8s 0.4s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--navy-200);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: fade-in 1s 1s ease both;
}

.hero-scroll-indicator span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-200);
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--navy-200), transparent);
  border-radius: 2px;
  animation: scroll-pulse 1.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.4); opacity: 1; }
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  background: #000719;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}

.feature-card:hover::before { opacity: 1; }

.card-icon-wrap {
  margin-bottom: 20px;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 52, 75, 0.80);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

.feature-card:hover .card-icon {
  background: rgba(26, 52, 75, 1);
  box-shadow: 0 0 24px rgba(255,255,255,0.08);
}

.card-number {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.30);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.card-text {
  font-size: 0.95rem;
  color: var(--navy-200);
  line-height: 1.7;
}

.card-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent);
  transition: all var(--transition);
}
.feature-card:hover .card-accent { transform: scale(1.5); }

/* ---------- ADVANTAGES ---------- */
.advantages {
  background: linear-gradient(180deg, #000719 0%, #000e24 100%);
  overflow: hidden;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  background: linear-gradient(180deg, #000719 0%, #000e24 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.about-text {
  font-size: 1rem;
  color: var(--navy-200);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text strong { color: var(--white); }
.about-text:last-of-type { margin-bottom: 32px; }

.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Heritage card */
.about-heritage-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(26,52,75,0.20));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.about-heritage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #1a344b);
}

.heritage-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.heritage-icon svg { width: 26px; height: 26px; stroke: #ffffff; }

.heritage-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.heritage-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-text);
  font-weight: 600;
}

.heritage-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.heritage-sub {
  font-size: 0.82rem;
  color: #a8c0d0;
  font-weight: 600;
}

/* Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.pillar-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 18px; height: 18px; stroke: #ffffff; }

.pillar-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pillar-item strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.pillar-item span {
  font-size: 0.85rem;
  color: var(--navy-200);
}

/* ---------- FLEET SECTION ---------- */
.fleet-section {
  background: var(--navy-900);
  overflow: hidden;
}

.fleet-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('assets/hero_bg.png') center 70% / cover no-repeat;
  opacity: 0.04;
  z-index: 0;
}

.fleet-section .container { position: relative; z-index: 1; }

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fleet-card {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.fleet-card-featured {
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 0 40px rgba(255,255,255,0.03);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}

.fleet-card-featured:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,0.5), 0 0 50px rgba(255,255,255,0.05);
}

.fleet-card-inner {
  padding: 44px 40px;
}

.fleet-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-200);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.fleet-badge-featured {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
}

.fleet-icon-wrap {
  margin-bottom: 24px;
}

.fleet-vehicle-icon {
  width: 100%;
  max-width: 220px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.fleet-card:hover .fleet-vehicle-icon { opacity: 1; }

.fleet-vehicle-icon svg {
  width: 100%;
  height: auto;
}

.fleet-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.fleet-desc {
  font-size: 0.95rem;
  color: var(--navy-200);
  line-height: 1.75;
  margin-bottom: 24px;
}
.fleet-desc strong { color: var(--white); }

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--navy-100);
}

.fleet-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.fleet-btn { width: 100%; justify-content: center; }

/* ---------- FORM SELECT ---------- */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238895b0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-800);
  color: var(--white);
}

/* Heritage footer badge */
.footer-heritage-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
}

.fhb-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fhb-icon svg { width: 20px; height: 20px; stroke: var(--accent); }

.footer-heritage-badge strong {
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
}
.footer-heritage-badge span {
  display: block;
  font-size: 0.72rem;
  color: #a8c0d0;
}

/* ---------- RESPONSIVE ADDITIONS ---------- */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .fleet-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .about-cta-row { flex-direction: column; }
  .about-cta-row .btn { width: 100%; justify-content: center; }
  .fleet-card-inner { padding: 32px 24px; }
}


.adv-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('assets/why_us_bg.png') center center / cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}


.advantages .container { position: relative; z-index: 1; }

.advantages-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.adv-comparison {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.compare-col {
  flex: 1;
  padding: 40px;
}

.compare-traditional {
  background: linear-gradient(145deg, rgba(10, 14, 25, 0.95), rgba(5, 10, 20, 0.98));
  border: 1px solid rgba(255,255,255,0.05);
}

.compare-us {
  background: linear-gradient(145deg, #1a344b, #142840);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
}

.compare-us::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.20), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.compare-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-icon-bad {
  background: rgba(100, 50, 50, 0.4);
  border: 1px solid rgba(180, 80, 80, 0.3);
  color: #e06060;
}

.compare-icon-good {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.30);
  color: var(--white);
}

.compare-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-list li:last-child { border-bottom: none; }

.compare-traditional .compare-list li { color: var(--gray-400); }
.compare-traditional .compare-list li::before {
  content: '—';
  color: rgba(180, 80, 80, 0.6);
  flex-shrink: 0;
}

.compare-us .compare-list li { color: var(--navy-100); }
.compare-us .compare-list li::before {
  content: '✓';
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gray-400);
  background: #000719;
  writing-mode: horizontal-tb;
  z-index: 1;
  letter-spacing: 0.1em;
}

.adv-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.metric-card {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
}
.metric-card:hover::after { opacity: 1; }

.metric-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 52, 75, 0.80);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.metric-icon svg { width: 24px; height: 24px; stroke: #ffffff; }

.metric-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--navy-200);
  line-height: 1.5;
}

/* ---------- QUOTE SECTION ---------- */
.quote-section {
  background: linear-gradient(180deg, #000e24 0%, #000719 100%);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.quote-info .section-title { text-align: left; margin-bottom: 16px; }
.quote-info .section-tag { margin-bottom: 12px; }

.quote-description {
  font-size: 1rem;
  color: var(--navy-200);
  line-height: 1.7;
  margin-bottom: 40px;
}
.quote-description strong { color: var(--white); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.step-num {
  width: 44px;
  height: 44px;
  background: #1a344b;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 10px;
}

.step-content strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.step-content span {
  font-size: 0.9rem;
  color: var(--navy-200);
}

.step-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.30), rgba(255,255,255,0.04));
  margin-left: 21px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 52, 75, 0.80);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: #ffffff; }

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-value {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.contact-value:hover { color: var(--accent); }

/* ---------- QUOTE FORM ---------- */
.quote-form-wrap {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quote-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a344b, #ffffff, #1a344b);
}

.quote-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-100);
  letter-spacing: 0.02em;
}

.req { color: var(--accent); }

.form-input {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: all var(--transition);
  width: 100%;
}

.form-input::placeholder { color: rgba(255,255,255,0.25); }

.form-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.07);
}

.form-input.error {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-error {
  font-size: 0.8rem;
  color: #ff6b6b;
  min-height: 1em;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-label {
  font-size: 0.85rem;
  color: var(--navy-200);
  cursor: pointer;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 28px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: var(--radius-lg);
}

.success-icon {
  font-size: 2rem;
  color: #2ecc71;
  margin-bottom: 12px;
}

.form-success strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p { font-size: 0.9rem; color: var(--navy-200); }

/* ---------- LOGIN SECTION ---------- */
.login-section {
  background: linear-gradient(135deg, #000719 0%, #1a344b 50%, #000719 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.login-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.login-text { max-width: 520px; }
.login-text .section-title { text-align: left; margin-bottom: 16px; }
.login-text .section-tag { margin-bottom: 12px; }
.login-text p { color: var(--navy-200); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }

.coming-soon-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem !important;
  color: #a8c0d0 !important;
  font-weight: 600;
  margin-bottom: 0 !important;
}

.login-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000719;
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.footer-desc {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  background: #1a344b;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.92rem;
  color: var(--gray-400);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-links a:hover::before { width: 12px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a {
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(231, 76, 60, 0.6); }

.back-to-top svg { width: 22px; height: 22px; }

/* ---------- ANIMATIONS ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 0.6; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .adv-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .quote-layout { gap: 40px; }
}

@media (max-width: 860px) {
  .quote-layout { grid-template-columns: 1fr; }
  .adv-comparison { flex-direction: column; }
  .compare-vs {
    padding: 12px;
    writing-mode: horizontal-tb;
    background: transparent;
  }
  .adv-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 70px; }

  .section { padding: 72px 0; }

  /* Mobile navbar */
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 32px 40px;
    gap: 16px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    width: 100%;
    gap: 4px;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 0;
  }

  .btn-nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 22px;
    font-size: 1rem;
    margin-top: 8px;
  }

  .hero-title { font-size: 2.8rem; }
  .hero-stats { flex-wrap: wrap; padding: 20px 24px; gap: 20px; }
  .stat-item { padding: 0 16px; }
  .stat-divider { display: none; }

  .cards-grid { grid-template-columns: 1fr; gap: 20px; }

  .adv-metrics { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .quote-form-wrap { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 60px 0 48px; }

  .login-content { flex-direction: column; }
  .login-actions { flex-direction: column; width: 100%; }
  .login-actions .btn { width: 100%; justify-content: center; }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { width: 100%; }
  .compare-col { padding: 28px 24px; }
}
