/* ═══════════════════════════════════════════════
   ONE TAKE LOGISTICS — Premium Design System
   Kempton Park, Johannesburg, South Africa
   ═══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --dark:        #070B14;
  --navy:        #0A0E1A;
  --navy-2:      #111827;
  --navy-3:      #1a2235;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A8892E;
  --gold-dim:    rgba(201,168,76,0.12);
  --white:       #FFFFFF;
  --off-white:   #F5F4F0;
  --gray-light:  #E5E5E0;
  --gray-mid:    #9CA3AF;
  --gray-dark:   #4B5563;
  --text-body:   #CBD5E1;
  --text-light:  #94A3B8;
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
}

/* ── RESET ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font:inherit; }
input, select, textarea { font-family:inherit; }

/* ── UTILITY ── */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section   { padding:100px 0; }
.gold-text { color:var(--gold); }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 22px 0;
}
#navbar.scrolled {
  background: rgba(7,11,20,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img-wrap {
  gap: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  /* knock out white background on dark nav */
  mix-blend-mode: lighten;
  filter: brightness(1.05) contrast(1.05);
  border-radius: 4px;
  transition: opacity 0.3s ease;
}
.logo-img:hover { opacity: 0.88; }
.logo-img-footer {
  height: 70px;
  mix-blend-mode: lighten;
  filter: brightness(1.1) contrast(1.05);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* Nav CTA */
.btn-nav {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-nav:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Deep dark gradient with subtle radial warm glow */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(10,14,26,0.95) 0%, transparent 100%),
    linear-gradient(160deg, #070B14 0%, #0d1428 50%, #070B14 100%);
}
/* Animated grid */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-overlay { position:absolute; inset:0; }
.hero-particles { position:absolute; inset:0; pointer-events:none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.badge-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%   { transform:scale(1); opacity:0.8; }
  100% { transform:scale(2); opacity:0; }
}

/* Hero title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.ht-line { display: block; }
.ht-gold { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 42px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--white); }

/* Hero buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-arr { transition: transform var(--transition); }
.btn-primary:hover .btn-arr,
.btn-outline:hover .btn-arr { transform: translateX(4px); }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  flex-wrap: wrap;
  gap: 16px;
}
.hstat {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}
.hstat-n {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hstat-suf {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  margin-left: 2px;
}
.hstat-l {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.hstat-sep {
  width: 1px; height: 48px;
  background: rgba(201,168,76,0.2);
  margin: 0 20px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.scroll-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-rl;
}
.scroll-bar {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.scroll-bar-inner {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

/* Reveal animations */
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   MARQUEE TICKER
═══════════════════════════════════════ */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 22px;
}
.msep {
  color: var(--navy) !important;
  opacity: 0.5;
  font-size: 8px !important;
  padding: 0 !important;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.sec-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.sec-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-header .sec-tag { padding-left: 0; }
.sec-header .sec-tag::before { display: none; }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.sec-title em {
  color: var(--gold);
  font-style: italic;
}
.sec-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-section {
  background: var(--navy);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--navy-2);
  padding: 44px 36px;
  position: relative;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { background: var(--navy-3); }
.svc-featured {
  background: linear-gradient(160deg, #1a2440, #111827);
  border: 2px solid rgba(201,168,76,0.3);
  margin: -2px;
  z-index: 1;
}
.svc-featured:hover { background: linear-gradient(160deg, #1e2a4a, #1a2235); }
.svc-featured-tag {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
}
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
}
.svc-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform var(--transition);
}
.svc-card:hover .svc-icon { transform: scale(1.1); }
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.svc-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
}
.svc-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-features li {
  font-size: 12px;
  color: var(--gray-mid);
  padding-left: 18px;
  position: relative;
}
.svc-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.svc-link:hover { gap: 12px; color: var(--gold-light); }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about-accent {
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Visual side */
.about-visual { position: relative; }
.av-frame {
  position: relative;
  margin-bottom: 32px;
}
.av-inner {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
}
.av-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}
.av-graphic {
  position: relative;
}
.truck-svg { width: 100%; height: auto; }
.av-road {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.road-dash {
  position: absolute;
  top: 0; left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.8) 40%,
    rgba(201,168,76,0.8) 60%,
    transparent 100%);
  animation: road-move 3s linear infinite;
}
@keyframes road-move {
  from { left: -100%; }
  to   { left: 100%; }
}

/* Float badges */
.av-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(10,14,26,0.95);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  animation: float-badge 3s ease-in-out infinite;
}
.av-badge-1 { top: -16px; left: -16px; }
.av-badge-2 { bottom: -16px; right: -16px; animation-delay: 1.5s; }
.avb-icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}
.avb-gold { color: var(--gold); background: rgba(201,168,76,0.2); }
.av-badge strong { display: block; font-size: 13px; color: var(--white); font-weight: 600; }
.av-badge small  { font-size: 11px; color: var(--text-light); }
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* Metrics row */
.av-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.av-metric {
  background: var(--navy-2);
  padding: 20px 16px;
  text-align: center;
}
.avm-n {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.avm-suf { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); }
.avm-l {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

/* Content side */
.about-content { position: relative; }
.about-lead {
  font-size: 18px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-lead strong { color: var(--gold); }
.about-body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-pillars {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  font-size: 18px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pillar p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-section {
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why-card:hover::before { opacity: 1; }
.why-n {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
}
.why-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-3deg); }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   COVERAGE STRIP
═══════════════════════════════════════ */
.coverage-strip {
  background: linear-gradient(135deg, #0d1020, #111827);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 60px 0;
}
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.cov-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cov-text p {
  font-size: 14px;
  color: var(--text-light);
}
.cov-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ctag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}
.ctag:hover {
  background: rgba(201,168,76,0.15);
  color: var(--white);
  border-color: var(--gold);
}
.ctag-sadc {
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section {
  background: var(--dark);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.testi-featured {
  background: linear-gradient(160deg, #1a2440, #111827);
  border-color: rgba(201,168,76,0.25);
}
.testi-stars {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}
blockquote::before {
  content: '"';
  position: absolute;
  left: 0; top: -8px;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  font-style: normal;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════
   QUOTE FORM
═══════════════════════════════════════ */
.quote-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.quote-info .sec-title { font-size: 38px; margin-top: 12px; text-align: left; }
.quote-info p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}
.quote-guarantees {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.qg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.qg-check {
  width: 22px; height: 22px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
}
.quote-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qcontact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}
.qcontact:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.qcontact-wa { border-color: rgba(37,211,102,0.2); }
.qcontact-wa:hover { border-color: #25D366; background: rgba(37,211,102,0.05); }
.qc-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.qcontact small { display: block; font-size: 11px; color: var(--text-light); margin-bottom: 2px; }
.qcontact strong { font-size: 14px; color: var(--white); font-weight: 600; }

/* Form */
.quote-form {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-full { grid-column: 1 / -1; margin-bottom: 16px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; }
.form-note {
  font-size: 11px;
  color: var(--gray-dark);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-card {
  background: var(--navy-2);
  padding: 28px 24px;
  transition: background var(--transition);
}
.contact-card:hover { background: var(--navy-3); }
.cc-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.cc-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.cc-link:hover { color: var(--gold-light); }

/* Map */
.contact-map { display: flex; align-items: stretch; }
.map-inner {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 300px;
  justify-content: center;
}
.map-pin-wrap {
  position: relative;
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.map-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pin-head {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.pin-tail {
  width: 2px; height: 10px;
  background: var(--gold);
  opacity: 0.6;
}
.ping {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  animation: ping-anim 2s ease-out infinite;
}
.ping.r1 { width: 40px; height: 40px; animation-delay: 0s; }
.ping.r2 { width: 60px; height: 60px; animation-delay: 0.5s; }
.ping.r3 { width: 80px; height: 80px; animation-delay: 1s; }
@keyframes ping-anim {
  0%   { opacity: 0.8; transform: scale(0.5); }
  100% { opacity: 0;   transform: scale(1.3); }
}
.map-loc { font-size: 16px; color: var(--white); font-weight: 600; }
.map-inner small { font-size: 13px; color: var(--text-light); }
.map-cta {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
  margin-top: 6px;
}
.map-cta:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-top { padding: 70px 0 50px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { padding-right: 40px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}
.socials {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray-dark);
}

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy-2);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  z-index: 9999;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); pointer-events: all; }
.toast-chk {
  width: 22px; height: 22px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: 2; }
  .about-content { order: 1; }
  .coverage-inner { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .quote-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,11,20,0.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 22px; letter-spacing: 0.5px; }
  .btn-nav { display: none; }
  .hamburger { display: flex; z-index: 999; }
  .nav-container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: 100svh; }
  .hero-title { font-size: clamp(38px, 10vw, 60px); margin-bottom: 20px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { font-size: 10px; margin-bottom: 20px; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
  }
  .hstat-sep { display: none; }
  .hstat { min-width: calc(50% - 8px); }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 36px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 15px 24px; }

  /* Section headers */
  .sec-title { font-size: clamp(26px, 7vw, 38px); }
  .sec-desc { font-size: 14px; }
  .sec-header { margin-bottom: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .svc-featured { margin: 0; }
  .svc-card { padding: 28px 24px; }
  .svc-img-wrap { height: 160px; }

  /* About */
  .about-container { gap: 40px; }
  .av-photo-frame { height: 260px; }
  .about-lead { font-size: 16px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; }

  /* Coverage */
  .coverage-inner { grid-template-columns: 1fr; gap: 24px; }
  .cov-text h3 { font-size: 24px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 28px 20px; }
  blockquote { font-size: 15px; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .key-contacts { grid-template-columns: 1fr; gap: 16px; }
  .kc-card { flex-direction: column; text-align: center; align-items: center; padding: 24px 20px; }

  /* Quote */
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .quote-form { padding: 24px 16px; }
  .quote-wrapper { gap: 36px; }
  .quote-contacts { flex-direction: column; gap: 10px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
  .footer-top { padding: 48px 0 36px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-title { font-size: 36px; line-height: 1; }
  .hstat { min-width: calc(50% - 8px); }
  .av-metrics { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .testi-card { padding: 24px 16px; }
  .logo-name { font-size: 13px; }
}

/* ═══════════════════════════════════════
   HERO BACKGROUND IMAGE
═══════════════════════════════════════ */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.28;
  z-index: 0;
  filter: saturate(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(7,11,20,0.92) 0%, rgba(7,11,20,0.6) 55%, rgba(7,11,20,0.82) 100%),
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.hero-particles { z-index: 2; }
.hero-content { z-index: 3; position: relative; }

/* ═══════════════════════════════════════
   SERVICE CARD IMAGES
═══════════════════════════════════════ */
.svc-img-wrap {
  position: relative;
  height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
}
.svc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.svc-card:hover .svc-img { transform: scale(1.06); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.7) 0%, rgba(7,11,20,0.1) 60%, transparent 100%);
}

/* ═══════════════════════════════════════
   ABOUT — REAL FLEET IMAGE
═══════════════════════════════════════ */
.av-photo-frame {
  padding: 0 !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  position: relative;
}
.about-fleet-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.6s ease;
}
.av-photo-frame:hover .about-fleet-img { transform: scale(1.04); }
.about-fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}
.afo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(7,11,20,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.afo-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
  animation: pulse-ring 2s infinite;
}

/* ═══════════════════════════════════════
   FLEET SHOWCASE SECTION
═══════════════════════════════════════ */
.fleet-section {
  background: var(--dark);
}
.fleet-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fg-main {
  position: relative;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
}
.fg-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}
.fg-main:hover .fg-main-img { transform: scale(1.04); }
.fg-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.7) 0%, transparent 50%);
}
.fg-main-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(7,11,20,0.85);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.fmt-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  flex-shrink: 0;
}
.fg-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
.fg-thumb {
  position: relative;
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  min-height: 140px;
}
.fg-thumb:first-child { border-radius: 0 var(--radius-lg) 0 0; }
.fg-thumb:last-child  { border-radius: 0 0 var(--radius-lg) 0; }
.fg-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.fg-thumb:hover img { transform: scale(1.08); }
.fg-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.65) 0%, transparent 50%);
}
.fg-thumb-label {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}

/* Fleet Specs Grid */
.fleet-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fspec {
  background: var(--navy-2);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition);
}
.fspec:hover { background: var(--navy-3); }
.fspec-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}
.fspec-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.fspec-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.fspec p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   IMPACT STRIP
═══════════════════════════════════════ */
.impact-strip {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.impact-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.5);
}
.impact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(7,11,20,0.96) 0%, rgba(10,14,26,0.88) 50%, rgba(7,11,20,0.96) 100%);
}
.impact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.impact-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.impact-copy h2 em { color: var(--gold); font-style: italic; }
.impact-copy p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.impact-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.imp-n {
  background: rgba(10,14,26,0.8);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}
.imp-val {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.imp-l {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ═══════════════════════════════════════
   KEY CONTACTS (Makodza)
═══════════════════════════════════════ */
.key-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.kc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.kc-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.kc-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.kc-female {
  background: linear-gradient(135deg, #a82d5f, #c93f76);
  box-shadow: 0 4px 16px rgba(168,45,95,0.3);
}
.kc-info { flex: 1; }
.kc-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.kc-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.kc-info p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.kc-contact-btn {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.kc-contact-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════
   FLEET HERO BANNER
═══════════════════════════════════════ */
.fleet-hero-banner {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
.fleet-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 1s ease;
}
.fleet-hero-banner:hover .fleet-hero-img { transform: scale(1.04); }
.fleet-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.9) 0%, rgba(7,11,20,0.3) 50%, rgba(7,11,20,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  gap: 20px;
}
.fhb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(7,11,20,0.8);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.fhb-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 12px;
}
.fhb-s {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.fhb-s span {
  color: var(--gold);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-right: 4px;
}
.fhb-sep {
  width: 1px; height: 24px;
  background: rgba(201,168,76,0.3);
  margin: 0 4px;
}

/* ═══════════════════════════════════════
   TRUCK TYPE CARDS
═══════════════════════════════════════ */
.fleet-sub-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.fleet-sub-heading::after {
  content: '';
  display: block;
  width: 48px; height: 2px;
  background: var(--gold);
  margin-top: 12px;
}
.truck-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.truck-card {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.truck-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.truck-card-featured {
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 4px 24px rgba(201,168,76,0.08);
}
.truck-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.truck-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
  filter: saturate(0.85);
}
.truck-card:hover .truck-img-wrap img {
  transform: scale(1.08);
  filter: saturate(1);
}
.truck-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.85) 0%, rgba(7,11,20,0.2) 50%, transparent 100%);
}
.truck-brand-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 12px;
  background: rgba(7,11,20,0.88);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(6px);
}
.truck-popular-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  padding: 5px 12px;
  background: var(--gold);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.truck-card-body {
  padding: 22px 24px 26px;
}
.truck-model {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.truck-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.truck-specs-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: rgba(201,168,76,0.06);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}
.truck-specs-row span {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}
.truck-specs-row span:not(:last-child):not(:nth-child(even)) {
  color: var(--white);
  font-weight: 600;
}
.truck-card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   TRAILER TYPES STRIP
═══════════════════════════════════════ */
.trailer-strip {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 48px;
}
.ts-header {
  margin-bottom: 28px;
}
.ts-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-top: 8px;
}
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ts-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.ts-item:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.2);
}
.ts-icon {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 4px;
}
.ts-item strong {
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}
.ts-item small {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .fleet-gallery { grid-template-columns: 1fr; }
  .fg-main { min-height: 320px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .fg-side { grid-template-rows: unset; grid-template-columns: repeat(3, 1fr); }
  .fg-thumb { min-height: 180px; }
  .fg-thumb:first-child { border-radius: 0 0 0 var(--radius-lg); }
  .fg-thumb:last-child  { border-radius: 0 0 var(--radius-lg) 0; }
  .fleet-specs { grid-template-columns: repeat(3, 1fr); }
  .impact-inner { grid-template-columns: 1fr; gap: 40px; }
  .key-contacts { grid-template-columns: 1fr; }
  .truck-types-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-hero-banner { height: 320px; }
}

@media (max-width: 768px) {
  .fg-side { grid-template-columns: 1fr; }
  .fg-thumb { min-height: 140px; }
  .fg-thumb:first-child, .fg-thumb:last-child { border-radius: var(--radius); }
  .fleet-specs { grid-template-columns: repeat(2, 1fr); }
  .impact-strip { padding: 70px 0; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
  .key-contacts { grid-template-columns: 1fr; }
  .kc-card { flex-direction: column; text-align: center; }
  .truck-types-grid { grid-template-columns: 1fr; }
  .ts-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-hero-banner { height: 260px; }
  .fleet-hero-overlay { padding: 24px; }
  .trailer-strip { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .ts-grid { grid-template-columns: 1fr; }
  .fhb-stat-row { gap: 8px; }
}
