/* =============================================================================
   GM Limo Services — Main Stylesheet  v3.0
   Mobile-first · CSS custom properties · Zero framework dependency
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */
:root {
  /* Brand colours */
  --clr-bg: #ffffff;
  /* Clean white background */
  --clr-bg-alt: #f9f9f9;
  /* Very light gray for cards */
  --clr-bg-section: #f4f4f4;
  /* Alternating section background */
  --clr-accent: #bfa054;
  /* Metallic gold primary */
  --clr-accent-dark: #a6853a;
  /* Darker gold for hovers */
  --clr-gold: #bfa054;
  --clr-gold-light: #f5e4ab;
  --clr-white: #ffffff;
  --clr-text: #2d2d2d;
  /* Dark charcoal body text */
  --clr-text-muted: #6b6b6b;
  /* Muted gray for subtitles */
  --clr-border: #e5e5e5;
  /* Clean light border */

  /* Metallic Gold Gradient Touch */
  --gradient-gold: linear-gradient(to right, #bfa054 0%, #f5e4ab 50%, #bfa054 100%);
  --gradient-gold-hover: linear-gradient(to right, #a6853a 0%, #e8d392 50%, #a6853a 100%);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-px: 1.25rem;
  --header-h: 105px;
  /* Slightly taller header for the two-line pill button */

  /* Animation */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 230ms;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
a:visited {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

a:hover,
a:visited:hover,
a:focus-visible {
  color: var(--clr-accent-dark);
}

:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
}

ul,
ol {
  list-style: none;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  /* Dark headings by default */
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--clr-text);
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

/* =============================================================================
   4. LAYOUT UTILITIES
   ============================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section-pad {
  padding-block: var(--space-xl);
}

@media (min-width: 768px) {
  .section-pad {
    padding-block: var(--space-2xl);
  }
}

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-border), transparent);
  margin: 0;
}

/* =============================================================================
   5. BUTTONS
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition:
    background var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--primary {
  background-color: var(--clr-text);
  color: var(--clr-white);
  border-color: var(--clr-text);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #000000;
  border-color: #000000;
  color: var(--clr-white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background-color: rgba(0, 0, 0, 0.02);
  border-color: var(--clr-text);
  color: var(--clr-text);
}

/* Metallic gold gradient button */
.btn--gold {
  background: var(--gradient-gold);
  color: #111111 !important;
  border: none;
  box-shadow: 0 4px 12px rgba(191, 160, 84, 0.2);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gradient-gold-hover);
  color: #000000 !important;
}

/* White button for Hero CTA */
.btn--white {
  background-color: var(--clr-white);
  color: #111111 !important;
  border: 1px solid var(--clr-border);
}

.btn--white:hover,
.btn--white:focus-visible {
  background-color: #f4f4f4;
  border-color: #d2d2d2;
}

/* Two-line button formatting */
.btn--two-lines {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 2.2rem;
  line-height: 1.25;
}

.btn--two-lines .btn-subtext {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.btn--two-lines .btn-maintext {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

/* =============================================================================
   6. SITE HEADER — sticky, premium white nav
   ============================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--duration) var(--ease-out);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  padding-top: 10px;
}

/* ── Brand / Logo ── */
.site-branding {
  flex-shrink: 0;
}

.site-branding__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.site-branding__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: color var(--duration) var(--ease-out);
}

.site-branding__tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.site-branding__text:hover .site-branding__name {
  color: var(--clr-gold);
}

/* WP custom logo */
.custom-logo {
  height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-header .custom-logo {
  height: 90px;
}

.site-footer .custom-logo {
  height: 90px;
}

/* ── Navigation ── */
.main-navigation {
  margin-inline-start: auto;
}

@media (min-width: 900px) {
  .main-navigation {
    margin-inline-start: 100px;
  }
}

.nav-menu {
  display: none;
  /* hidden on mobile — shown via toggle */
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .nav-menu {
    display: flex;
    align-items: center;
  }
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222222;
  border-radius: var(--radius-md);
  transition: color var(--duration) var(--ease-out);
}

.nav-menu a:hover,
.nav-menu .current-menu-item>a,
.nav-menu .current_page_item>a {
  color: var(--clr-gold);
}

/* Dropdown */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  width: max-content;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-top: 2px solid var(--clr-gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 0.65rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-menu li:hover>.sub-menu,
.nav-menu li:focus-within>.sub-menu {
  display: flex;
}

.nav-menu .sub-menu li {
  width: 100%;
}

.nav-menu .sub-menu a {
  display: block;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  transition: background-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    padding-left var(--duration) var(--ease-out);
}

.nav-menu .sub-menu a:hover {
  background-color: transparent;
  color: var(--clr-gold);
  padding-left: 1.55rem;
}

.nav-menu .sub-menu .current-menu-item > a,
.nav-menu .sub-menu .current_page_item > a,
.nav-menu .sub-menu .current-menu-ancestor > a {
  color: var(--clr-gold) !important;
}

/* ── Hamburger toggle ── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-inline-start: auto;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #222222;
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}

/* Open state */
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile nav open state */
@media (max-width: 899px) {
  .main-navigation {
    width: 100%;
  }

  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--clr-border);
    padding: 1rem var(--container-px) 1.5rem;
    gap: 0.25rem;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.is-open .sub-menu {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }
}

/* ── Header CTA button (Quote button with two lines) ── */
.header-cta {
  flex-shrink: 0;
  margin-inline-start: auto;
}

.header-cta.btn--two-lines {
  padding: 0.45rem 1.4rem;
}

.header-cta.btn--two-lines .btn-subtext {
  font-size: 0.52rem;
  letter-spacing: 0.05em;
}

.header-cta.btn--two-lines .btn-maintext {
  font-size: 0.95rem;
  font-weight: 800;
}

@media (min-width: 900px) {
  .header-cta {
    margin-inline-start: auto;
  }
}

/* =============================================================================
   7. TOPBAR (REMOVED - Menu CTA preferred)
   ============================================================================= */
.topbar {
  display: none;
}

/* =============================================================================
   8. HERO
   ============================================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(10, 0, 0, 0.45) 100%);
  z-index: 1;
}

/* Accent bottom line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--clr-accent), var(--clr-gold), var(--clr-accent), transparent);
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-2xl) var(--container-px) var(--space-xl);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.08);
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--clr-white);
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.hero__title span {
  color: var(--clr-accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Trust badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--clr-gold);
  flex-shrink: 0;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.55;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-cue::before,
.hero__scroll-cue::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--clr-white);
  border-bottom: 2px solid var(--clr-white);
  transform: rotate(45deg);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* =============================================================================
   9. AIRPORT TRANSFERS SECTION
   ============================================================================= */
.airport-section {
  background-color: var(--clr-bg-alt);
}

.airport-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.airport-section__header h2 {
  margin-bottom: var(--space-sm);
}

.airport-section__subtext {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-top: 0.5rem;
}

/* Airport card grid */
.airport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 540px) {
  .airport-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .airport-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.airport-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition:
    border-color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}

.airport-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Gold code badge on the left */
.airport-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #111111;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(191, 160, 84, 0.15);
}

.airport-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.airport-card__name {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
}

.airport-card__desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* Travel times table */
.airport-section__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.travel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: var(--space-lg);
}

.travel-table caption {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 1.25rem;
}

.travel-table th {
  text-align: left;
  padding: 0.9rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--gradient-gold);
  border-bottom: 2px solid var(--clr-accent-dark);
}

.travel-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  vertical-align: middle;
}

.travel-table tbody tr:hover td {
  background-color: rgba(0, 0, 0, 0.02);
}

.zone-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zone-a {
  background: rgba(184, 35, 47, 0.18);
  color: var(--clr-accent);
  border: 1px solid rgba(184, 35, 47, 0.35);
}

.zone-b {
  background: rgba(201, 168, 76, 0.18);
  color: var(--clr-gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.zone-c {
  background: rgba(255, 255, 255, 0.06);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}

.airport-section__cta-row {
  text-align: center;
  margin-top: var(--space-lg);
}

.airport-section__note {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

/* =============================================================================
   10. SERVICES GRID SECTION
   ============================================================================= */
.services-section {
  background-color: var(--clr-bg);
}

.services-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.services-section__header h2 {
  margin-bottom: var(--space-sm);
}

.services-section__lead {
  color: var(--clr-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Service Card ── */
.service-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* Image area */
.service-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e5e5e5;
  overflow: hidden;
}

.service-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease-out);
}

.service-card:hover .service-card__thumb img {
  transform: scale(1.06);
}

/* Gold pill tag — centered at top of image */
.service-card__tag {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #111111;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Placeholder — emoji icon when no image */
.service-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

/* Thin gold ribbon at the very top edge */
.service-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 6;
}

/* Card body — white, generous padding */
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 0.5rem;
  gap: 0.65rem;
}

/* Title — gold with light blue-grey highlight (as in reference) */
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1.25;
  display: inline;
  border-radius: 3px;
  padding: 0 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Description text */
.service-card__desc {
  font-size: 0.92rem;
  color: #444444;
  line-height: 1.7;
  flex: 1;
}

/* "→ Learn more about X" inline link appended to description */
.service-card__learn-link {
  color: var(--clr-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  display: inline;
  transition: color var(--duration) var(--ease-out);
}

.service-card__learn-link:hover {
  color: var(--clr-accent);
  text-decoration: underline;
}

/* Footer — single centered Book Now button */
.service-card__footer {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
}

.service-card__footer .btn--book {
  background: var(--gradient-gold);
  color: #111111;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
  text-decoration: none;
  display: inline-block;
}

.service-card__footer .btn--book:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* =============================================================================
   11. FLEET SECTION
   ============================================================================= */
.fleet-section {
  background-color: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.fleet-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.fleet-section__header h2 {
  margin-bottom: var(--space-sm);
}

.fleet-section__lead {
  color: var(--clr-text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin-inline: auto;
}

.fleet-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.fleet-grid::-webkit-scrollbar {
  display: none;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out);
}

@media (min-width: 640px) {
  .vehicle-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .vehicle-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--clr-gold);
}

/* Slider Controls */
.fleet-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.fleet-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--clr-gold);
  color: #ffffff;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fleet-slider-btn:hover {
  transform: scale(1.1);
  background-color: #f3c63f;
}

.fleet-slider-btn:active {
  transform: scale(0.95);
}

.fleet-slider-btn svg {
  display: block;
}

.fleet-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fleet-slider-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--clr-gold);
  border: none;
  padding: 0;
  margin: 0;
  opacity: 0.3;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-out), opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.fleet-slider-dot.is-active {
  background-color: var(--clr-gold);
  opacity: 1;
  transform: scale(1.25);
}

.vehicle-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #ffffff;
  overflow: hidden;
}

.vehicle-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  box-sizing: border-box;
  transition: transform 400ms var(--ease-out);
}

.vehicle-card:hover .vehicle-card__thumb img {
  transform: scale(1.05);
}

.vehicle-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.vehicle-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--clr-gold), var(--clr-accent));
}

.vehicle-card__badges {
  display: none;
}

.vehicle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vehicle-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.vehicle-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.vehicle-card__name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.2rem;
}

.vehicle-card__model {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 1.1rem;
}

.vehicle-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  margin-bottom: 1.25rem;
  flex: 1;
  padding: 0;
  margin-left: 0;
}

.vehicle-features li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: #444444;
  font-weight: 500;
  line-height: 1.3;
}

.vehicle-features li::before {
  content: '✓';
  color: var(--clr-gold);
  font-weight: 900;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.vehicle-card__actions {
  display: flex;
  gap: 0.65rem;
  margin-top: auto;
}

.vehicle-card__actions .btn {
  flex: 1;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  transition: all 0.2s ease-in-out;
}

.vehicle-card__actions .btn--gold {
  background-color: var(--clr-gold);
  color: #ffffff;
  border: none;
}

.vehicle-card__actions .btn--gold:hover {
  background-color: #d8b868;
  color: #ffffff;
  transform: translateY(-1px);
}

.vehicle-card__actions .btn--ghost {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid var(--clr-gold);
}

.vehicle-card__actions .btn--ghost:hover {
  background-color: var(--clr-gold);
  color: #ffffff;
  transform: translateY(-1px);
}

.fleet-section__cta-row {
  text-align: center;
  margin-top: var(--space-xl);
}

/* =============================================================================
   12. WHY CHOOSE US
   ============================================================================= */
.why-section {
  background-color: var(--clr-bg);
}

.why-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.why-section__header h2 {
  margin-bottom: var(--space-sm);
}

.why-section__lead {
  color: var(--clr-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 2rem 1.75rem;
  background-color: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  transition:
    border-color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}

.why-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(191, 160, 84, 0.08);
  border: 1px solid rgba(191, 160, 84, 0.2);
  color: var(--clr-accent);
  flex-shrink: 0;
  transition:
    background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out);
}

.why-card:hover .why-card__icon {
  background: rgba(191, 160, 84, 0.16);
  border-color: var(--clr-accent);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
  transition: color var(--duration) var(--ease-out);
}

.why-card:hover .why-card__title {
  color: var(--clr-accent);
}

.why-card__text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================================================
   13. STATS BAR
   ============================================================================= */
.stats-section {
  background: linear-gradient(135deg, #fdfbf7 0%, #f5eed3 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(191, 160, 84, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-section__inner {
  position: relative;
  z-index: 1;
}

.stats-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.stats-section__header h2 {
  margin-bottom: var(--space-sm);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.stat-block:hover {
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

.stat-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(191, 160, 84, 0.12);
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.stat-block__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-block__value {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.stat-block__value em {
  font-style: normal;
  color: var(--clr-accent);
}

.stat-block__label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 200px;
}

.stats-section__cta {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   14. TESTIMONIALS
   ============================================================================= */
.testimonials-section {
  background-color: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

.testimonials-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials-section__header h2 {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition:
    border-color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}

.review-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-3px);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(191, 160, 84, 0.12);
  pointer-events: none;
  user-select: none;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--clr-gold);
  font-size: 1rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-gold);
}

.review-quote {
  font-size: 0.92rem;
  color: var(--clr-text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}

.review-author__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  flex-shrink: 0;
}

.review-author__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.review-author__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
}

.review-author__meta {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* =============================================================================
   15. BOOKING STEPS
   ============================================================================= */
.booking-steps-section {
  background-color: var(--clr-bg);
}

.booking-steps-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.booking-steps-section__header h2 {
  margin-bottom: var(--space-sm);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--clr-gold) 20%, var(--clr-gold) 80%, transparent);
    z-index: 0;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.step-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #111111;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow:
    0 0 0 8px rgba(191, 160, 84, 0.12),
    0 0 0 16px rgba(191, 160, 84, 0.05);
  transition: box-shadow var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.step-card:hover .step-card__number {
  transform: scale(1.08);
  box-shadow:
    0 0 0 10px rgba(191, 160, 84, 0.18),
    0 0 0 20px rgba(191, 160, 84, 0.07);
}

.step-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
}

.step-card__desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 260px;
  margin-inline: auto;
}

.booking-steps-section__cta {
  text-align: center;
  margin-top: var(--space-xl);
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   16. SITE FOOTER
   ============================================================================= */
.site-footer {
  background-color: #131313;
  border-top: 1px solid #222222;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-md);
  color: #c8c8c8;
  font-size: 0.88rem;
}

.site-footer a {
  color: #c8c8c8;
  transition: color var(--duration) var(--ease-out);
}

.site-footer a:hover {
  color: var(--clr-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-widget__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Red underline detail on footer headings */
.footer-widget__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--clr-accent);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-widget li {
  display: flex;
  align-items: center;
}

/* Quick brand summary column */
.footer-brand__text {
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  color: #c8c8c8;
}

/* Contact block list items */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 2;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Social icons list */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #333333;
  color: #c8c8c8 !important;
  transition:
    background-color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out);
}

.footer-social-link:hover {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white) !important;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Bottom bar copyright & legal */
.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    padding-top: var(--space-sm);
  }
}

.footer-bottom__links {
  display: flex;
  gap: 1rem;
}

.footer-bottom__credits {
  color: #888888;
}

.footer-bottom__credits a {
  color: #aaaaaa;
}

.footer-bottom__credits a:hover {
  color: var(--clr-gold);
}

/* =============================================================================
   17. MISC
   ============================================================================= */
/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Responsive media */
@media (min-width: 768px) {
  .hero {
    min-height: 95vh;
  }
}

/* =============================================================================
   18. FAQ ACCORDION SECTION
   ============================================================================= */
.faq-section {
  background-color: var(--clr-bg);
}

.faq-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-section__header h2 {
  margin-bottom: var(--space-sm);
}

.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  background-color: var(--clr-bg-alt);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  /* subtle gold glow on hover */
}

.faq-item[open] {
  border-color: var(--clr-gold);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  list-style: none;
  /* hide standard marker */
}

.faq-summary::-webkit-details-marker {
  display: none;
  /* hide default Safari marker */
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  color: var(--clr-gold);
  transition: transform var(--duration) var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform var(--duration) var(--ease-out);
}

/* Horizontal bar */
.faq-icon::before {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Vertical bar */
.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
}

.faq-item[open] .faq-summary {
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--clr-accent);
}

.faq-item[open] .faq-icon::after {
  transform: scaleY(0);
  /* Hide vertical line to form a minus sign */
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
  padding-top: 1rem;
}

/* =============================================================================
   19. EXTRA FOOTER DETAIL STYLES
   ============================================================================= */
/* Payment options row */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  align-items: center;
}

.footer-payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  height: 22px;
}

/* Google Map container in Footer */
.footer-map-container {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  height: 140px;
  background-color: var(--clr-bg-section);
  position: relative;
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2);
  /* elegant dark style map */
}

/* =============================================================================
   20. MEDIA SHOWCASE SECTION
   ============================================================================= */
.media-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .media-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.media-showcase-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 8 / 5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.media-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-out);
}

.media-showcase-card:hover img {
  transform: scale(1.03);
}

.media-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.media-showcase-tag {
  background-color: var(--clr-gold);
  color: #111111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* =============================================================================
   21. TRUST BADGES / LOGOS BAR
   ============================================================================= */
.trust-logos-divider {
  height: 1px;
  background: var(--clr-border);
  margin-block: var(--space-lg);
  opacity: 0.6;
}

.trust-logos-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  padding-block: var(--space-xs);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: #333333;
}

.trust-badge__brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #111111;
}

.google-brand svg {
  color: #4285F4;
}

.yelp-brand svg {
  color: #d32323;
}

.bbb-logo {
  font-size: 0.72rem;
  background: #0060A9;
  color: #ffffff;
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
  font-weight: 900;
}

.bbb-grade {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0060A9;
  border: 1.5px solid #0060A9;
  padding-inline: 0.35rem;
  border-radius: 3px;
}

.ta-brand {
  color: #00AF87 !important;
  font-weight: 800;
}

.tp-brand {
  color: #00B67A !important;
  font-weight: 800;
}

.trust-badge__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.star-color {
  color: #f5b30a;
}

.trust-badge__rating {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}

@media (max-width: 600px) {
  .trust-logos-bar {
    gap: 1.5rem;
    flex-direction: column;
  }
}

/* =============================================================================
   22. INNER PAGE LAYOUTS & SIDEBAR
   ============================================================================= */
.sub-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: var(--space-xl);
  position: relative;
  text-align: center;
}

.sub-hero__inner {
  position: relative;
  z-index: 2;
  color: var(--clr-white);
}

.sub-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.sub-hero__lead {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.sub-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Details and Breadcrumbs Bar */
.details-bar {
  background-color: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 0.75rem;
}

.details-bar__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .details-bar__grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.details-bar__breadcrumbs {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.details-bar__breadcrumbs a {
  color: var(--clr-text-muted);
}

.details-bar__breadcrumbs a:hover {
  color: var(--clr-gold);
}

.details-bar__breadcrumbs .sep {
  margin-inline: 0.4rem;
  opacity: 0.5;
}

.details-bar__breadcrumbs .current {
  color: var(--clr-text);
  font-weight: 600;
}

.details-bar__meta {
  display: flex;
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 768px) {
  .meta-item {
    text-align: right;
  }
}

.meta-item__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
}

.meta-item__val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111111;
}

/* 2-Column Inner Layout */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .inner-layout {
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
  }
}

.inner-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.entry-content {
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: var(--space-sm);
}

.entry-content h2,
.entry-content h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

/* Pickup instructions area */
.pickup-accordion-wrap {
  margin-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
  padding-top: 2rem;
}

.pickup-accordion-heading {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.pickup-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Sidebar CTA Card Widget */
.inner-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.cta-sidebar-card {
  background-color: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.cta-sidebar-card__header {
  background: var(--gradient-gold);
  padding: 1.25rem 1.5rem;
  color: #111111;
}

.cta-sidebar-card__header h3 {
  color: #111111;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.cta-sidebar-card__header p {
  color: #333333;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.cta-sidebar-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-pill-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #333333;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
}

.cta-sidebar-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-sidebar-card__actions .btn {
  width: 100%;
  justify-content: center;
}

.cta-sidebar-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cta-sidebar-card__benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.cta-sidebar-card__benefits li svg {
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* =============================================================================
   18. ABOUT PAGE TEMPLATE
   ============================================================================= */

/* Hero Banner */
.about-us-hero {
  position: relative;
  min-height: 480px;
  background-image: linear-gradient(rgba(17, 17, 17, 0.65), rgba(17, 17, 17, 0.65)), url('../images/about-hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  padding: 5rem 1rem;
}

.about-us-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.about-us-hero__title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--clr-white) !important;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.about-us-hero__desc {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 750px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-us-hero {
    min-height: 350px;
    padding: 3rem 1rem;
  }

  .about-us-hero__title {
    font-size: 2.5rem;
  }

  .about-us-hero__desc {
    font-size: 1.05rem;
  }
}

/* Section Padding */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Limo Grid Section */
.about-limo-grid__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .about-limo-grid__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-limo-grid__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card-overlay {
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-end;
}

.about-card-overlay:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-card-overlay__content {
  padding: var(--space-md);
  color: var(--clr-white);
  z-index: 2;
  width: 100%;
}

.about-card-overlay__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 0.35rem;
}

.about-card-overlay__subtitle {
  font-size: 0.82rem;
  color: var(--clr-gold);
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
}

.about-card-overlay__btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--clr-gold);
  color: #111111 !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.about-card-overlay__btn:hover {
  background-color: var(--clr-white);
  color: #111111 !important;
}

.about-card-overlay:hover .about-card-overlay__btn {
  opacity: 1;
  transform: translateY(0);
}

/* Section Titles & Details */
.about-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

.about-section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.about-section-desc {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* Feature Boxes */
.about-feature-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .about-feature-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-feature-box {
  display: flex;
  gap: 1.25rem;
  border-left: 4px solid var(--clr-gold);
  padding-left: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--duration) var(--ease-out);
}

.about-feature-box:hover {
  border-left-color: var(--clr-accent-dark);
}

.about-feature-box__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--clr-bg-alt);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
}

.about-feature-box__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}

.about-feature-box__desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Who We Are Section */
.about-who-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .about-who-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

.about-who-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.about-portrait-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-portrait-wrapper::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  pointer-events: none;
  border-radius: var(--radius-md);
}

.about-portrait-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Who We Are Extra Paragraphs below Grid */
.about-who-extra {
  margin-top: 1rem;
}

.about-who-extra-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-top: 1.5rem;
}

.about-who-extra-text p {
  margin: 0;
}

.text-pink {
  color: #de356a;
  font-weight: 600;
}

/* Fleet Tabs */
.about-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.about-tab-btn {
  background-color: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

.about-tab-btn:hover,
.about-tab-btn.active {
  background-color: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(191, 160, 84, 0.25);
}

.about-tab-contents {
  position: relative;
  margin-bottom: 3.5rem;
}

.about-tab-pane {
  display: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-tab-pane.active {
  display: block;
  animation: aboutSlideLeftToRight 0.4s var(--ease-out);
}

@keyframes aboutSlideLeftToRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-tab-image {
  height: 600px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.about-fleet-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .about-fleet-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-fleet-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-fleet-feat {
  border-top: 2px solid var(--clr-gold);
  padding-top: var(--space-sm);
}

.about-fleet-feat__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.about-fleet-feat__desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Stats Counter Section */
.about-stats-counter {
  background-size: cover;
  background-position: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  color: var(--clr-white);
}

.about-stats-header {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-xl);
}

.about-counter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about-counter-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.about-counter-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--duration) var(--ease-out);
}

.about-counter-box:hover {
  transform: translateY(-5px);
}

.about-counter-val {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about-counter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dual CTA Cards */
.about-dual-cta {
  padding: 4rem 0;
  margin-top: 2rem;
}

.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-cta-card {
  padding: 6rem 3rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-cta-card__content {
  max-width: 480px;
}

.about-cta-card__title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2rem;
  line-height: 1.35;
}

/* Editor content / standard page content block */
.about-editor-content {
  background-color: var(--clr-bg);
}

.about-editor-content__layout {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text);
}

.about-editor-content__layout p {
  margin-bottom: 1.5rem;
}