/* ============================================================
   Luxury Chauffeurs London – style.css  v2
   Palette: White (primary) | #C9A646 (gold) | Matte Black (#1C1C1C)
   Aesthetic: Light luxury editorial — Rolls-Royce / Burberry register
   Fonts: Playfair Display (display) + Jost (body)
   ============================================================ */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  /* Core palette */
  --white:        #FFFFFF;
  --white-warm:   #FAFAF8;
  --white-cream:  #F5F2EC;
  --white-border: #E8E3D9;
  --white-muted:  #EAE7E0;

  --gold:         #C9A646;
  --gold-light:   #DFC070;
  --gold-dark:    #A68530;
  --gold-pale:    #F7F0DC;
  --gold-bg:      rgba(201,166,70,.08);

  --matte:        #1C1C1C;
  --matte-soft:   #2A2A2A;
  --matte-card:   #242424;
  --matte-border: #383838;

  --text-primary:   #1C1C1C;
  --text-secondary: #5A5A5A;
  --text-muted:     #9A9A9A;
  --text-light:     #BEBEBE;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  /* Layout */
  --nav-height:  82px;
  --section-py:  50px;

  /* Effects */
  --transition:   0.32s cubic-bezier(0.4,0,0.2,1);
  --shadow-soft:  0 4px 24px rgba(28,28,28,.07);
  --shadow-card:  0 8px 48px rgba(28,28,28,.10);
  --shadow-gold:  0 8px 32px rgba(201,166,70,.22);
  --shadow-hover: 0 16px 56px rgba(28,28,28,.14);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--matte);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-secondary); }

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title { margin-bottom: 0.9rem; }
.section-desc  { max-width: 560px; margin-bottom: 2.75rem; }
.section-divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0 2rem;
  border-radius: 2px;
}
.section-divider.centered { margin-left: auto; margin-right: auto; }
.text-gold { color: var(--gold) !important; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Italic gold accent in headings */
em.gold { font-style: italic; color: var(--gold-dark); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0.95rem 2.6rem;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--white) !important;
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark) !important;
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-matte {
  background: var(--matte);
  color: var(--white) !important;
  border: 2px solid var(--matte);
}
.btn-matte:hover {
  background: var(--matte-soft);
  border-color: var(--matte-soft);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(28,28,28,.25);
}

.btn-outline-matte {
  background: transparent;
  color: var(--matte) !important;
  border: 2px solid var(--matte);
}
.btn-outline-matte:hover {
  background: var(--matte);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Ripple */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 8px; height: 8px;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
  margin: -4px 0 0 -4px;
}
@keyframes rippleAnim { to { transform: scale(30); opacity: 0; } }

/* ─── Navbar ─────────────────────────────────────────────── */
#mainNav {
  height: var(--nav-height);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--white-border);
  transition: all 0.38s ease;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-card);
  height: max-content;
}
#mainNav.hero-transparent {
  background: transparent;
  border-bottom-color: rgba(255,255,255,.18);
}
#mainNav.hero-transparent .nav-link  { color: rgba(255,255,255,.88) !important; }
#mainNav.hero-transparent .brand-main { color: var(--white); }
#mainNav.hero-transparent .brand-sub  { color: rgba(255,255,255,.7); }
#mainNav.hero-transparent .toggler-line { background: var(--gold); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: .3s;
}
.brand-icon {
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1;
}
.brand-icon img{
  width: 60px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-main {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--matte);
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-link {
  font-family: var(--font-body) !important;
  font-size: 0.63rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--text-primary) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: color var(--transition) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.85rem; right: 0.85rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}
.nav-link:hover, .nav-link.active { color: var(--gold-dark) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.6rem !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 0 !important;
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.toggler-line {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255,255,255,.99);
    margin: 0 -12px;
    padding: 1.5rem;
    border-top: 1px solid var(--white-border);
    box-shadow: 0 20px 40px rgba(28,28,28,.08);
  }
  .nav-link { padding: 0.7rem 0 !important; border-bottom: 1px solid var(--white-muted); }
  .nav-link::after { display: none; }
  .nav-cta { display: inline-block; margin-top: 1rem; }
  #mainNav.hero-transparent { background: rgba(255,255,255,.97); }
  #mainNav.hero-transparent .nav-link { color: var(--text-primary) !important; }
  #mainNav.hero-transparent .brand-main { color: var(--matte); }
  #mainNav.hero-transparent .brand-sub  { color: var(--gold-dark); }
}

/* ─── Hero Section ───────────────────────────────────────── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(12,10,8,.82) 0%,
      rgba(20,16,12,.65) 45%,
      rgba(28,24,18,.72) 100%),
    url('../images/hero-bg.webp') center/cover no-repeat;
  z-index: 1;
}
/* Subtle warm vignette */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 1;
  background: radial-gradient(ellipse at 65% 40%, rgba(201,166,70,.07) 0%, transparent 65%);
}
/* Gold decorative vertical rule */
.hero-bg::before {
  content: '';
  position: absolute;
  left: 52%;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,166,70,.4), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 7rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2.5rem; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.85;
}
.hero-ctas  { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 2rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,.58);
  letter-spacing: 0.04em;
}
.trust-badge i { color: var(--gold); font-size: 0.85rem; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  writing-mode: vertical-rl;
  margin-top: 0.4rem;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ─── Stats Section ──────────────────────────────────────── */
#stats {
  background: var(--matte);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
/* Subtle diagonal texture overlay */
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(201,166,70,.03) 0px,
    rgba(201,166,70,.03) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-suffix { font-size: 0.52em; }
.stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.stat-divider {
  width: 1px; height: 56px;
  background: rgba(201,166,70,.2);
  margin: auto;
}
@media (max-width: 767px) { .stat-divider { display: none; } }

/* ─── Section separator rules ────────────────────────────── */
.gold-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.light-rule {
  width: 100%; height: 1px;
  background: var(--white-border);
}

/* ─── About Section ──────────────────────────────────────── */
#about {
  padding: var(--section-py) 0;
  background: var(--white-warm);
  overflow-x: hidden;
}
.about-image-wrap { position: relative; }
.about-image-main {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  aspect-ratio: 4/5;
  background: var(--white-cream);
  border: 1px solid var(--white-border);
}
/* Gold corner accent */
.about-image-wrap::before {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  z-index: 2;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 80px; height: 80px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  z-index: 2;
}
.about-badge-float {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 136px; height: 136px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  z-index: 3;
}
.about-badge-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.92;
}
.about-content { padding-left: clamp(0px, 4vw, 3rem); }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-icon {
  width: 44px; min-width: 44px; height: 44px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,166,70,.3);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.about-feature:hover .about-feature-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.about-feature h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--matte);
  margin-bottom: 0.15rem;
  letter-spacing: 0.03em;
}
.about-feature p { font-size: 0.82rem; margin: 0; }

/* ─── Services Section ───────────────────────────────────── */
#services {
  padding: var(--section-py) 0;
  background: var(--white);
  overflow-x: hidden;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--white-border);
  border-radius: 0;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
/* Top gold strip */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(201,166,70,.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,166,70,.25);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.service-card h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--matte);
}
.service-card p { font-size: 0.84rem; margin: 0; }

/* ─── Airport Transfers ──────────────────────────────────── */
#airports {
  padding: var(--section-py) 0;
  background: var(--white-cream);
  position: relative;
  overflow-x: hidden;
}
/* Subtle geometric background */
#airports::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 38%;
  background: var(--white-muted);
  z-index: 0;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#airports .container { position: relative; z-index: 1; }

.airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px,1fr));
  gap: 1.25rem;
}
.airport-card {
  background: var(--white);
  border: 1px solid var(--white-border);
  border-radius: 0;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.airport-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.airport-icon {
  width: 46px; min-width: 46px; height: 46px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,166,70,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.airport-code {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.airport-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--matte);
  margin-bottom: 0.4rem;
}
.airport-desc { font-size: 0.8rem; margin: 0; }
.airport-features-row { margin-top: 3.5rem; }
.airport-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--white-border);
  border-radius: 0;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}
.airport-feature:hover {
  border-color: rgba(201,166,70,.3);
  box-shadow: var(--shadow-hover);
}
.airport-feature i { color: var(--gold); font-size: 1.2rem; min-width: 22px; margin-top: 2px; }
.airport-feature h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--matte);
  margin-bottom: 0.2rem;
}
.airport-feature p { font-size: 0.78rem; margin: 0; }

/* ─── Fleet Section ──────────────────────────────────────── */
#fleet {
  padding: var(--section-py) 0;
  background: var(--matte);
  position: relative;
  overflow: hidden;
}
/* Subtle grid overlay on dark bg */
#fleet::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,166,70,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,70,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
#fleet .section-title { color: var(--white); }
#fleet p { color: rgba(255,255,255,.55); }

.fleet-swiper { width: 100%; overflow: hidden; padding-bottom: 3rem !important; }
.fleet-card {
  background: var(--white);
  border: 1px solid var(--white-border);
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.fleet-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.3), var(--shadow-gold);
  transform: translateY(-4px);
}
.fleet-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--white-cream);
}
.fleet-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.fleet-card:hover .fleet-img { transform: scale(1.06); }
.fleet-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,.5) 0%, transparent 55%);
}
.fleet-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
}
.fleet-body { padding: 1.75rem; background: var(--white); }
.fleet-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--matte);
  margin-bottom: 0.3rem;
}
.fleet-type {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.fleet-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--white-border);
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.fleet-spec i { color: var(--gold); font-size: 0.82rem; }
.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.fleet-feature-tag {
  background: var(--gold-pale);
  border: 1px solid rgba(201,166,70,.2);
  color: var(--text-secondary);
  font-size: 0.63rem;
  padding: 0.28rem 0.65rem;
  font-weight: 500;
}
/* Swiper controls */
.swiper-pagination-bullet {
  background: rgba(201,166,70,.35) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev {
  color: var(--gold) !important;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,166,70,.3);
  width: 44px !important; height: 44px !important;
  border-radius: 0;
  transition: all var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--white) !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 0.85rem !important;
  font-weight: 900 !important;
}

/* ─── Why Choose Us ──────────────────────────────────────── */
#why-us {
  padding: var(--section-py) 0;
  background: var(--white-warm);
}
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--white-border);
  border-radius: 0;
  transition: all var(--transition);
  height: 100%;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,166,70,.3);
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 68px; height: 68px;
  margin: 0 auto 1.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(201,166,70,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,166,70,.35);
}
.why-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--matte);
  margin-bottom: 0.7rem;
}
.why-card p { font-size: 0.82rem; margin: 0; }

/* ─── Coverage Section ───────────────────────────────────── */
#coverage {
  padding: var(--section-py) 0;
  background: var(--white);
}
.coverage-card {
  background: var(--white);
  border: 1px solid var(--white-border);
  border-radius: 0;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.coverage-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.coverage-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(201,166,70,.22);
  line-height: 1;
  min-width: 50px;
}
.coverage-card h5 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--matte);
  margin-bottom: 0.2rem;
}
.coverage-card p { font-size: 0.78rem; margin: 0; }

/* ─── Testimonials ───────────────────────────────────────── */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--matte);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(201,166,70,.04);
  position: absolute;
  top: -6rem; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
#testimonials .section-title { color: var(--white); }
/* #testimonials p { color: rgba(255,255,255,.5); } */

.testimonial-swiper { width: 100%; overflow: hidden; padding-bottom: 3rem !important; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--white-border);
  border-radius: 0;
  padding: 2.5rem;
  position: relative;
  min-height: 356px;
  height: 100%;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.75rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--matte);
  margin-bottom: 0.1rem;
}
.testimonial-role {
  font-size: 0.7rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

/* ─── FAQ Section ────────────────────────────────────────── */
#faq {
  padding: var(--section-py) 0;
  background: var(--white-warm);
}
.accordion-item {
  background: var(--white) !important;
  border: 1px solid var(--white-border) !important;
  border-radius: 0 !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.accordion-button {
  background: var(--white) !important;
  color: var(--matte) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 1.3rem 1.5rem !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.accordion-button:not(.collapsed) {
  color: var(--gold-dark) !important;
  background: var(--gold-pale) !important;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C1C1C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transition: all var(--transition) !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A68530'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-body {
  background: var(--white-warm) !important;
  color: var(--text-secondary) !important;
  font-size: 0.88rem !important;
  line-height: 1.8 !important;
  padding: 1rem 1.5rem 1.5rem !important;
  border-top: 1px solid var(--white-border) !important;
}

/* ─── Contact / Quote Form ───────────────────────────────── */
#contact {
  padding: var(--section-py) 0;
  background: var(--white);
  overflow-x: hidden;
}
.contact-info-block { padding-right: clamp(0px, 3vw, 3rem); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 46px; min-width: 46px; height: 46px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,166,70,.25);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
}
.contact-info-item h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-primary);
}
.contact-info-item a:hover { color: var(--gold-dark); }

.quote-form-wrap {
  background: var(--white-warm);
  border: 1px solid var(--white-border);
  border-radius: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-card);
  position: relative;
}
/* Gold top border accent */
.quote-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.form-label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  background: var(--white) !important;
  border: 1px solid var(--white-border) !important;
  color: var(--matte) !important;
  border-radius: 0 !important;
  padding: 0.82rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  transition: border-color var(--transition) !important;
}
.form-control::placeholder { color: var(--text-light) !important; }
.form-control:focus, .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,166,70,.12) !important;
  outline: none !important;
}
.form-select option { background: var(--white); color: var(--matte); }
.form-feedback {
  display: none;
  padding: 1.1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-feedback.success {
  background: rgba(60,180,80,.08);
  border: 1px solid rgba(60,180,80,.25);
  color: #2a7a3a;
}
.form-feedback.error {
  background: rgba(200,50,50,.06);
  border: 1px solid rgba(200,50,50,.2);
  color: #a03030;
}
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #c03030 !important;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--matte);
  border-top: 3px solid var(--gold);
}
.footer-top { padding: 5rem 0 3.5rem; }
.footer-brand {
  display: flex; align-items: center;
  gap: 0.75rem; margin-bottom: 1.4rem;
}
/* Override brand colours for dark footer */
.footer-brand .brand-main { color: var(--white); }
.footer-brand .brand-sub  { color: var(--gold-light); }
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,.42);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.footer-socials { display: flex; gap: 0.65rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,166,70,.2);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45) !important;
  font-size: 0.82rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,166,70,.2);
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,.42);
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 0.4rem;
}
.footer-contact-list li {
  display: flex; align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 0.85rem;
}
.footer-contact-list i { color: var(--gold); font-size: 0.88rem; margin-top: 2px; min-width: 14px; }
.footer-contact-list a { color: rgba(255,255,255,.45); }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-hours { margin-top: 1.5rem; }
.footer-hours-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.footer-hours-text { font-size: 0.83rem; color: rgba(255,255,255,.42); margin: 0; }
.footer-hours-text span { color: var(--gold-light); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.4rem 0;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,.28); }
.footer-bottom a { font-size: 0.74rem; color: rgba(255,255,255,.28); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── Back to Top ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
  border: none;
  box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover  { background: var(--gold-dark); transform: translateY(-3px); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width:992px) {
  .brand-icon img{
    width: 70px;
  }
  .brand-text{
    display: none;
  }
}
@media (max-width: 767px) {
  :root { --section-py: 65px; }
  .about-image-wrap::before, .about-image-wrap::after { display: none; }
  .about-badge-float { width: 110px; height: 110px; }
  .about-badge-number { font-size: 2rem; }
  .fleet-specs { flex-wrap: wrap; gap: 0.65rem; }
  .contact-info-block { padding-right: 0; margin-bottom: 2.5rem; }
  .quote-form-wrap { padding: 1.75rem; }
  #airports::before { display: none; }
}
@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; display: flex; justify-content: center; }
  .hero-trust { gap: 1rem; }
}

/* ─── AOS overrides ──────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
/* google address suggestion modification */
.pac-container {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.pac-item {
  padding: 5px 14px;
  cursor: pointer;
}

.pac-item:hover {
  background-color: #f5f5f5;
}

.pac-logo::after {
  display: none;
}