/* ============================================================
   Accra Executive Transfers — Global Stylesheet
   Fonts: Marcellus (headings), Cormorant Garamond (taglines), Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #11203b;
  --navy-deep:  #0e1c33;
  --navy-mid:   #1b2f50;
  --gold:       #c8a24b;
  --gold-soft:  #e4cf94;
  --cream:      #f4efe4;
  --white:      #ffffff;
  --wa-green:   #25D366;

  --font-head:  'Marcellus', serif;
  --font-tag:   'Cormorant Garamond', serif;
  --font-body:  'Jost', sans-serif;

  --max-w: 1100px;
  --radius: 4px;
  --transition: 0.25s ease;
}

/* ── 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);
  font-weight: 400;
  background: var(--navy);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.tagline {
  font-family: var(--font-tag);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold-soft);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section { padding: 4.5rem 0; }

/* ── Gold Divider (diamond) ─────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem auto;
  width: fit-content;
}
.divider::before,
.divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section title block */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title .label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── Frame border accent ────────────────────────────────────── */
.frame-box {
  position: relative;
  border: 1px solid rgba(200, 162, 75, 0.3);
  padding: 2rem;
}
.frame-box::before,
.frame-box::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  border-style: solid;
}
.frame-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.frame-box::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(200,162,75,0.1); }

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2rem;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* ── Navigation ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 28, 51, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,162,75,0.15);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: 1.25rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo span {
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { font-family: var(--font-body); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(200,162,75,0.15);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-drawer.open { max-height: 400px; }
.nav-drawer a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200,162,75,0.08);
  transition: background var(--transition);
}
.nav-drawer a:hover { background: rgba(200,162,75,0.08); color: var(--gold); }
.nav-drawer .drawer-cta {
  padding: 1.25rem 1.5rem;
  border-bottom: none;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,28,51,0.85) 40%, rgba(14,28,51,0.4));
}
/* Split layout */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100svh - 64px);
  padding-block: 3rem;
}

.hero-content {
  padding: 1rem 0;
}

/* ── Hero vehicle panel ──────────────────────────────────────── */
.hero-vehicle-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* bleed right past the container for more impact */
  margin-right: -3vw;
}

.hero-vehicle-frame {
  position: relative;
  width: 110%;
  max-width: 720px;
}

/* Gold corner frame */
.hero-vehicle-frame::before,
.hero-vehicle-frame::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 3;
}
.hero-vehicle-frame::before { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
.hero-vehicle-frame::after  { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

.hero-vehicle-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,0.7));
}

/* Ambient glow behind car */
.hero-vehicle-glow {
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(ellipse at center, rgba(200,162,75,0.18) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
  filter: blur(24px);
}

/* Floating spec chips */
.hero-chip {
  position: absolute;
  z-index: 4;
  background: rgba(14,28,51,0.92);
  border: 1px solid rgba(200,162,75,0.4);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.85rem;
  border-radius: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  animation: chipFloat 4s ease-in-out infinite;
}
.hero-chip span { font-size: 0.9rem; }
.hero-chip--top    { top: -14px; left: 10%; animation-delay: 0s; }
.hero-chip--bottom { bottom: 52px; right: 5%; animation-delay: 2s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Bottom name badge */
.hero-vehicle-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(14,28,51,0.95) 0%, transparent 100%);
  border-radius: 0 0 6px 6px;
  padding: 1.5rem 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-vehicle-badge strong {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.2;
}
.hero-vehicle-badge span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(200,162,75,0.5);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .tagline { margin-bottom: 2rem; display: block; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,162,75,0.2);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Services ─────────────────────────────────────────────────── */
.services { background: var(--navy-mid); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(14,28,51,0.6);
  border: 1px solid rgba(200,162,75,0.15);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-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);
}
.service-card:hover { border-color: rgba(200,162,75,0.45); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.7;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card .card-link:hover { gap: 0.7rem; }

/* ── Why Us ───────────────────────────────────────────────────── */
.why-us { background: var(--navy-deep); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.why-item { text-align: center; }
.why-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.why-item h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.why-item p { font-size: 0.83rem; opacity: 0.75; }

/* ── Area section ─────────────────────────────────────────────── */
.area { background: var(--navy-mid); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.area-map {
  border: 1px solid rgba(200,162,75,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  position: relative;
  background: var(--navy);
}
.area-map iframe {
  width: 100%; height: 100%;
  min-height: 320px;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
  opacity: 0.85;
}
.area-text p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1rem; }
.area-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.9rem 1.1rem;
  background: rgba(200,162,75,0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.82rem;
  color: var(--gold-soft);
}

/* ── Vehicle strip ────────────────────────────────────────────── */
.vehicle { background: var(--navy-deep); }
.vehicle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.vehicle-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.vehicle-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.vehicle-badge {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(14,28,51,0.9);
  border: 1px solid var(--gold);
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: var(--radius);
}
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.spec-item {
  padding: 0.9rem;
  background: rgba(200,162,75,0.06);
  border: 1px solid rgba(200,162,75,0.15);
  border-radius: var(--radius);
}
.spec-item strong { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.spec-item span { font-size: 0.875rem; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border-top: 1px solid rgba(200,162,75,0.2);
  border-bottom: 1px solid rgba(200,162,75,0.2);
  text-align: center;
  padding: 4rem 1.25rem;
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner .tagline { margin-bottom: 2rem; display: block; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Fleet Showcase ───────────────────────────────────────────── */
.fleet-section { background: var(--navy-deep); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fleet-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,162,75,0.18);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.fleet-card:hover {
  border-color: rgba(200,162,75,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.fleet-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--navy-deep);
}
.fleet-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-photo img { transform: scale(1.04); }

.fleet-card-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    rgba(200,162,75,0.04) 0px,
    rgba(200,162,75,0.04) 2px,
    transparent 2px,
    transparent 20px
  );
}
.fleet-coming-inner {
  text-align: center;
  color: var(--gold);
  opacity: 0.55;
}
.fleet-coming-inner p {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-top: 0.6rem;
  line-height: 1.4;
}

.fleet-card-badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.fleet-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-card-meta { margin-bottom: 0.4rem; }
.fleet-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.fleet-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.fleet-card-body h3 span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.65;
  display: block;
}
.fleet-card-body p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.7;
  flex: 1;
}

.fleet-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,162,75,0.12);
}
.fleet-specs-row li {
  font-size: 0.78rem;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.fleet-specs-row li span { font-size: 0.9rem; }

.fleet-card--coming { border-style: dashed; border-color: rgba(200,162,75,0.2); }
.fleet-card--coming:hover { border-color: rgba(200,162,75,0.4); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(200,162,75,0.15);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.25rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.83rem; opacity: 0.7; max-width: 260px; }
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; opacity: 0.75; transition: opacity var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(200,162,75,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Sticky WhatsApp button ──────────────────────────────────── */
.sticky-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 200;
  background: var(--wa-green);
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.sticky-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.sticky-wa-label {
  position: absolute;
  right: 70px;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(200,162,75,0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.sticky-wa:hover .sticky-wa-label { opacity: 1; transform: translateX(0); }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 8rem 1.25rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(200,162,75,0.15);
}
.page-hero .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

/* ── Services page ───────────────────────────────────────────── */
.service-detail {
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(200,162,75,0.08);
}
.service-detail:nth-child(even) { background: var(--navy-mid); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-detail-inner.reversed { direction: rtl; }
.service-detail-inner.reversed > * { direction: ltr; }
.service-icon-lg {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}
.service-detail h2 { margin-bottom: 1rem; }
.service-detail p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1rem; }
.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
}
.service-highlights li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.service-visual {
  background: var(--navy-deep);
  border: 1px solid rgba(200,162,75,0.2);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,162,75,0.07) 0%, transparent 70%);
}

/* ── About page ──────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-portrait {
  border: 1px solid rgba(200,162,75,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value-card {
  padding: 1.5rem;
  background: var(--navy-mid);
  border: 1px solid rgba(200,162,75,0.12);
  border-radius: var(--radius);
  text-align: center;
}
.value-card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.value-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.8rem; opacity: 0.7; }

/* ── Booking page ────────────────────────────────────────────── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.booking-channels { display: flex; flex-direction: column; gap: 1rem; }
.channel-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(200,162,75,0.15);
  border-radius: var(--radius);
  background: var(--navy-mid);
  transition: border-color var(--transition);
}
.channel-card:hover { border-color: rgba(200,162,75,0.4); }
.channel-icon { font-size: 2rem; flex-shrink: 0; }
.channel-card h4 { margin-bottom: 0.2rem; }
.channel-card p { font-size: 0.82rem; opacity: 0.75; }
.channel-card .btn { margin-top: 0.75rem; font-size: 0.78rem; padding: 0.6rem 1.2rem; }

.quote-form {
  background: var(--navy-mid);
  border: 1px solid rgba(200,162,75,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote-form h3 { margin-bottom: 0.5rem; }
.quote-form .sub { font-size: 0.83rem; opacity: 0.7; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(14,28,51,0.8);
  border: 1px solid rgba(200,162,75,0.2);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { background: var(--navy-mid); }
.faq-list { max-width: 700px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid rgba(200,162,75,0.1);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1rem;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .faq-arrow {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 0.8rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.8;
}

/* ── Testimonial placeholder ─────────────────────────────────── */
.testimonials { background: var(--navy-deep); }
.testimonial-placeholder {
  border: 2px dashed rgba(200,162,75,0.25);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  max-width: 600px;
  margin-inline: auto;
}
.testimonial-placeholder p { font-size: 0.85rem; opacity: 0.5; }
.testimonial-placeholder strong { display: block; margin-bottom: 0.5rem; color: var(--gold); opacity: 0.7; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Animations ──────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — mobile-first breakpoints
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet: 900px and below ─────────────────────────────────── */
@media (max-width: 900px) {
  .area-inner,
  .about-story,
  .booking-grid,
  .service-detail-inner,
  .service-detail-inner.reversed { grid-template-columns: 1fr; direction: ltr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Hero: stack vertically, car below text */
  .hero-split {
    grid-template-columns: 1fr;
    padding-block: 2rem 0;
    min-height: auto;
    gap: 0;
  }
  .hero-content { padding-bottom: 1.5rem; }

  .hero-vehicle-wrap {
    margin-right: 0;
    justify-content: center;
    padding: 0;
  }
  .hero-vehicle-frame {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
  /* Remove corner brackets on mobile — they clip */
  .hero-vehicle-frame::before,
  .hero-vehicle-frame::after { display: none; }

  .hero-vehicle-frame img {
    border-radius: 0;
    aspect-ratio: 16 / 9;
    object-position: center 60%;
  }

  /* Move chips so they don't overflow */
  .hero-chip--top    { top: 12px; left: 12px; }
  .hero-chip--bottom { bottom: 48px; right: 12px; }

  .hero-vehicle-badge { padding: 2rem 1rem 0.75rem; }
}

/* ── Mobile nav + layout: 768px and below ────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: flex; }

  /* Sections */
  section { padding: 3rem 0; }

  /* Hero text tightening */
  .hero-badge {
    font-size: 0.62rem;
    padding: 0.3rem 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero .tagline { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.85rem;
  }
  .hero-stats {
    gap: 1rem 2rem;
    padding-top: 1.25rem;
  }

  /* Grids → single column */
  .footer-grid      { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .fleet-grid       { grid-template-columns: 1fr; }
  .vehicle-specs    { grid-template-columns: 1fr 1fr; }

  /* CTA banner */
  .cta-banner { padding: 3rem 1.25rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Page hero (inner pages) */
  .page-hero { padding: 6.5rem 1.25rem 3rem; }

  /* Services detail: hide visual emoji panel on mobile, content is enough */
  .service-visual { min-height: 160px; font-size: 4rem; }

  /* About portrait placeholder */
  .about-portrait { min-height: 220px; font-size: 3.5rem; }

  /* Booking channels */
  .channel-card { flex-direction: column; align-items: flex-start; }

  /* Footer tightening */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Sticky WA — slightly smaller */
  .sticky-wa { width: 52px; height: 52px; font-size: 1.4rem; bottom: 1rem; right: 1rem; }
}

/* ── Small mobile: 480px and below ──────────────────────────── */
@media (max-width: 480px) {
  .why-grid      { grid-template-columns: 1fr; }
  .vehicle-specs { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: 1fr 1fr; }

  /* Hero chips — hide on very small screens, text is enough */
  .hero-chip { display: none; }

  /* Fleet card specs wrap tighter */
  .fleet-specs-row { gap: 0.4rem 0.75rem; }

  /* Admin table — fewer columns on tiny screens */
  .data-table th:nth-child(n+5),
  .data-table td:nth-child(n+5) { display: none; }
}
