/* =========================================
   LUXURY TWO CHAUFFEUR SERVICES — style.css
   Mobile-first · Single file · Full responsive
   ========================================= */

/* =============================================
   1. CUSTOM PROPERTIES
   ============================================= */
:root {
  --black: #000000;
  --white: #ffffff;
  --translucent: #0000004e;
  --off-white: #f8faf7;
  --light-grey: #f0f4ef;
  --mid-grey: #9ba89a;
  --text-muted: #313131;
  --black-dark: #1a1a1a;
  --golden: #eea424;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-ui: "DM Sans", system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.16);

  --tr: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-fast: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll without breaking position:sticky.
   overflow-x:hidden on html/body creates a new scroll container
   which causes sticky elements to stop working entirely. */
body > *:not(#mainNav):not(#topBar) {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--tr-fast);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* =============================================
   3. TYPOGRAPHY
   ============================================= */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(201, 201, 201);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--golden);
  flex-shrink: 0;
}

.eyebrow-center {
  display: flex;
  justify-content: center;
}

.display-section {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: rgb(97, 97, 97);
}

.display-section-new {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--white);
}

/* =============================================
   4. BUTTONS
   ============================================= */
.btn-primary-lt,
.btn-outline-lt,
.btn-black,
.btn-white-lt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.6rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-xl);
  border: 1.5px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.3;
}

.btn-primary-lt {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-primary-lt:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 236, 235, 0.3);
}

.btn-outline-lt {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-lt:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-black:hover {
  background: var(--black-dark);
  border-color: var(--black-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 201, 197, 0.3);
}

.btn-white-lt {
  background: var(--white);
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-white-lt:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* Full-width button utility for mobile */
.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   5. TOP BAR
   ============================================= */
.top-bar {
  background: var(--white);
  overflow: hidden;
  max-height: 80px;
  opacity: 1;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease,
    opacity 0.3s ease;
  will-change: max-height, opacity;
  z-index: 9;
  position: relative;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1rem;
  gap: 0.5rem;
  flex-wrap: nowrap;
  min-height: 36px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  overflow: hidden;
  flex: 1;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
}

.top-bar-link:hover {
  color: var(--black);
}

/* Hide phone number text on very small screens, keep icon */
.top-bar-phone-text {
  display: none;
}

@media (min-width: 400px) {
  .top-bar-phone-text {
    display: inline;
  }
}

/* Hide email entirely on small/medium screens */
.top-bar-email {
  display: none !important;
}

@media (min-width: 768px) {
  .top-bar-email {
    display: inline-flex !important;
  }
}

.pulse-dot {
  font-size: 0.38rem;
  color: var(--black);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Hide "Available 24/7" label on very small screens */
.top-bar-available-text {
  display: none;
}

@media (min-width: 360px) {
  .top-bar-available-text {
    display: inline;
  }
}

.btn-topbar {
  flex-shrink: 0;
  padding: 0.26rem 0.8rem;
  font-size: 0.7rem;
  font-family: var(--font-ui);
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: var(--tr-fast);
}

.btn-topbar:hover {
  background: var(--white);
  color: var(--black);
}

/* =============================================
   6. NAVBAR
   ============================================= */
.luxury-nav {
  background: var(--black);
  border-bottom: 1px solid rgba(10, 26, 2, 0.07);
  position: sticky;
  top: 0;
  z-index: 999;
  transition:
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
  will-change: backdrop-filter, box-shadow;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .nav-inner {
    padding: 0.85rem 1.5rem;
  }
}

@media (min-width: 992px) {
  .nav-inner {
    padding: 0.9rem 2rem;
  }
}

@media (min-width: 1200px) {
  .nav-inner {
    padding: 0.9rem 2.5rem;
  }
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-width: 90%;
  }
}

.brand-lt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 7px;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.brand-text em {
  font-style: italic;
  color: var(--black-dark);
}

/* Desktop links — visible only on xl+ */
.nav-desktop-links {
  display: none;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
  gap: 0;
}

@media (min-width: 1200px) {
  .nav-desktop-links {
    display: flex;
  }
}

.nav-desktop-links .nav-link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-desktop-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.6rem;
  right: 0.6rem;
  height: 1.5px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-desktop-links .nav-link:hover,
.nav-desktop-links .nav-link.active {
  color: var(--white);
}

.nav-desktop-links .nav-link:hover::after,
.nav-desktop-links .nav-link.active::after {
  transform: scaleX(1);
}

/* Right area */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-nav-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--black);
  color: var(--white) !important;
  border: 1px solid white;
  border-radius: 30px;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--tr-fast);
}

@media (min-width: 768px) {
  .btn-nav-cta {
    display: inline-flex;
  }
}

.btn-nav-cta:hover {
  background: var(--white);
  color: var(--black) !important;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  background: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: var(--black-dark);
}

.nav-hamburger.is-active {
  background: var(--off-white);
}

.ham-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.is-active .ham-bar {
  background: var(--black);
}

.nav-hamburger.is-active .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-active .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-active .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   7. OFF-CANVAS NAV
   ============================================= */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.offcanvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.offcanvas-nav {
  position: fixed;
  top: 0;
  right: 0;
  /* 85vw on phones, never exceeds 360px on larger devices */
  width: clamp(280px, 85vw, 360px);
  height: 100%;
  height: 100dvh;
  background: var(--black);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}

.offcanvas-nav.is-open {
  transform: translateX(0);
}

body.oc-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

/* OC Header */
.oc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  min-height: 64px;
}

.oc-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.oc-brand .brand-text {
  color: var(--white);
}

.oc-brand .brand-text em {
  color: var(--black);
}

.oc-close {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--tr-fast);
}

.oc-close:hover {
  background: var(--black);
  color: var(--black);
  border-color: var(--black);
  transform: rotate(90deg);
}

/* Scrollable link list */
.oc-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.6rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(210, 210, 210, 0.25) transparent;
}

.oc-nav::-webkit-scrollbar {
  width: 3px;
}

.oc-nav::-webkit-scrollbar-thumb {
  background: rgba(74, 222, 128, 0.25);
  border-radius: 2px;
}

.oc-links {
  padding: 0 0.75rem;
}

.oc-links li + li {
  margin-top: 2px;
}

.oc-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.82rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
  min-height: 48px;
  /* touch target */
}

.oc-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding-left: 1.25rem;
}

.oc-link--active {
  background: rgba(84, 84, 84, 0.1);
  color: var(--white);
  font-weight: 600;
}

.oc-link--active:hover {
  background: rgba(145, 145, 145, 0.15);
  padding-left: 1rem;
}

.oc-link-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition:
    background 0.2s,
    color 0.2s;
}

.oc-link:hover .oc-link-icon,
.oc-link--active .oc-link-icon {
  background: rgba(180, 180, 180, 0.15);
  color: var(--black);
}

.oc-link-text {
  flex: 1;
  min-width: 0;
}

.oc-link-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--black);
}

.oc-link-arrow {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}

.oc-link:hover .oc-link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--black);
}

/* Stagger in animation */
@keyframes ocLinkIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.offcanvas-nav.is-open .oc-links li {
  animation: ocLinkIn 0.28s ease both;
  opacity: 0;
}

.offcanvas-nav.is-open .oc-links li:nth-child(1) {
  animation-delay: 0.06s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(2) {
  animation-delay: 0.1s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(3) {
  animation-delay: 0.14s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(4) {
  animation-delay: 0.18s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(5) {
  animation-delay: 0.22s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(6) {
  animation-delay: 0.26s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(7) {
  animation-delay: 0.3s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(8) {
  animation-delay: 0.34s;
}

.offcanvas-nav.is-open .oc-links li:nth-child(9) {
  animation-delay: 0.38s;
}

/* OC Footer */
.oc-footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.oc-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.82rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  text-decoration: none;
  min-height: 48px;
  transition: var(--tr-fast);
}

.oc-book-btn:hover {
  background: var(--black-dark);
  color: var(--white);
}

.oc-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.oc-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 32px;
}

.oc-contact-link i {
  color: var(--black);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.oc-contact-link:hover {
  color: var(--white);
}

.oc-social {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.oc-social-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: var(--tr-fast);
}

.oc-social-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* =============================================
   8. HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  /* On mobile: just tall enough for content, not forced 100vh */
  padding: 3.5rem 0 3rem;
}

@media (min-width: 992px) {
  .hero-section {
    min-height: 88vh;
    padding: 0 0 40px;
    display: flex;
    align-items: center;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.75) 30%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0) 100%
    ),
    rgba(0, 0, 0, 0.15);
}

/* White shape — desktop only, would cause overflow/clipping on mobile */
@media (min-width: 992px) {
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/banner.webp");
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.75) 30%,
        rgba(0, 0, 0, 0.45) 55%,
        rgba(0, 0, 0, 0) 100%
      ),
      rgba(0, 0, 0, 0.15);
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Mobile: full-width text, no image column */
.hero-text-col {
  color: var(--white);
  padding: 0 0 2rem;
}

@media (min-width: 992px) {
  .hero-text-col {
    padding: 4.5rem 0 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.85rem;
  background: rgba(255, 255, 255, 0.364);
  border: 1px solid var(--black);
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.hero-headline .accent {
  color: wheat;
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(0.88rem, 3vw, 0.93rem);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 300;
  max-width: 520px;
}

@media (max-width: 767px) {
  .hero-bg {
    background-size: cover;
    background-position: right;
  }
  .hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.75) 30%,
        rgba(0, 0, 0, 0.45) 55%,
        rgba(0, 0, 0, 0) 100%
      ),
      rgba(0, 0, 0, 0.15);
  }
  .hero-sub {
    display: none;
  }
  .call-cta {
    display: flex;
    flex-direction: column;
  }
  .hero-vehicle-wrap {
    margin-top: 0 !important;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

@media (min-width: 400px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-ctas .btn-black,
.hero-ctas .btn-white-lt {
  width: 100%;
  justify-content: center;
}

@media (min-width: 400px) {
  .hero-ctas .btn-black,
  .hero-ctas .btn-white-lt {
    width: auto;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-item i {
  color: var(--white);
  font-size: 0.9rem;
}

.call-cta a {
  color: var(--white);
  font-size: 0.8rem;
}

@media (min-width: 992px) {
  .hero-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
  }
}

/* Force widget white on all screen sizes */
.hero-vehicle-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  /* margin: 0 auto;
  background: #fff; */
  border-radius: 16px;
  overflow: hidden;
}

.hero-vehicle-wrap booking-widget {
  display: block;
  width: 100%;
}

/* Mobile */
@media (max-width: 991px) {
  .hero-vehicle-wrap {
    max-width: 100%;
    /* margin-top: 2rem;
    background: #fff; */
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  }
  .mobile-view {
    background: #000;
  }
}

.hero-vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lift);
  animation: floatCard 5s ease-in-out infinite;
}



.vehicle-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #0a1a02 0%, #1a3a0a 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.vehicle-placeholder::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--black), transparent);
}

.vehicle-icon-large {
  font-size: 3.5rem;
  color: var(--black);
  opacity: 0.9;
}

.vehicle-card-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.vehicle-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
}

.hero-stats-badge {
  position: absolute;
  top: -16px;
  left: -24px;
  background: var(--black);
  color: var(--black);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  animation: floatCard 5s ease-in-out 1.2s infinite;
  z-index: 3;
}

.hero-stats-badge .stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.hero-stats-badge .stat-lbl {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-top: 0.2rem;
  display: block;
}

/* =============================================
   9. SECTION UTILITIES
   ============================================= */
.section-pad {
  padding: 3.5rem 0;
}

.section-pad-services {
  position: relative;
  background-image: url("../images/why/section-pad.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3.5rem 0;
}

.section-pad-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.section-pad-services .container {
  position: relative;
  z-index: 1;
}

.section-pad-sm {
  padding: 2rem 0;
}

.section-white {
  position: relative;
  background: var(--white);
}

.section-white::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-white > * {
  position: relative;
  z-index: 1;
}

/* Section heading row — stacks on mobile */
.section-header-row {
  margin-bottom: 2rem;
}

.section-header-row .section-intro-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 0.75rem;
}

@media (min-width: 992px) {
  .section-header-row .section-intro-text {
    margin-top: 0;
    padding-bottom: 0.5rem;
  }
}

/* =============================================
   10. WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);

  -webkit-backdrop-filter: blur(2px);
  transition: background 0.3s ease;
}

.why-card:hover .why-overlay {
  background: rgba(0, 0, 0, 0.75);
}

/* Content sits above overlay */
.why-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Icon + title always visible, centered */
.why-icon {
  color: #fff;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.why-icon i {
  font-size: 36px;
}

.why-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  transition: transform 0.3s ease;
}

/* Description hidden by default, slides up on hover */
.why-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.why-card:hover .why-desc {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}

/* Nudge icon + title up slightly on hover to make room */
.why-card:hover .why-icon {
  transform: translateY(-6px);
}

.why-card:hover .why-title {
  transform: translateY(-6px);
}

/* Bottom accent bar */
.why-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--emerald-dark, #1a6b4a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 3;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* =============================================
   11. SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card-inner {
  position: relative;
  z-index: 2;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: var(--white);
}

.service-card:hover .service-icon {
  color: var(--black);
}

.service-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card:hover .service-icon-wrap {
  background: var(--white);
  color: var(--white);
}

.service-card:hover .service-cta {
  color: var(--white);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--light-grey);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 1.1rem;
  transition: var(--tr);
  position: relative;
  z-index: 2;
}

.service-icon-wrap:hover {
  color: var(--black);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.6rem;
  transition: var(--tr-fast);
}

.service-desc {
  font-size: 0.83rem;
  color: gray;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  transition: var(--tr-fast);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--tr-fast);
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.service-cta i {
  transition: transform 0.2s;
}

.service-card:hover {
  color: white;
}

.service-card:hover .service-cta i {
  transform: translateX(4px);
  color: white;
}

/* =============================================
   12. FLEET
   ============================================= */
/* ─────────────────────────────────────────────
     Fleet Carousel
  ───────────────────────────────────────────── */
.fleet-carousel {
  position: relative;
  padding-bottom: 3rem;
  /* room for dots */
}

/* Override Bootstrap's default carousel transition */
.fleet-carousel .carousel-item {
  transition: transform 0.45s ease;
}

/* ── Card ──────────────────────────────────── */
.fleet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
  transform: translateY(25px);
}

.fleet-card.fleet-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.fleet-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: #111;
}

/* ── Image wrapper ─────────────────────────── */
.fleet-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #f5f5f5;
  border-radius: 15px;
}
.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fleet-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 55%);
  opacity: 0;
  transition: 0.4s;
}

.fleet-card:hover .fleet-img-wrap::after {
  opacity: 1;
}

/* ── Card body ─────────────────────────────── */
/* .fleet-body{
  padding:15px;
} */
.fleet-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.fleet-specs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #444;
}
.fleet-spec i {
  font-size: 16px;
}
.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.fleet-tag {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: #fafafa;
  color: #222;
  font-size: 0.74rem;
  border-radius: 30px;
  transition: 0.3s;
}
.fleet-card:hover .fleet-tag {
  background: #111;
  color: #fff;
  border-color: #111;
}
.fleet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: #111;
  transition: 0.35s;
}
.fleet-footer i {
  transition: 0.35s;
}
.fleet-card:hover .fleet-footer i {
  transform: translateX(8px);
}

/* ── Arrow controls ────────────────────────── */
.fleet-ctrl {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fafafa !important;
  color: #000000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
}

.fleet-ctrl:hover {
  background: #b5a06a;
  transform: translateY(-50%) scale(1.08);
}

.fleet-ctrl--prev {
  left: -18px;
}

.fleet-ctrl--next {
  right: -18px;
}

/* hide arrows on small screens — swipe works natively */
@media (max-width: 575px) {
  .fleet-ctrl {
    display: none;
  }
}

/* ── Dot indicators ────────────────────────── */
.fleet-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #1a1a1a;
  opacity: 0.18;
  cursor: pointer;
  transition:
    opacity 0.2s,
    background 0.2s,
    transform 0.2s;
}

.fleet-dot.active,
.fleet-dot:hover {
  opacity: 1;
  background: #b5a06a;
  transform: scale(1.2);
}

/* ── Respect reduced motion ────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fleet-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .fleet-img-wrap img {
    transition: none;
  }

  .fleet-carousel .carousel-item {
    transition: none;
  }
}

/* =============================================
   13. AIRPORT TRANSFERS
   ============================================= */
.airport-section {
  position: relative;
  overflow: hidden;

  background: url("../images/why/flights.webp") center center / cover no-repeat;
}

.airport-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.airport-content {
  position: relative;
  z-index: 2;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;

  color: #fff;
}

.airport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

@media (min-width: 576px) {
  .airport-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.airport-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.airport-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.airport-item i {
  color: #fff;
}

.airport-item span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  line-height: 1.3;
}

.airport-features-list {
  margin: 1.5rem 0;
}

.airport-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.airport-feat:last-child {
  border-bottom: none;
}

.airport-feat i {
  color: #fff;
}

.airport-feat span {
  color: rgba(255, 255, 255, 0.85);
}

.airport-visual {
  background: #08080833;
  border-radius: 10%;
  padding: 2rem;
  color: #fff;
}

.airport-visual-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.2rem;
  opacity: 1;
}

.airport-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.7rem;
}

.airport-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.airport-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.airport-badge-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.airport-badge-pill:hover {
  background: #fff;
  color: #000;
}

@media (min-width: 992px) {
  .airport-visual {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .airport-visual-icon {
    color: var(--white);
    font-size: 4.5rem;
  }
}

/* =============================================
   14. CORPORATE TRAVEL
   ============================================= */
.corporate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .corporate-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.corporate-list {
  margin: 1.1rem 0;
}

.corporate-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.corporate-item:last-child {
  border-bottom: none;
}

.corporate-item i {
  color: var(--black-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.corporate-item span {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.corporate-visual {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .corporate-visual {
    padding: 2.25rem;
  }
}

.corporate-visual::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 280px;
  height: 280px;
  pointer-events: none;
}

.corp-benefit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
  transition: var(--tr-fast);
}

.corp-benefit:hover {
  border-color: rgb(255, 255, 255);
}

.corp-benefit i {
  color: var(--white);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.corp-benefit span {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* =============================================
   15. COVERAGE / LOCATIONS
   ============================================= */
.section-pad-coverage {
  position: relative;
  background: url("../images/area-to-pic.webp") center center/cover no-repeat;
  padding: 3.5rem 0;
  overflow: hidden;
}

.section-pad-coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.679);
}

.section-pad-coverage .container {
  position: relative;
  z-index: 1;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.58rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.08);
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--black);
  transition: var(--tr-fast);
  text-decoration: none;
  overflow: hidden;
  min-height: 40px;
}

.location-pill:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

.location-pill i {
  font-size: 0.8rem;
  color: var(--black-dark);
  flex-shrink: 0;
}

.location-pill:hover i {
  color: var(--white);
}

/* =============================================
   16. EVENTS
   ============================================= */

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.event-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--tr);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .event-card {
    padding: 1.75rem 1.25rem;
  }
}

.event-card:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.event-icon {
  font-size: 1.7rem;
  color: var(--black-dark);
  margin-bottom: 0.55rem;
  transition: var(--tr-fast);
  display: block;
}

@media (min-width: 768px) {
  .event-icon {
    font-size: 2.1rem;
  }
}

.event-card:hover .event-icon {
  color: var(--white);
}

.event-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  transition: var(--tr-fast);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .event-name {
    font-size: 1rem;
  }
}

.event-card:hover .event-name {
  color: var(--white);
}

/* =============================================
   17. HOW IT WORKS
   ============================================= */
.section-pad-work {
  position: relative;
  background: url("../images/events.webp") center center/cover no-repeat;
  padding: 3.5rem 0;
  overflow: hidden;
}

.section-pad-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(65, 65, 65, 0.679);
}

.section-pad-work .container {
  position: relative;
  z-index: 1;
}

.how-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .how-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.how-step {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

/* Connecting line — desktop only */
@media (min-width: 768px) {
  .how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 1px;
    background: var(--black);
  }
}

.how-num-wrap {
  width: 68px;
  height: 68px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid transparent;
  transition: var(--tr);
}

.how-step:hover .how-num-wrap,
.how-step.active .how-num-wrap {
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 0 0 7px rgba(88, 88, 88, 0.486);
}

.how-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--tr-fast);
}

.how-step:hover .how-num,
.how-step.active .how-num {
  color: var(--white);
}

.how-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.how-desc {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   18. STATISTICS
   ============================================= */
.stats-section {
  background: #000;
  padding: 80px 0;
}

.luxury-stats {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.luxury-stat {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.luxury-number {
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.luxury-number h2 {
  margin: 0;
  font-size: 72px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.luxury-number span {
  display: block;
  margin-top: 10px;
  color: #fff;
  letter-spacing: 5px;
  font-size: 14px;
}

.luxury-text {
  color: #e5e5e5;
  font-size: 18px;
  line-height: 1.6;
  max-width: 180px;
}

/* =============================================
   19. TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .testimonial-track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .testimonial-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--tr);
  position: relative;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 1.75rem;
  }
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.8rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--black);
  opacity: 0.1;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.18rem;
  margin-bottom: 0.8rem;
  color: #f59e0b;
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--black);
  display: block;
}

.author-journey {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
}

/* =============================================
   20. BLOG
   ============================================= */

/* Base – mobile first: 1 column */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8%;
  overflow: hidden;
  transition: 0.35s ease;
}

@media (min-width: 580px) {
  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
}

.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 1100px) {
  .blog-img {
    height: 240px;
  }
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #000;
  color: #fff;
  padding: 0.35rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 580px) {
  .blog-category {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
  }
}

.blog-body {
  padding: 1rem;
}

@media (min-width: 580px) {
  .blog-body {
    padding: 1.25rem;
  }
}

.blog-meta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  transition: var(--tr-fast);
}

@media (min-width: 580px) {
  .blog-title {
    font-size: 1rem;
  }
}

.blog-card:hover .blog-title {
  color: var(--black-dark);
}

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  display: none;
}

@media (min-width: 580px) {
  .blog-excerpt {
    display: block;
  }
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--black-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.blog-read-more i {
  transition: transform 0.2s;
}

.blog-card:hover .blog-read-more i {
  transform: translateX(4px);
}

/* =============================================
   21. QUOTE FORM
   ============================================= */
.quote-section {
  background: var(--off-white);
}

.quote-card {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 26, 2, 0.06);
}

@media (min-width: 576px) {
  .quote-card {
    padding: 2rem 1.75rem;
  }
}

@media (min-width: 992px) {
  .quote-card {
    padding: 2.75rem 2.5rem;
  }
}

.form-label-lt {
  font-family: var(--font-ui);
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.38rem;
  display: block;
}

.form-control-lt {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border: 1.5px solid rgba(10, 26, 2, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--black);
  transition: var(--tr-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  /* Prevent iOS zoom on focus */
  font-size: max(16px, 0.88rem);
}

.form-control-lt:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.12);
}

.form-control-lt::placeholder {
  color: var(--mid-grey);
}

select.form-control-lt {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A1A02' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
}

.quote-submit-wrap {
  padding-top: 0.5rem;
}

.quote-submit-wrap .btn-primary-lt {
  width: 100%;
  justify-content: center;
}

@media (min-width: 576px) {
  .quote-submit-wrap .btn-primary-lt {
    width: auto;
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
  }
}

/* =============================================
   22. FINAL CTA BANNER
   ============================================= */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4rem 0;

  background: url("../images/why/travel-experts.webp") center center/cover
    no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(158, 158, 158, 0.65);
  /* dark overlay */
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .final-cta {
    padding: 5.5rem 0;
  }
}

@media (min-width: 1200px) {
  .final-cta {
    padding: 7rem 0;
  }
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.final-cta-headline .cta-em {
  font-style: italic;
  color: var(--black);
}

.final-cta-sub {
  font-size: clamp(0.85rem, 2.5vw, 0.98rem);
  color: rgb(232, 232, 232);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.final-cta-btns {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

@media (min-width: 480px) {
  .final-cta-btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.final-cta-btns .btn-black,
.final-cta-btns .btn-white-lt {
  width: 100%;
  max-width: 280px;
  padding: 0.9rem 1.75rem;
  font-size: 0.92rem;
}

@media (min-width: 480px) {
  .final-cta-btns .btn-black,
  .final-cta-btns .btn-white-lt {
    width: auto;
    max-width: none;
  }
}

/* =============================================
   23. FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
}

.footer-top {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .footer-top {
    padding: 4rem 0 3rem;
  }
}

@media (min-width: 1200px) {
  .footer-top {
    padding: 5rem 0 4rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.footer-brand .brand-text {
  color: var(--white);
}

.footer-brand .brand-text em {
  color: var(--black);
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 340px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--tr-fast);
}

.footer-contact-item i {
  color: var(--black);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--tr-fast);
}

.social-btn:hover {
  background: var(--black);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-subheading {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.6rem;
}

.footer-links li + li {
  margin-top: 0.42rem;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--tr-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.company-item .concol {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: linear-gradient(
    135deg,
    rgba(173, 173, 173, 0.2),
    rgb(255 255 255 / 2%)
  );
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 80%;
}

.company-item i {
  color: #f4f4f4;
  font-size: 18px;
}

.company-text span {
  display: block;
  font-size: 13px;
  color: #bdbdbd;
}

.newsletter-input-group {
  display: flex;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.2s;
  margin-top: 0.75rem;
}

.newsletter-input-group:focus-within {
  border-color: var(--black);
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
  background: transparent;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--white);
  outline: none;
  /* Prevent iOS zoom */
  font-size: max(16px, 0.82rem);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  padding: 0.7rem 1rem;
  background: var(--black);
  color: var(--black);
  border: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: var(--tr-fast);
}

.newsletter-btn:hover {
  background: var(--white);
}

.airport-tags {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.airport-tags span {
  display: inline-block;
  padding: 0.16rem 0.55rem;

  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--tr-fast);
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* =============================================
   24. SCROLL TO TOP
   ============================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 70px;
  right: 15px;
  width: 42px;
  height: 42px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--tr);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--black);
  color: var(--black);
  transform: translateY(-3px);
}

/* =============================================
   25. ACCESSIBILITY & GLOBAL UTILS
   ============================================= */
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Prevent horizontal scroll from any element */
.container,
.container-fluid {
  max-width: 80%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .offcanvas-nav.is-open .oc-links li {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* =============================================
   26. INNER PAGE COMPONENTS (shared: about, services, etc.)
   ============================================= */

/* ---- Inner page hero ---- */
/* HERO SECTION */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  isolation: isolate;
}

/* Background Image */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.68) 50%,
      rgba(10, 10, 10, 0.9) 100%
    ),
    url("../images/stat-banner.webp") center center/cover no-repeat;

  z-index: -2;
}

.page-hero-service::before {
  background: url("../images/events.webp") center center/cover no-repeat;
}

/* Dark Overlay */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.333);
  z-index: -1;
}

/* White Glow */
.page-hero-deco {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.breadcrumb-bar a,
.breadcrumb-bar {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-bar .current {
  color: #fff;
}

/* Heading */
.page-hero-title {
  color: black;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
}

.page-hero-title .accent {
  color: black;
  font-style: italic;
  font-weight: 600;
}

/* Subtitle */
.page-hero-sub {
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
}

/* Glass Effect Button */
.btn-emerald-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 28px;
  border-radius: 29px;

  background: rgb(0, 0, 0) !important;
  color: #ffffff !important;

  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  text-decoration: none;
  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-emerald-service:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  border: 1px #000 solid;
}

.btn-emerald-service i {
  font-size: 1rem;
}

/* Glass Effect Button */
.btn-emerald {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 28px;
  border-radius: 29px;

  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;

  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  text-decoration: none;
  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-emerald:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  border: 1px #000 solid;
}

.btn-emerald i {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 0 4rem;
  }
}

.page-hero-content {
  position: relative;
  z-index: 3;
}

.page-hero-deco {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.08) 0%,
    transparent 65%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 2;
}

.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.breadcrumb-bar a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-bar a:hover {
  color: var(--black);
}

.breadcrumb-bar i {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-bar .current {
  color: var(--white);
  font-weight: 600;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-hero-title .accent {
  font-style: italic;
  color: rgb(201, 201, 201);
}

.page-hero-sub {
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 680px;
  font-weight: 300;
}

/* ---- Intro image block ---- */
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/why/section-pad.webp") center center/cover
    no-repeat;
  filter: grayscale(100%);
  transform: scale(1.05);
}

.intro-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.intro-image-wrap > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .intro-image-wrap {
    min-height: 460px;
  }
}

.intro-image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--black), transparent);
}

.intro-car-icon {
  font-size: 5rem;
  color: var(--black);
  opacity: 0.5;
}

.intro-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.15rem;
  text-align: center;
  box-shadow: var(--shadow-lift);
  min-width: 110px;
}

.intro-badge-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
}

.intro-badge-lbl {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.2rem;
  display: block;
}

.intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.55;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.intro-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}

/* ---- Timeline ---- */
.timeline-section {
  background: var(--off-white);
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--black), rgba(74, 222, 128, 0.1));
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-1px);
  }
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 60px;
}

@media (min-width: 768px) {
  .timeline-item {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    margin-bottom: 2.5rem;
  }

  .timeline-item:last-child {
    margin-bottom: 0;
  }
}

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 6px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: 50%;
  z-index: 2;
  transition: var(--tr-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  transition: var(--tr-fast);
}

@media (min-width: 768px) {
  .timeline-dot {
    position: static;
    margin: 6px auto 0;
    grid-column: 2;
  }
}

.timeline-item:hover .timeline-dot {
  border-color: var(--black);
  background: var(--black);
}

.timeline-item:hover .timeline-dot::after {
  background: var(--black);
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(10, 26, 2, 0.06);
  transition: var(--tr);
}

@media (min-width: 768px) {
  .timeline-card {
    padding: 1.75rem;
  }

  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 3;
  }

  .timeline-item:nth-child(odd) .timeline-card {
    grid-column: 1;
    text-align: right;
  }
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.timeline-year {
  display: inline-block;
  padding: 0.18rem 0.65rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--black-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.timeline-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Mission/Vision cards ---- */
.section-pad-mission {
  position: relative;
  background: url("../images/events.webp") center center/cover no-repeat;
}

.section-pad-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.section-pad-mission > * {
  position: relative;
  z-index: 1;
}

.mv-card {
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  height: 100%;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .mv-card {
    padding: 2.75rem;
  }
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--black);
}

.mv-card--mission {
  background: var(--black);
}

.mv-card--vision {
  background: var(--white);
  border: 1.5px solid rgba(10, 26, 2, 0.1);
}

.mv-card--mission:hover {
  background: linear-gradient(black, rgb(40, 39, 39));
}

.mv-card--vision:hover {
  background: linear-gradient(white, rgb(181, 181, 181));

  border-color: var(--black);
}

.mv-card::before {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  pointer-events: none;
}

.mv-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.mv-card--mission .mv-icon {
  background: var(--mid-grey);
  color: var(--black);
}

.mv-card--vision .mv-icon {
  background: rgba(10, 26, 2, 0.07);
  color: var(--black);
}

.mv-label {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.55rem;
  display: block;
  position: relative;
  z-index: 1;
}

.mv-card--mission .mv-label {
  color: rgba(255, 255, 255, 0.4);
}

.mv-card--vision .mv-label {
  color: var(--text-muted);
}

.mv-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.mv-card--mission .mv-heading {
  color: var(--white);
}

.mv-card--vision .mv-heading {
  color: var(--black);
}

.mv-text {
  font-size: 0.87rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.mv-card--mission .mv-text {
  color: rgba(255, 255, 255, 0.6);
}

.mv-card--vision .mv-text {
  color: var(--text-muted);
}

/* ---- Values grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 576px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon {
  width: 46px;
  height: 46px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--black-dark);
  margin: 0 auto 0.9rem;
  transition: var(--tr-fast);
}

.value-card:hover .value-icon {
  background: var(--black);
  color: var(--white);
}

.value-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.38rem;
}

.value-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- About-why horizontal cards ---- */

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 480px) {
  .about-why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .about-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-why-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: var(--tr);
}

.about-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--black);
}

.about-why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(46, 47, 46, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--black);
  transition: var(--tr-fast);
}

.about-why-card:hover .about-why-icon {
  background: var(--black);
  color: var(--white);
}

.about-why-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.28rem;
}

.about-why-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.veh-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.veh-gallery-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(3, 3, 3, 0.43);
  border-radius: 18px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
}

.veh-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.veh-gallery-item:first-child {
  grid-column: auto;
}

/* ---- Chauffeurs dark section ---- */
.chauffeurs-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.chauffeurs-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.chauffeur-visual {
  background:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.68) 50%,
      rgba(10, 10, 10, 0.9) 100%
    ),
    url("../images/airport-transfers/airport-transfer-6.webp") center 40% /
      cover no-repeat;
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  text-align: center;
}

.chauffeur-visual-icon {
  font-size: 4.5rem;
  color: var(--white);
  opacity: 0.65;
  display: block;
  margin-bottom: 1.25rem;
}

.chauffeur-stat-row {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.35rem;
  padding-top: 1.35rem;
}

.chauffeur-stat {
  flex: 1;
  text-align: center;
  padding: 0 0.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.chauffeur-stat:last-child {
  border-right: none;
}

.chauffeur-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  display: block;
}

.chauffeur-stat-lbl {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.12rem;
}

.chauffeur-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chauffeur-feature:last-child {
  border-bottom: none;
}

.chauffeur-feature i {
  color: var(--black);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
}

.chauffeur-feature span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ---- Client cards ---- */
.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 576px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .client-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.client-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: var(--tr);
}

.client-card:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.client-icon {
  font-size: 1.75rem;
  color: var(--black);
  margin-bottom: 0.6rem;
  display: block;
  transition: var(--tr-fast);
}

.client-card:hover .client-icon {
  color: var(--white);
}

.client-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.3rem;
  transition: var(--tr-fast);
  line-height: 1.3;
}

.client-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: var(--tr-fast);
}

.client-card:hover .client-name,
.client-card:hover .client-desc {
  color: rgba(255, 255, 255, 0.82);
}

/* ---- Trust badges ---- */
.section-pad-why {
  position: relative;
  background: url("../images/mainbnr.webp") center center / cover no-repeat;
}

.section-pad-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.section-pad-why > * {
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 576px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  transition: var(--tr-fast);
}

.trust-badge:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--light-grey);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--black-dark);
}

.trust-badge:hover .trust-badge-icon {
  background: var(--black);
  color: var(--white);
}

.trust-badge-text {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

/* ---- FAQ accordion ---- */
.faq-list {
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: var(--tr-fast);
}

.faq-item.open {
  border-color: rgba(74, 222, 128, 0.35);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.faq-q-text {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  flex: 1;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: var(--tr-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  background: var(--black);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---- Coverage tags ---- */
.coverage-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.08);
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--black);
  transition: var(--tr-fast);
  text-decoration: none;
}

.coverage-tag:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.coverage-tag i {
  font-size: 0.7rem;
  color: var(--black-dark);
}

.coverage-tag:hover i {
  color: var(--white);
}

.stats-section {
  background: #000;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number-block {
  min-width: 170px;
}

.stat-number-block h2 {
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin: 0;
}

.stat-number-block span {
  display: block;
  margin-top: 10px;
  color: #fff;
  letter-spacing: 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number-block h2 {
    font-size: 4rem;
  }

  .stat-item p {
    font-size: 1.1rem;
  }
}

/* ---- 5-column stats variant ---- */
.stats-5 {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .stats-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 768px) {
  .stats-5 .stat-box {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
  }

  .stats-5 .stat-box:last-child {
    border-right: none;
  }

  .stats-5 .stat-box:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stats-5 .stat-box:nth-child(5n) {
    border-right: none;
  }
}

/* =============================================
   27. FLEET VEHICLE PAGES (shared)
   Used by: fleet/mercedes-e-class.php,
            fleet/mercedes-s-class.php,
            fleet/mercedes-v-class.php
   ============================================= */

/* ── Vehicle hero ────────────────────────────── */
.veh-hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 3.5rem 0 3rem;
}

@media (min-width: 768px) {
  .veh-hero {
    padding: 5rem 0 4rem;
  }
}

.veh-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.68) 50%,
      rgba(10, 10, 10, 0.9) 100%
    ),
    url("../images/e-banner.webp") center 40% / cover no-repeat;
  z-index: 0;
}

.veh-hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg, var(--black), transparent);
}

.veh-hero-deco {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.veh-hero-content {
  position: relative;
  z-index: 2;
}

.veh-hero-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.9rem;
  background: rgba(223, 223, 223, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-flex;
}

.veh-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.veh-hero-title .accent {
  font-style: italic;
  color: var(--golden);
  font-weight: 400;
}

.veh-hero-sub {
  font-size: clamp(0.88rem, 2.5vw, 1.02rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.veh-hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.veh-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.veh-spec-pill i {
  color: var(--white);
  font-size: 0.78rem;
}

.veh-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .veh-hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Hero vehicle showcase card */
.veh-showcase-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: floatCard 5s ease-in-out infinite;
}

.veh-showcase-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--black), transparent);
}

.veh-showcase-img {
  width: 100%;
  /* max-width: 220px; */
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.veh-showcase-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.veh-showcase-cat {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.veh-showcase-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.veh-showcase-stat {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.veh-showcase-stat:last-child {
  border-right: none;
}

.veh-ss-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  display: block;
}

.veh-ss-lbl {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Feature chips grid ──────────────────────── */
.veh-feat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.veh-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.85rem;
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--black-dark);
}

.veh-feat-chip i {
  font-size: 0.75rem;
}

/* ── Perfect For grid ────────────────────────── */
.perfect-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .perfect-for-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .perfect-for-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.perfect-for-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.1rem 0.85rem;
  text-align: center;
  text-decoration: none;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.perfect-for-card:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.pf-icon {
  font-size: 1.5rem;
  color: var(--black-dark);
  transition: var(--tr-fast);
}

.perfect-for-card:hover .pf-icon {
  color: var(--white);
}

.pf-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  transition: var(--tr-fast);
  line-height: 1.25;
}

.perfect-for-card:hover .pf-name {
  color: var(--white);
}

/* ── Specs comparison table ──────────────────── */
.specs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-top: 2.5rem;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.scroll-hint i {
  color: var(--black-dark);
}

@media (min-width: 768px) {
  .scroll-hint {
    display: none;
  }
}

.specs-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.specs-table th,
.specs-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--light-grey);
}

.specs-table thead th {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 1rem;
}

.specs-table thead th:first-child {
  text-align: left;
  background: #000000;
}

.specs-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--black);
  background: var(--off-white);
  padding-left: 1.2rem;
}

.specs-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-table tbody tr:hover td {
  background: rgba(74, 222, 128, 0.04);
}

.specs-table tbody tr:hover td:first-child {
  background: rgba(74, 222, 128, 0.06);
}

.specs-table .active-col {
  background: rgba(212, 212, 212, 0.05) !important;
}

.specs-table thead .active-col {
  background: #343434 !important;
}

.tc-yes {
  color: var(--black-dark);
  font-size: 1rem;
}

.tc-no {
  color: var(--mid-grey);
}

.tc-star {
  color: #f59e0b;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* ── Quote form inline ───────────────────────── */
.veh-quote-section {
  background: var(--off-white);
}

.veh-quote-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 26, 2, 0.06);
}

.veh-quote-header {
  background: var(--black);
  padding: 1.4rem 2rem;
  position: relative;
  overflow: hidden;
}

.veh-quote-header::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.veh-quote-header-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}

.veh-quote-header-sub {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.veh-quote-body {
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .veh-quote-body {
    padding: 2.25rem;
  }
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Unique feature section blocks ──────────────
   Used for E-Class / S-Class / V-Class specific
   unique content areas
   ─────────────────────────────────────────────── */
.veh-feature-section {
  position: relative;
}

.veh-feature-list {
  margin: 1.5rem 0;
}

.veh-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.veh-feature-item:last-child {
  border-bottom: none;
}

.veh-feature-item i {
  color: var(--black-dark);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
}

.veh-feature-item-title {
  font-family: var(--font-ui);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--black);
  display: block;
  margin-bottom: 0.18rem;
}

.veh-feature-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Location tags (vehicle page variant) */
.veh-loc-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.veh-loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.82rem;
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.08);
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: var(--tr-fast);
}

.veh-loc-tag:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.veh-loc-tag i {
  font-size: 0.7rem;
  color: var(--black-dark);
}

.veh-loc-tag:hover i {
  color: var(--black);
}

/* Related services (vehicle page variant) */
.veh-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .veh-svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .veh-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.veh-svc-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  transition: var(--tr);
}

.veh-svc-card:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.veh-svc-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--black-dark);
  transition: var(--tr-fast);
}

.veh-svc-card:hover .veh-svc-icon {
  background: var(--black);
  color: var(--white);
}

.veh-svc-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.18rem;
  transition: var(--tr-fast);
}

.veh-svc-card:hover .veh-svc-name {
  color: var(--black-dark);
}

.veh-svc-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================
   28. SERVICE PAGES (shared)
   Used by: services/airport-chauffeur-service.php
            services/corporate-chauffeur-service.php
            services/executive-chauffeur-service.php
            services/business-travel-chauffeur.php
   ============================================= */

/* ── Service hero CTAs ───────────────────────── */
.svc-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

@media (min-width: 480px) {
  .svc-hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── Service intro stats (hero right col) ─────── */
.svc-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.svc-stat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
}

.svc-stat-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}

.svc-stat-lbl {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.18rem;
}

/* ── Benefit / feature grid ──────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 480px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.1rem;
  text-align: center;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--black-dark);
  margin: 0 auto 0.9rem;
  transition: var(--tr-fast);
}

.benefit-card:hover .benefit-icon {
  background: var(--black);
  color: var(--white);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.benefit-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Fleet mini cards ─────────────────────────── */
.fleet-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.fleet-mini-card:hover .fleet-mini-icon {
  color: white !important;
}

@media (min-width: 640px) {
  .fleet-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .fleet-mini-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.fleet-mini-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.1rem 0.85rem;
  text-align: center;
  text-decoration: none;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.fleet-mini-card:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.fleet-mini-img {
  width: 90px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  transition: transform 0.3s ease;
}

.fleet-mini-card:hover .fleet-mini-img {
  transform: scale(1.05);
}

.fleet-mini-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  transition: var(--tr-fast);
  line-height: 1.25;
}

.fleet-mini-spec {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  color: var(--text-muted);
  transition: var(--tr-fast);
}

.fleet-mini-card:hover .fleet-mini-name,
.fleet-mini-card:hover .fleet-mini-spec {
  color: rgba(255, 255, 255, 0.82);
}

/* ── Route / use-case list ────────────────────── */
.route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .route-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .route-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: var(--tr);
}

.route-card:hover {
  border-color: var(--black);
  transform: translateX(3px);
  box-shadow: var(--shadow-soft);
}

.route-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--black-dark);
  transition: var(--tr-fast);
}

.route-card:hover .route-icon {
  background: var(--black);
  color: var(--white);
}

.route-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.18rem;
  transition: var(--tr-fast);
}

.route-card:hover .route-label {
  color: var(--black-dark);
}

.route-detail {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Quote / booking inline ───────────────────── */
.svc-booking-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.svc-booking-header {
  background: var(--black);
  padding: 1.4rem 2rem;
  position: relative;
  overflow: hidden;
}

.svc-booking-header::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.svc-booking-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}

.svc-booking-sub {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.svc-booking-body {
  padding: 10px;
}

/* @media(min-width:768px) {
  .svc-booking-body {
    padding: 2.25rem;
  }
} */

.svc-form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.svc-form-success-icon {
  width: 60px;
  height: 60px;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--black-dark);
  margin: 0 auto 1rem;
}

.svc-form-success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.svc-form-success-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Airport tiles ────────────────────────────── */
.airport-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .airport-tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .airport-tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.airport-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.9rem;
  text-align: center;
  transition: var(--tr-fast);
  text-decoration: none;
}

.airport-tile:hover {
  background: rgba(20, 20, 20, 0.08);
  border-color: rgba(214, 217, 215, 0.3);
  transform: translateY(-3px);
}

.airport-tile-code {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 0.35rem;
}

.airport-tile-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ── Business district chips ─────────────────── */
.district-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.district-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--tr-fast);
}

.district-chip:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.4);
  color: var(--black);
}

.district-chip i {
  font-size: 0.7rem;
  color: var(--black);
}

/* ── Service steps (variant of how-timeline) ─── */
.svc-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 576px) {
  .svc-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .svc-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.svc-step {
  background: var(--white);
  border: 1px solid rgba(10, 26, 2, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  text-align: center;
  transition: var(--tr);
  position: relative;
}

.svc-step:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.svc-step-num {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 auto 0.9rem;
}

.svc-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.svc-step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   29. NAVIGATION ENHANCEMENT — MEGA MENU SYSTEM
   Premium mega-menu, top-bar add-ons, compressed
   sticky behaviour, and mobile accordion.
   ============================================= */

/* ---- 29.1 Top bar additions (social, WhatsApp) ---- */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.top-bar-social {
  display: none;
  align-items: center;
  gap: 0.1rem;
  margin-right: 0.25rem;
  padding-right: 0.55rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 992px) {
  .top-bar-social {
    display: inline-flex;
  }
}

.tb-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--black);
  font-size: 0.78rem;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--tr-fast);
}

.tb-social:hover {
  color: var(--black);
  background: rgba(74, 222, 128, 0.1);
}

.tb-whatsapp {
  display: none;
  align-items: center;
  gap: 0.32rem;
  padding: 0.26rem 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: var(--tr-fast);
}

.tb-whatsapp i {
  color: #25d366;
  font-size: 0.85rem;
}

.tb-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--black);
}

.tb-whatsapp:hover i {
  color: var(--black);
}

@media (min-width: 768px) {
  .tb-whatsapp {
    display: inline-flex;
  }
}

.tb-whatsapp-text {
  display: none;
}

@media (min-width: 992px) {
  .tb-whatsapp-text {
    display: inline;
  }
}

/* ---- 29.2 Navbar mega-menu trigger links ---- */
.nav-desktop-links li.has-mega {
  position: static;
}

.nav-link-mega {
  display: inline-flex !important;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-chev {
  font-size: 0.6rem;
  color: var(--white);
  transition:
    transform 0.25s ease,
    color 0.2s ease;
  margin-top: 1px;
}

.has-mega:hover .nav-chev,
.has-mega.is-open .nav-chev,
.nav-link-mega:hover .nav-chev,
.nav-link-mega.active .nav-chev {
  color: var(--white);
}

.has-mega.is-open .nav-chev {
  transform: rotate(180deg);
}

/* ---- 29.3 Mega stage + panels ---- */
.mega-stage {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 99999;
}

.mega-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(10, 26, 2, 0.06);
  border-bottom: 3px solid var(--black);
  box-shadow: 0 28px 60px -20px rgba(10, 26, 2, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  pointer-events: none;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 2.25rem 2rem 1.5rem;
}
.mega-menu.fleet .mega-inner {
  max-width: 100%;
}
/* Backdrop behind mega panels */
.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 2, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mega-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Hide mega menu entirely below the desktop nav breakpoint */
@media (max-width: 1199.98px) {
  .mega-stage,
  .mega-menu,
  .mega-backdrop {
    display: none !important;
  }
}

/* ---- 29.4 Mega columns layout ---- */
.mega-cols {
  display: grid;
  gap: 2rem;
}

.mega-cols-2 {
  grid-template-columns: 1fr 1fr;
}

.mega-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mega-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mega-cols-fleet {
  grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
}

.mega-col-span-2 {
  grid-column: span 2;
}

.mega-col-heading {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black-dark);
  padding-bottom: 0.65rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(10, 26, 2, 0.08);
  position: relative;
}
.mega-col-heading span {
  text-transform: lowercase;
}
.mega-col-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 2px;
  background: var(--black);
}

.mega-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col-list li + li {
  margin-top: 0.15rem;
}

.mega-col-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 1rem;
}

/* ---- 29.5 Service link cards ---- */
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0.65rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  position: relative;
}

.mega-link:hover {
  background: var(--off-white);
  transform: translateX(2px);
}

.mega-link-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.1);
  color: var(--black-dark);
  border-radius: 10px;
  font-size: 1rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.mega-link:hover .mega-link-icon {
  background: var(--black);
  color: var(--white);
}

.mega-link-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.mega-link-title {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.mega-link-desc {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.mega-link-arrow {
  font-size: 0.78rem;
  color: var(--mid-grey);
  align-self: center;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.mega-link:hover .mega-link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--black-dark);
}

/* ---- 29.6 Fleet showcase cards inside mega ---- */
.mega-fleet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-fleet-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.65rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
}

.mega-fleet-card:hover {
  background: var(--white);
  border-color: rgba(241, 241, 241, 0.08);
  box-shadow: var(--shadow-soft);
}

.fleet-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  color: #111 !important;
  width: 100%;
}

.fleet-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.fleet-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 6px;
}

.fleet-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.fleet-name {
  font-size: 15px;
  font-weight: 700;
  color: #111 !important;
  line-height: 1.3;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.fleet-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mff-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.mega-fleet-item {
  list-style: none;
}

.mega-fleet-card {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
}

.mff-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.mff-cat {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mff-pax {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--black-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

/* ---- 29.7 Fleet feature column (overview block) ---- */
.mega-col-feature .mega-col-heading {
  color: var(--black);
}

.mega-col-feature .mega-col-heading::after {
  background: var(--black);
}

.mega-fleet-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mff-feature-img {
  height: 110px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    #b7b7b7 60%,
    #c5c5c5 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(74, 222, 128, 0.7);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.mff-feature-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--white), transparent);
}

.mff-feature-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
}

.mega-feature-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-feature-links li + li {
  margin-top: 0.15rem;
}

.mega-feature-links a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.mega-feature-links a i {
  color: var(--black-dark);
  font-size: 0.85rem;
}

.mega-feature-links a:hover {
  background: var(--off-white);
  color: var(--black);
  padding-left: 0.75rem;
}

/* ---- 29.8 Location pills inside mega ---- */
.mega-pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mega-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.85rem;
  background: var(--off-white);
  border: 1px solid rgba(34, 34, 34, 0.06);
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: var(--tr-fast);
}

.mega-pill i {
  color: var(--black-dark);
  font-size: 0.78rem;
}

.mega-pill:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-1px);
}

.mega-pill:hover i {
  color: var(--black);
}

/* ---- 29.9 Mega bottom CTA strip ---- */
.mega-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(
    135deg,
    var(--off-white) 0%,
    var(--light-grey) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 26, 2, 0.05);
  flex-wrap: wrap;
}

.mega-cta-compact {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
}

.mega-cta-text {
  flex: 1;
  min-width: 240px;
}

.mega-cta-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.mega-cta-sub {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.mega-cta-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.mega-cta-actions .btn-black,
.mega-cta-actions .btn-white-lt {
  padding: 0.62rem 1.2rem;
  font-size: 0.78rem;
}

/* ---- 29.10 Mega menu stagger-in animation ---- */
.mega-menu.is-open .mega-col {
  animation: megaColIn 0.4s ease both;
}

.mega-menu.is-open .mega-col:nth-child(1) {
  animation-delay: 0.04s;
}

.mega-menu.is-open .mega-col:nth-child(2) {
  animation-delay: 0.1s;
}

.mega-menu.is-open .mega-col:nth-child(3) {
  animation-delay: 0.16s;
}

.mega-menu.is-open .mega-col:nth-child(4) {
  animation-delay: 0.22s;
}

.mega-menu.is-open .mega-cta {
  animation: megaColIn 0.4s ease 0.26s both;
}

@keyframes megaColIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .mega-menu.is-open .mega-col,
  .mega-menu.is-open .mega-cta {
    animation: none !important;
    transition: opacity 0.15s linear !important;
    transform: none !important;
  }
}

/* ---- 29.11 Compressed (scrolled) navbar ---- */
.luxury-nav .nav-inner,
.luxury-nav .brand-lt,
.luxury-nav .brand-text,
.luxury-nav .btn-nav-cta {
  transition:
    padding 0.35s ease,
    font-size 0.35s ease,
    width 0.35s ease,
    height 0.35s ease;
  will-change: padding, font-size;
}

/* ---- 29.12 Mobile accordion (inside off-canvas) ---- */
.oc-acc {
  position: relative;
}

/* Override default <button> styling to align with .oc-link */
.oc-acc-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.oc-acc-chev {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform 0.3s ease,
    color 0.2s ease;
  flex-shrink: 0;
}

.oc-acc.is-open .oc-acc-chev {
  transform: rotate(180deg);
  color: var(--white);
}

.oc-acc.is-open > .oc-acc-toggle {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.oc-acc.is-open > .oc-acc-toggle .oc-link-icon {
  background: rgba(98, 98, 98, 0.15);
  color: var(--off-white);
}

/* Collapsible panel */
.oc-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0.5rem;
}

.oc-acc.is-open .oc-acc-panel {
  max-height: 1600px;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
}

.oc-sub-heading {
  display: block;
  padding: 0.7rem 0.85rem 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}

.oc-sublink-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin: 0;
  width: 100%;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  color: #111;
  transition: all 0.25s ease;
}

.oc-sublink-desktop:hover {
  background: #fff;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 12px;
}

.oc-sublink-desktop img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.fleet-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.fleet-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.fleet-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #666;
}

.fleet-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fleet-meta i {
  font-size: 13px;
  width: auto;
  color: #111;
}

.mega-fleet-item {
  list-style: none;
  margin-bottom: 10px;
}

.oc-sublink {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.85rem;
  margin-left: 0.4rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  min-height: 40px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    padding-left 0.2s ease;
}

.oc-sublink i {
  width: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.oc-sublink:hover {
  background: rgba(158, 158, 158, 0.05);
  color: var(--white);
  border-left-color: var(--black);
  padding-left: 1rem;
}

.oc-sublink:hover i {
  color: var(--white);
}

.oc-sublink-all {
  background: rgba(62, 62, 62, 0.1);
  color: var(--white);
  font-weight: 600;
  border-left-color: var(--black);
}

.oc-sublink-all:hover {
  background: rgba(135, 135, 135, 0.16);
  color: var(--white);
}

.oc-sublink-meta {
  margin-left: auto;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 400;
}

/* ---- 29.13 Responsive breakpoints inside mega ---- */
@media (max-width: 1399.98px) {
  .mega-inner {
    padding: 1.75rem 1.5rem 1.25rem;
  }

  .mega-cols {
    gap: 1.5rem;
  }

  .mega-cols-fleet {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    max-width: 100%;
  }
}

/* =============================================
   BOOKING WIDGET – PRECISE FIX
   ============================================= */

/* Outer card */
.hero-vehicle-wrap booking-widget .lf-w-full.lf-max-w-\[510px\] {
  background: rgba(10, 14, 18, 0.45) !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  z-index: 1 !important;
}

.hero-vehicle-wrap .lf-max-w-\[510px\] {
  max-width: 100% !important;
  width: 100% !important;
}

.hero-vehicle-wrap booking-widget i {
  color: #fff;
}

.hero-vehicle-wrap booking-widget,
.hero-vehicle-wrap booking-widget > div {
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
}

.hero-vehicle-wrap booking-widget .\!lf-border-\[\#ddd\] {
  border-color: transparent !important;
}

.hero-vehicle-wrap booking-widget .lf-bg-white {
  background: transparent !important;
}

.hero-vehicle-wrap booking-widget .lf-col-span-1 button {
  color: var(--white) !important;
}

.hero-vehicle-wrap booking-widget .\!lf-text-\[--primary-color\] {
  color: var(--white) !important;
  opacity: 0.75;
}
.hero-vehicle-wrap booking-widget .\!lf-border-\[--primary-color\] {
  border-color: #fff !important;
}

.hero-vehicle-wrap booking-widget .lf-text-\[\#004A7F\] {
  color: var(--white) !important;
}

.hero-vehicle-wrap booking-widget .lf-items-center button,
.hero-vehicle-wrap booking-widget h5.lf-font-semibold {
  color: var(--white) !important;
}

.hero-vehicle-wrap booking-widget .lf-bg-white {
  border: none;
}

.hero-vehicle-wrap booking-widget .lf-relative input {
  background: rgb(2 2 2 / 18%);
}

.hero-vehicle-wrap booking-widget .lf-relative input {
  color: white !important;
  font-size: 16px;
  opacity: 0.75;
}

.hero-vehicle-wrap booking-widget button[type="submit"] {
  background: #fff;
  color: #000;
  font-weight: 600;
  width: 95%;
}

.hero-vehicle-wrap {
  overflow: visible !important;
  border-radius: 20px !important;
}

.section-coverage {
  background:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.68) 50%,
      rgba(10, 10, 10, 0.9) 100%
    ),
    url("../images/airport-transfers/airport-transfers-3.webp") center 40% /
      cover no-repeat;
}

.section-routes {
  background:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.68) 50%,
      rgba(10, 10, 10, 0.9) 100%
    ),
    url("../images/airport-transfers/airport-transfer-4.webp") center 40% /
      cover no-repeat;
}

.section-booking {
  background:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.68) 50%,
      rgba(10, 10, 10, 0.9) 100%
    ),
    url("../images/mainbnr.webp") center 40% / cover no-repeat;
}

.section-head h1 {
  margin: 12px 0 16px;
  font-size: 2rem;
  font-weight: 700;
}

.booking-fleet-card {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.booking-fleet-card booking-widget .full_outrdiv {
  background-color: white !important;
}

/* Google autocomplete dropdown */
.pac-container {
  z-index: 9999 !important;
}

#bookNow-success {
  display: none;
}

#bookNow-success.active {
  display: block;
}

/* Fix intl-tel-input dropdown overflow */
.iti {
  width: 100%;
  position: relative;
  /* Ensure dropdown is positioned relative to this */
}

.iti__country-list {
  width: 320px !important;
  max-height: 250px !important;
  overflow-y: auto !important;
  z-index: 9 !important;
  position: absolute !important;
  /* Must be absolute, not fixed */
  box-sizing: border-box;
  top: 100% !important;
  left: 0 !important;
}

.iti__country {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.iti__dial-code {
  margin-left: 15px;
  flex-shrink: 0;
}

.iti input,
.iti input[type="tel"] {
  width: 100%;
}

/* REMOVE overflow:visible from parent containers —
   that's what's causing the blowout */
.booking-form,
.form-grid-3,
.form-grid-2,
.booking-card {
  overflow: visible !important;
  /* keep this */
}

.booking-widget-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

booking-widget {
  max-width: 100%;
  margin: 0 auto;
}

.whatsapp-container {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 3px #000;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 7;
}

.lf-web-component-dropdown {
  z-index: 9999 !important;
}

.app-section {
  background: #000;
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at right,
    rgba(255, 255, 255, 0.05),
    transparent 45%
  );
}
.app-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.app-content {
  width: 60%;
}
.app-subtitle {
  display: inline-block;
  color: #c8a96a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}
.app-content h2 {
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  max-width: 620px;
  margin-bottom: 15px;
  color: #fff;
}
.app-content p {
  color: #c7c7c7;
  font-size: 15px;
  line-height: 32px;
  margin-bottom: 15px;
  max-width: 600px;
}
.app-features {
  display: grid;
  grid-template-columns: repeat(2, 260px);
  gap: 12px;
  margin-bottom: 15px;
}
.feature {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: 0.35s;
  padding: 8px;
  border-radius: 8px;
}
.feature:hover {
  background: #fff;
  color: #000;
}
.feature:hover i {
  color: #000;
}
.store-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 225px; /* Fixed width */
  height: 70px;
  padding: 0 22px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.35s;
  flex-shrink: 0;
}
.store-btn i {
  font-size: 40px;
  color: #000;
}
.store-text span {
  display: block;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.store-text strong {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  font-style: italic;
}
.store-btn:hover {
  background: #111;
  border: 1px solid #fff;
}
.store-btn:hover i,
.store-btn:hover span,
.store-btn:hover strong {
  color: #fff;
}
.app-phone {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: #c8a96a;
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(90px);
}
.app-phone img {
  width: 430px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  transform: rotate(-8deg);
  /* animation:float 4s ease-in-out infinite; */
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-15px) rotate(-8deg);
  }
}

@media (max-width: 991px) {
  .app-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 0;
  }
  .app-content,
  .app-phone {
    width: 100%;
  }
  .app-content h2 {
    font-size: 40px;
  }
  .store-buttons {
    justify-content: center;
  }
  .app-phone img {
    width: 270px;
  }
  .app-section {
    padding: 0 0 40px;
  }
  .app-features {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .app-content h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .store-btn {
    /* width:100%; */
    justify-content: center;
  }
  .app-features {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
/* Privacy Policy Table */
.privacy-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-family: var(--font-body);
  color: var(--black-dark);
  border: 1px solid var(--light-grey);
}

.privacy-table th,
.privacy-table td {
  padding: 1rem 1.25rem;
  border: 1px solid var(--light-grey);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.privacy-table th {
  width: 240px;
  background: var(--off-white);
  font-weight: 600;
  color: var(--black);
  font-family: var(--font-ui);
}

.privacy-table td {
  color: var(--text-muted);
}

.privacy-table a {
  color: var(--golden);
  text-decoration: none;
  transition: var(--tr);
}

.privacy-table a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-table th,
  .privacy-table td {
    display: block;
    width: 100%;
  }

  .privacy-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--light-grey);
  }

  .privacy-table th {
    border-bottom: none;
    background: var(--light-grey);
  }

  .privacy-table td {
    border-top: none;
  }
}
.legal-ul {
  margin-bottom: 0.9rem;
  list-style-type: disc;
}

.legal-ul li {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

.legal-ul li::marker {
  color: var(--emerald-dark);
}
.cookie-popup {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);

    padding: 24px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: .35s ease;
}

.cookie-popup.is-visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.cookie-popup__icon{
    display:none;
}

.cookie-popup__content{
    flex:1;
}

.cookie-popup__label{
    display:block;
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.cookie-popup h2{
    display:none;
}

.cookie-popup p{
    margin:0;
    font-size:17px;
    line-height:1.6;
    color:#333;
    max-width:1100px;
}

.cookie-popup__link{
    display:inline-block;
    margin-top:10px;
    color:#111;
    font-size:15px;
    font-weight:600;
    text-decoration:underline;
}

.cookie-popup__link:hover{
    color:#000;
}

.cookie-popup__buttons{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.cookie-btn{
    min-width:190px;
    height:48px;
    border-radius:4px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.cookie-btn--accept{
    background:#000 !important;
    border:1px solid #000;
    color:#fff;
}

.cookie-btn--accept:hover{
    background:#222;
    color:#fff !important;

}

.cookie-btn--reject{
    background:#fff;
    border:1px solid #000;
    color:#000;
}

.cookie-btn--reject:hover{
    background:#000;
    color:#fff;
}

.cookie-popup__close{
    display:none;
}
@media (max-width:991px){

    .cookie-popup{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        padding:20px;
    }

    .cookie-popup__buttons{
        width:100%;
        flex-direction:column;
    }

    .cookie-btn{
        width:100%;
        min-width:unset;
    }

    .cookie-popup__label{
        font-size:24px;
    }

    .cookie-popup p{
        font-size:15px;
    }
    .veh-img {
      height: 220px !important;
    }

}
.mobile-view{
  overflow-x: hidden !important;
}
/* ================================================================
   LOGISTIFIE ADDRESS PICKER — NEAR-FIELD CROSS-BROWSER FIX
   ----------------------------------------------------------------
   The real airport/address options remain visible and clickable.
   JavaScript anchors the vendor panel beside the address field after
   Safari's keyboard animation settles, then locks that position.
   ================================================================ */

html.has-booking-widget {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.hero-vehicle-wrap,
.mobile-view,
.booking-fleet-card,
.booking-widget-wrap,
booking-widget {
  overflow: visible !important;
}

booking-widget input,
booking-widget select,
booking-widget textarea {
  font-size: 16px !important;
}

.classy-address-picker {
  box-sizing: border-box !important;
  position: fixed !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y !important;
  z-index: 2147483646 !important;
  background: #fff !important;
  color: #111 !important;
  border-radius: 10px !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42) !important;
}

.classy-address-picker.classy-address-picker--pending {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.classy-address-picker.classy-address-picker--ready {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.classy-address-picker .classy-address-picker__title {
  position: sticky !important;
  top: 0 !important;
  z-index: 2 !important;
  background: #f2f3f5 !important;
  color: #111 !important;
}

.classy-address-picker,
.classy-address-picker * {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html.has-booking-widget,
  body.has-booking-widget {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-x: clip !important;
  }
}

/* Video Section */
.cc-video-section{
  padding:0 0 50px;
  background:#f7f8fb;
}
.cc-video-banner{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
}
.cc-video-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:8s ease;
}
.cc-video-banner:hover img{
  transform:scale(1.08);
}
.video-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to right,rgba(0,0,0,.85),rgba(0,0,0,.35)),
  rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}
.video-overlay h2{
  color:#fff;
  font-size:clamp(34px,4vw,36px);
  font-weight:700;
  margin:35px 0 15px;
  letter-spacing:.5px;
}
.play-video-btn{
  width:65px;
  height:65px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.6);
  background:#fff;
  color:#000;
  font-size:28px;
  cursor:pointer;
  position:relative;
  transition:.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-video-btn:hover{
  transform:scale(1.08);
  background:#000;
  color:#fff;
  border-color:#fff;
}
.play-video-btn::before,
.play-video-btn::after{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.45);
  animation:ripple 2.4s infinite;
}
.play-video-btn::after{
  animation-delay:1.2s;
}
@keyframes ripple{
  0%{
    transform:scale(.8);
    opacity:1;
  }
  100%{
    transform:scale(1.7);
    opacity:0;
  }
}
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 40px 20px;
}
.video-modal.active {
  display: flex;
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.close-video {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: .3s;
}
.close-video:hover {
  background: #fff;
  color: #000;
  transform: rotate(90deg);
}

@media(max-width:992px){
  .cc-video-banner{
    height:60vh;
  }
  .cc-video-banner img {
    object-position: right;
  }
  .video-modal{
    padding:20px;
  }
  .video-modal-content{
    width:100%;
  }
}

@media(max-width:767px){
  .cc-video-banner{
    height:325px;
  }
  .play-video-btn{
    width:60px;
    height:60px;
    font-size:22px;
  }
  .play-video-btn::before,
  .play-video-btn::after{
    inset:-10px;
  }
  .video-overlay h2{
    font-size:24px;
    line-height: 30px;
  }
}