/* ============================================================
   JANSEN TAXI — Logo Color Edition
   Design: Clean White · Crimson Red · Dark Navy
   Font: Outfit (headings) · Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --yellow:        #D42B45;
  --yellow-dark:   #B8213A;
  --yellow-deep:   #9C1A30;
  --yellow-light:  #E8697E;
  --yellow-pale:   #FFF2F4;
  --yellow-glow:   rgba(212,43,69,0.12);
  --dark:          #1B2A4A;
  --dark-2:        #243354;
  --dark-3:        #2E3F65;
  --white:         #FFFFFF;
  --surface:       #F7F8FA;
  --surface-2:     #FFF5F6;
  --text:          #1B2A4A;
  --text-2:        #374151;
  --text-muted:    #6B7280;
  --border:        #E5E7EB;
  --border-dark:   rgba(255,255,255,0.08);
  --text-inv:      rgba(255,255,255,0.95);
  --text-inv-2:    rgba(255,255,255,0.70);
  --text-inv-3:    rgba(255,255,255,0.40);

  --heading-font: 'Outfit', system-ui, sans-serif;
  --body-font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --sec-py:    clamp(80px, 10vw, 130px);
  --container: min(1280px, calc(100% - 48px));

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  --shadow-sm:     0 1px 4px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.10);
  --shadow-xl:     0 24px 80px rgba(0,0,0,0.12);
  --shadow-yellow: 0 8px 32px rgba(196,30,58,0.25);

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --transition: all 0.4s var(--ease);
}

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

/* ── TYPOGRAPHY ── */
h1 { font-family: var(--heading-font); font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--dark); }
h2 { font-family: var(--heading-font); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
h3 { font-family: var(--heading-font); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; color: var(--text); }
h4 { font-family: var(--heading-font); font-size: 1.1rem; font-weight: 600; color: var(--text); }
p { color: var(--text-2); font-size: 1rem; line-height: 1.8; }

/* ── LAYOUT ── */
.container { max-width: var(--container); margin: 0 auto; }
.section { padding: var(--sec-py) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.bg-dark { background: var(--dark); }
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.mt-6 { margin-top: 48px; }

/* ── SECTION HEADING ── */
.sh { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.sh h2 { margin-bottom: 16px; }
.sh p { font-size: 1.05rem; color: var(--text-muted); }
.sh-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--heading-font); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow-deep); background: var(--yellow-pale);
  border: 1px solid rgba(245,159,0,0.25);
  padding: 6px 16px; border-radius: var(--r-full);
  margin-bottom: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--heading-font); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--r-full);
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn i { font-size: 0.85em; }

.btn-sky {
  background: var(--yellow); color: var(--white);
  box-shadow: var(--shadow-yellow);
}
.btn-sky:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,159,0,0.4); }

.btn-amber {
  background: var(--yellow-dark); color: var(--white);
}
.btn-amber:hover { background: var(--yellow-deep); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: #fff; color: var(--dark); border-color: #fff; }

.btn-outline-sky {
  background: transparent; color: var(--yellow-deep);
  border: 2px solid rgba(224,137,0,0.35);
}
.btn-outline-sky:hover { background: var(--yellow-pale); border-color: var(--yellow-dark); }

.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 36px; transition: var(--transition); filter: none; }
.nav.scrolled .nav-logo img { height: 30px; }

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-2);
  font-family: var(--heading-font);
}
.nav-phone i { color: var(--yellow-dark); font-size: 0.8rem; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--heading-font); font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted); padding: 8px 14px; border-radius: var(--r-full);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); background: var(--surface); }

.nav-cta {
  background: var(--yellow) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 10px 22px !important;
  box-shadow: var(--shadow-yellow);
}
.nav-cta:hover { background: var(--yellow-light) !important; transform: translateY(-1px); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 8px 0;
  min-width: 240px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px !important; border-radius: 0 !important;
  font-size: 0.88rem; color: var(--text-2); white-space: nowrap;
}
.nav-dropdown-menu a i { width: 18px; text-align: center; color: var(--yellow-dark); font-size: 0.85rem; }
.nav-dropdown-menu a:hover { background: var(--yellow-pale); color: var(--dark); }

/* Mobile submenu */
.mobile-submenu {
  display: flex; flex-direction: column; padding-left: 20px;
  border-left: 2px solid var(--yellow); margin: 4px 0 4px 16px;
}
.mobile-submenu a {
  font-size: 0.9rem !important; padding: 8px 12px !important;
  color: var(--text-muted) !important;
}
.mobile-submenu a i { margin-right: 8px; color: var(--yellow-dark); font-size: 0.8rem; }
.mobile-submenu a:hover { color: var(--dark) !important; }

/* Mobile Toggle */
/* ── GTranslate language switcher — clean compact flag pill (matching design) ── */
.nav-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-lang-switcher .gtranslate_wrapper,
.nav-lang-switcher .gt_switcher {
  width: 44px !important;
  height: 36px !important;
  border-radius: 8px !important;
}
.nav-lang-switcher .gt_switcher {
  font-family: var(--body-font) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  background: #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  overflow: visible !important;
  position: relative;
  transition: all 0.2s ease;
}
.nav-lang-switcher .gt_switcher:hover {
  border-color: rgba(0,0,0,0.18) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Selected (closed state) — flag only, centered, no chevron */
.nav-lang-switcher .gt_switcher .gt_selected {
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.nav-lang-switcher .gt_switcher .gt_selected a {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
}
.nav-lang-switcher .gt_switcher .gt_selected a:after { display: none !important; }
.nav-lang-switcher .gt_switcher .gt_selected a img {
  width: 26px !important;
  height: 19px !important;
  border-radius: 3px !important;
  object-fit: cover !important;
  display: block !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}

/* Dropdown options panel — flags only, no text */
.nav-lang-switcher .gt_switcher .gt_option {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  right: 0 !important;
  left: auto !important;
  width: 56px !important;
  height: auto !important;
  max-height: none !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14), 0 4px 8px rgba(0,0,0,0.06) !important;
  overflow: hidden !important;
  overflow-y: visible !important;
  z-index: 9999 !important;
  padding: 5px !important;
}
.nav-lang-switcher .gt_switcher .gt_option a {
  width: 100% !important;
  height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  border-radius: 6px !important;
  background: transparent !important;
  border: none !important;
  text-decoration: none !important;
  transition: background 0.15s ease !important;
}
.nav-lang-switcher .gt_switcher .gt_option a + a { margin-top: 3px !important; }
.nav-lang-switcher .gt_switcher .gt_option a img {
  width: 26px !important;
  height: 19px !important;
  border-radius: 3px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  display: block !important;
}
.nav-lang-switcher .gt_switcher .gt_option a:hover {
  background: var(--yellow-pale) !important;
}
.nav-lang-switcher .gt_switcher .gt_option a.gt_current {
  background: rgba(255,202,40,0.18) !important;
}

/* Show desktop switcher on desktop, mobile on mobile */
.nav-lang-mobile { display: none !important; }
.nav-lang-desktop { display: inline-flex !important; margin-left: 12px; }

@media (max-width: 768px) {
  .nav-lang-desktop { display: none !important; }
  .nav-lang-mobile { display: inline-flex !important; margin-right: 4px; }

  /* Closed state — compact pill, flag only, no chevron */
  .nav-lang-mobile .gtranslate_wrapper,
  .nav-lang-mobile .gt_switcher {
    width: 38px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }
  .nav-lang-mobile .gt_switcher { border: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
  .nav-lang-mobile .gt_switcher .gt_selected,
  .nav-lang-mobile .gt_switcher .gt_selected a { width: 100% !important; height: 100% !important; }
  .nav-lang-mobile .gt_switcher .gt_selected a {
    padding: 0 !important;
    justify-content: center !important;
  }
  .nav-lang-mobile .gt_switcher .gt_selected a:after { display: none !important; }
  .nav-lang-mobile .gt_switcher .gt_selected a img {
    width: 22px !important;
    height: 16px !important;
    border-radius: 2px !important;
  }

  /* Dropdown — compact, flag-only, right aligned */
  .nav-lang-mobile .gt_switcher .gt_option {
    top: calc(100% + 6px) !important;
    width: 50px !important;
    padding: 5px !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.06) !important;
  }
  .nav-lang-mobile .gt_switcher .gt_option a {
    width: 100% !important;
    height: 30px !important;
    border-radius: 5px !important;
  }
  .nav-lang-mobile .gt_switcher .gt_option a + a { margin-top: 3px !important; }
  .nav-lang-mobile .gt_switcher .gt_option a img {
    width: 24px !important;
    height: 18px !important;
    border-radius: 2px !important;
  }
}

.nav-cta-mobile {
  display: none;
  background: var(--yellow) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 10px 18px !important;
  font-size: 0.85rem !important;
  border-radius: var(--r-full); text-decoration: none;
  box-shadow: var(--shadow-yellow);
  align-items: center; gap: 6px; white-space: nowrap;
}
.nav-cta-mobile i { font-size: 0.8rem; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--white);
  z-index: 200; display: flex; flex-direction: column;
  padding: 60px 32px 40px; gap: 4px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  border-left: 4px solid var(--yellow);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--heading-font); font-size: 1.4rem; font-weight: 600;
  color: var(--text-2); padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--yellow-dark); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--text-muted); font-size: 1.4rem; padding: 8px;
}

/* ── HERO ── */
/* ── HERO — LUXURY ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: url('../images/Hero Image With Herader Section.png') center/cover no-repeat;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(10,18,36,0.92) 0%, rgba(27,42,74,0.78) 50%, rgba(27,42,74,0.62) 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,43,69,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,202,40,0.06) 0%, transparent 50%);
  z-index: 0;
}

.hero-bg { display: none; }
.hero-overlay { display: none; }
.hero-overlay-bottom { display: none; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 580px; gap: 100px; align-items: center;
}

/* Hero Text */
.hero-text { margin-left: 40px; }
.hero-text h1 {
  margin-bottom: 20px; color: #fff;
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  animation: heroFadeDown 0.8s var(--ease) 0.1s both;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 2px 20px rgba(212,43,69,0.4);
}

/* Description */
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.9); line-height: 1.85;
  margin-bottom: 20px; max-width: 500px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  animation: heroFadeDown 0.8s var(--ease) 0.2s both;
}

/* Hero Actions */
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: heroFadeDown 0.8s var(--ease) 0.3s both;
}

/* Glow Button */
.btn-glow {
  position: relative;
  box-shadow: 0 4px 24px rgba(212,43,69,0.35);
  transition: all 0.4s var(--ease);
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212,43,69,0.45), 0 0 60px rgba(212,43,69,0.15);
}

/* Glass Button */
.btn-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.4s var(--ease);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex; gap: 36px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
  animation: heroFadeDown 0.8s var(--ease) 0.4s both;
}
.hero-stat-num {
  font-family: var(--heading-font); font-size: 1.9rem; font-weight: 800;
  color: #fff; line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-stat-num span { color: var(--yellow); }
.hero-stat-text {
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
}

/* Glassmorphism Booking Card */
.hero .qatch-embed-wrap {
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: heroFadeUp 1s var(--ease) 0.3s both;
}

/* Hero Animations */
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BOOKING CARD (Vertical — in Hero) ── */
.booking-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  overflow: hidden;
  position: relative;
}
.booking-card-header {
  background: var(--yellow);
  padding: 22px 28px;
  position: relative;
}
.booking-card-header::after {
  content: '';
  position: absolute; bottom: -12px; left: 28px;
  width: 24px; height: 24px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.booking-card-header h3 {
  font-family: var(--heading-font); font-size: 1.15rem; font-weight: 800;
  color: var(--white); margin-bottom: 3px;
}
.booking-card-header p { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin: 0; }

.booking-form-v {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}

/* Address field */
.bfv-field {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--white); transition: var(--transition);
}
.bfv-field:focus-within { border-color: var(--yellow-dark); background: var(--yellow-pale); }
.bfv-icon {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  background: var(--yellow-pale); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.bfv-input { flex: 1; min-width: 0; }
.bfv-input label {
  display: block; font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 2px;
}
.bfv-input input {
  border: none; background: transparent; width: 100%;
  font-size: 0.92rem; color: var(--text);
}
.bfv-input input::placeholder { color: var(--text-muted); }

/* Divider with swap icon */
.bfv-divider {
  display: flex; align-items: center; gap: 12px; margin: -4px 0;
}
.bfv-divider::before, .bfv-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.bfv-divider-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.7rem;
}

/* Two-column row */
.bfv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.bfv-field-sm { display: flex; flex-direction: column; gap: 5px; }
.bfv-field-sm label {
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
}
.bfv-field-sm input,
.bfv-field-sm select {
  padding: 10px 12px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 0.88rem; color: var(--text);
  background: var(--white); transition: var(--transition); width: 100%;
}
.bfv-field-sm input:focus, .bfv-field-sm select:focus {
  border-color: var(--yellow-dark); background: var(--yellow-pale);
}
.bfv-time { display: flex; align-items: center; gap: 4px; }
.bfv-time select {
  flex: 1; padding: 10px 6px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 0.88rem; color: var(--text);
  background: var(--white);
}
.bfv-time span { color: var(--text-muted); font-weight: 700; font-size: 1.1rem; }

/* Stepper in form */
.booking-stepper {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden;
}
.stepper-btn {
  width: 34px; height: 38px; background: var(--surface);
  font-size: 1rem; font-weight: 700; color: var(--text-muted);
  border: none; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stepper-btn:hover { background: var(--yellow-pale); color: var(--yellow-dark); }
.stepper-val {
  flex: 1; height: 38px; font-family: var(--heading-font);
  font-size: 0.9rem; font-weight: 700; color: var(--dark);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}

/* Retour checkbox */
.bfv-retour {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-2); cursor: pointer;
  padding: 4px 0;
}
.bfv-retour input { width: 16px; height: 16px; accent-color: var(--yellow-dark); cursor: pointer; }

/* Return date (hidden until retour checked) */
.bfv-retour-date { display: none; padding-top: 4px; }
.bfv-retour-date.visible { display: block; }

/* Calculate button */
.btn-calculate {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--white);
  font-family: var(--heading-font); font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-yellow); width: 100%; margin-top: 4px;
}
.btn-calculate:hover { background: var(--yellow-dark); color: var(--white); transform: translateY(-2px); }
.btn-calculate i { font-size: 0.9rem; }

/* Phone link below form */
.bfv-phone {
  text-align: center; font-size: 0.82rem; color: var(--text-muted);
  padding-top: 10px; border-top: 1px solid var(--border);
}
.bfv-phone a {
  color: var(--dark); font-weight: 700;
  font-family: var(--heading-font); font-size: 0.95rem;
}
.bfv-phone a:hover { color: var(--yellow-dark); }

/* ── QATCH BOOKING EMBED ── */
.qatch-embed-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  background: var(--white);
  height: 650px;
  position: relative;
  margin-left: 90px;
}
.qatch-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--surface); padding: 18px 0;
  border-top: 3px solid var(--yellow); border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 28px; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--yellow-glow); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; flex-shrink: 0;
}
.trust-item span { font-family: var(--heading-font); font-size: 0.83rem; font-weight: 600; color: var(--text-2); }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow-dark), var(--yellow));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { border-color: rgba(196,30,58,0.3); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--yellow-pale); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--yellow); color: var(--white); }
a.service-card { text-decoration: none; color: inherit; display: block; }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.93rem; line-height: 1.7; }

/* ── SPOTLIGHT FLEET CAROUSEL ── */
.spotlight-fleet {
  background: #0b1120; padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.spotlight-fleet::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,202,40,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.spotlight-header { text-align: center; margin-bottom: 48px; position: relative; }
.spotlight-header .sh-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: #ffca28; background: rgba(255,202,40,0.12);
  border: 1px solid rgba(255,202,40,0.35);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.spotlight-header h2 { color: #fff; font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.spotlight-header p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 500px; margin: 0 auto; }

.spotlight-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; padding: 0 16px; }
.spotlight-tab {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); padding: 12px 24px; border-radius: 50px;
  cursor: pointer; font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.spotlight-tab:hover { background: rgba(255,202,40,0.08); border-color: rgba(255,202,40,0.2); color: rgba(255,255,255,0.8); }
.spotlight-tab.active { background: rgba(255,202,40,0.12); border-color: rgba(255,202,40,0.4); color: #ffca28; }
.spotlight-tab i { font-size: 0.9rem; }

.spotlight-content {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.spotlight-image-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 420px; background: #0d1528;
}
.spotlight-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease, transform 0.5s ease; }
.spotlight-class-label {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: rgba(255,202,40,0.2); border: 1px solid rgba(255,202,40,0.5);
  color: #ffca28; padding: 8px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.spotlight-thumbs { display: flex; gap: 8px; position: absolute; bottom: 16px; left: 16px; right: 16px; }
.spotlight-thumb {
  width: 64px; height: 44px; border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; opacity: 0.5; transition: all 0.3s ease;
}
.spotlight-thumb.active { border-color: #ffca28; opacity: 1; }
.spotlight-thumb img { width: 100%; height: 100%; object-fit: cover; }

.spotlight-details { padding: 8px 0; }
.spotlight-vehicle-name { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.spotlight-vehicle-sub { color: rgba(255,202,40,0.7); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.spotlight-desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.spotlight-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 28px; }
.spotlight-feature { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.spotlight-feature i { color: #ffca28; font-size: 0.7rem; flex-shrink: 0; }

.spotlight-pricing {
  display: flex; gap: 24px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.spotlight-price-item { display: flex; flex-direction: column; }
.spotlight-price-label { color: rgba(255,255,255,0.35); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.spotlight-price-value { color: #fff; font-size: 1.3rem; font-weight: 800; }
.spotlight-price-value span { color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 400; }

.spotlight-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.spotlight-cta-primary {
  background: linear-gradient(135deg, #ffca28, #f5a623); color: #0b1120;
  padding: 14px 32px; border-radius: 50px; font-size: 0.9rem; font-weight: 700;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; border: none;
}
.spotlight-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,202,40,0.3); }
.spotlight-cta-ghost {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); padding: 14px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease;
}
.spotlight-cta-ghost:hover { border-color: rgba(255,202,40,0.4); color: #ffca28; }

@media (max-width: 900px) {
  .spotlight-fleet { padding: 50px 0 40px; }
  .spotlight-header { margin-bottom: 32px; }
  .spotlight-header h2 { font-size: 1.8rem; }
  .spotlight-tabs { display: grid; grid-template-columns: 1fr 1fr; max-width: 100%; gap: 8px; margin-bottom: 28px; padding: 0 12px; }
  .spotlight-tab { padding: 10px 8px; font-size: 0.72rem; gap: 5px; white-space: nowrap; }
  .spotlight-tab i { font-size: 0.72rem; }
  .spotlight-content { grid-template-columns: 1fr; gap: 24px; padding: 0 12px; }
  .spotlight-image-wrap { height: 260px; }
  .spotlight-class-label { padding: 5px 12px; font-size: 0.6rem; top: 12px; left: 12px; }
  .spotlight-thumbs { bottom: 10px; left: 10px; right: 10px; gap: 6px; }
  .spotlight-thumb { width: 50px; height: 36px; }
  .spotlight-vehicle-name { font-size: 1.3rem; }
  .spotlight-vehicle-sub { font-size: 0.75rem; margin-bottom: 14px; }
  .spotlight-desc { font-size: 0.85rem; margin-bottom: 20px; }
  .spotlight-features { grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 20px; }
  .spotlight-feature { font-size: 0.78rem; gap: 7px; }
  .spotlight-pricing { gap: 20px; padding: 16px 0; margin-bottom: 20px; }
  .spotlight-price-value { font-size: 1.1rem; }
  .spotlight-cta-primary { padding: 12px 24px; font-size: 0.82rem; }
  .spotlight-cta-ghost { padding: 12px 24px; font-size: 0.82rem; }
}

/* ── ABOUT ── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-layout .qatch-embed-wrap {
  margin-left: 0;
  width: 580px;
  max-width: 100%;
  height: 650px;
}
.about-layout .qatch-embed-wrap .qatch-iframe {
  height: 650px;
  width: 580px;
  max-width: 100%;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--r-lg);
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--yellow); border-radius: var(--r-lg);
  padding: 20px 24px; box-shadow: var(--shadow-yellow);
  display: flex; align-items: center; gap: 16px;
}
.about-badge-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.about-badge-text strong { display: block; font-family: var(--heading-font); font-weight: 700; color: var(--white); font-size: 0.95rem; }
.about-badge-text span { font-size: 0.8rem; color: rgba(255,255,255,0.8); }

.about-content .sh-label { display: inline-flex; }
.about-content h2 { margin-bottom: 16px; }
.about-content > p { margin-bottom: 36px; font-size: 1.05rem; }

.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover { border-color: rgba(224,137,0,0.35); background: var(--yellow-pale); }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--yellow-pale); color: var(--yellow-dark);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.about-feature:hover .about-feature-icon { background: var(--yellow); color: var(--white); }
.about-feature h4 { margin-bottom: 4px; font-size: 0.95rem; }
.about-feature p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ── AREA GRID ── */
.area-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 48px;
}
.area-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 24px 20px;
  text-align: center; transition: var(--transition);
}
.area-card:hover { border-color: rgba(224,137,0,0.4); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-card i { color: var(--yellow-dark); font-size: 1.4rem; margin-bottom: 12px; display: block; }
.area-card h4 { font-size: 1rem; margin-bottom: 4px; }
.area-card p { font-size: 0.83rem; color: var(--text-muted); }

.area-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.map-wrapper {
  border-radius: var(--r-md); overflow: hidden;
  border: 1.5px solid var(--border); height: 280px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.area-info h3 { margin-bottom: 12px; }
.area-info p { margin-bottom: 24px; font-size: 0.95rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: #FFF0F2;
  position: relative; overflow: hidden;
  padding: clamp(80px, 10vw, 120px) 0; text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.12); border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.04); border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--dark); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(26,26,46,0.7); font-size: 1.05rem; margin-bottom: 40px; }
.cta-banner .btn-outline-white {
  background: transparent; color: var(--dark);
  border: 2px solid rgba(26,26,46,0.25);
}
.cta-banner .btn-outline-white:hover {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone {
  display: block; margin-top: 28px;
  font-family: var(--heading-font); font-size: 2.5rem; font-weight: 800;
  color: var(--dark); letter-spacing: -0.02em;
}
.cta-phone:hover { color: var(--dark-2); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  margin-bottom: 10px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(224,137,0,0.4); box-shadow: 0 4px 20px rgba(224,137,0,0.08); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; gap: 16px; background: transparent;
}
.faq-q span:first-child { font-family: var(--heading-font); font-weight: 600; font-size: 0.97rem; color: var(--text); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--yellow-dark); font-weight: 700;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--yellow); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px;
  padding-bottom: 60px; border-bottom: 1px solid var(--border-dark);
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-inv-3); line-height: 1.8; max-width: 280px; }
.footer h4 { font-family: var(--heading-font); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-inv-2); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-inv-3); transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--yellow); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item div, .footer-contact-item span { font-size: 0.88rem; color: var(--text-inv-3); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 24px 0; text-align: center;
  font-size: 0.82rem; color: var(--text-inv-3);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--surface) 0%, var(--yellow-pale) 100%);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,202,40,0.15) 0%, transparent 60%);
}
.page-header-content { position: relative; z-index: 1; text-align: center; }
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 16px; color: var(--dark); }
.page-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.83rem; color: var(--text-muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--yellow-dark); }
.breadcrumb i { font-size: 0.6rem; }

/* ── FORM ELEMENTS (subpages) ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow-dark); box-shadow: 0 0 0 3px var(--yellow-glow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  background: var(--yellow); color: var(--white);
  font-family: var(--heading-font); font-weight: 700; font-size: 1rem;
  padding: 15px 36px; border-radius: var(--r-full); border: none; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-yellow);
}
.form-submit:hover { background: var(--yellow-dark); color: var(--white); transform: translateY(-2px); }
.form-success {
  background: #D1FAE5; color: #065F46;
  border: 1px solid #A7F3D0; border-radius: var(--r-sm);
  padding: 14px 18px; margin-top: 16px; font-size: 0.9rem; font-weight: 500;
}

/* ── PRICING ── */
.pricing-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.pricing-card {
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 32px; background: var(--white);
  transition: var(--transition); position: relative;
}
.pricing-card.featured {
  border-color: var(--yellow-dark);
  box-shadow: var(--shadow-yellow), var(--shadow-lg);
}
.pricing-card.featured::before {
  content: 'Meest Gekozen';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--white);
  font-family: var(--heading-font); font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full); white-space: nowrap;
  letter-spacing: 0.05em;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-icon { font-size: 2rem; color: var(--yellow-dark); margin-bottom: 16px; }
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table tr { border-bottom: 1px solid var(--border); }
.pricing-table tr:last-child { border-bottom: none; }
.pricing-table td { padding: 10px 0; font-size: 0.88rem; }
.pricing-table td:first-child { color: var(--text-muted); }
.pricing-table td:last-child { text-align: right; font-weight: 600; color: var(--text); }
.pricing-card .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ── JOB CARDS ── */
.job-card {
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 36px; background: var(--white);
  margin-bottom: 20px; transition: var(--transition);
  display: flex; align-items: flex-start; gap: 24px;
}
.job-card:hover { border-color: rgba(224,137,0,0.35); box-shadow: var(--shadow-md); }
.job-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--yellow-pale); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.job-body { flex: 1; }
.job-title { font-family: var(--heading-font); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.job-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-full);
  background: #D1FAE5; color: #065F46; margin-bottom: 12px;
}
.job-desc { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 16px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.job-tag { background: var(--surface); color: var(--text-2); font-size: 0.8rem; padding: 4px 12px; border-radius: var(--r-full); border: 1px solid var(--border); }
.job-list { list-style: none; }
.job-list li { font-size: 0.88rem; color: var(--text-muted); padding: 4px 0; padding-left: 18px; position: relative; }
.job-list li::before { content: '→'; position: absolute; left: 0; color: var(--yellow-dark); font-weight: 700; }

/* ── SURVEY ── */
.survey-group { margin-bottom: 32px; }
.survey-num { font-family: var(--heading-font); font-size: 0.78rem; font-weight: 700; color: var(--yellow-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.survey-q { font-family: var(--heading-font); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; cursor: pointer; color: var(--text-2); padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--r-full); transition: var(--transition); }
.radio-group label:hover { border-color: var(--yellow-dark); color: var(--yellow-dark); }
.radio-group input[type=radio]:checked + label { background: var(--yellow); color: var(--white); border-color: var(--yellow); }

/* ── CONTACT PAGE ── */
.contact-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; transition: var(--transition);
}
.contact-card:hover { border-color: rgba(196,30,58,0.3); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--yellow-pale); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.88rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--yellow-dark); }
.contact-form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

/* ── SERVICES PAGE ── */
.service-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 80px;
}
.service-split.reverse { direction: rtl; }
.service-split.reverse > * { direction: ltr; }
.service-split-img img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--r-lg);
}
.service-split-content .sh-label { display: inline-flex; }
.service-split-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.service-split-content > p { margin-bottom: 24px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--text-2); }
.service-features li::before { content: '✓'; color: var(--yellow-dark); font-weight: 700; }
.taxi-img-strip { display: flex; gap: 16px; margin: 60px 0; }
.taxi-img-strip img { flex: 1; height: 220px; object-fit: cover; border-radius: var(--r-md); min-width: 0; }

/* ── QUOTE PAGE ── */
.quote-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.quote-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.quote-sidebar-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; transition: var(--transition);
}
.quote-sidebar-card.highlight { background: var(--yellow); border-color: var(--yellow-dark); }
.quote-sidebar-card.highlight h4, .quote-sidebar-card.highlight p { color: var(--white); }
.quote-sidebar-card h4 { font-size: 1rem; margin-bottom: 8px; }
.quote-sidebar-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.quote-sidebar-card .big-phone {
  font-family: var(--heading-font); font-size: 1.6rem; font-weight: 800;
  color: var(--dark); display: block; margin-bottom: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { margin-left: 0; text-align: center; }
  .hero-text h1 { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .qatch-embed-wrap { margin-left: auto !important; margin-right: auto !important; width: 380px; max-width: 100%; order: -1; height: 637px; display: flex; justify-content: center; align-items: center; }
  .hero-text { order: 1; }
  .about-layout { gap: 48px; }
  .about-layout .qatch-embed-wrap { height: 637px; min-height: 637px; order: -1; width: 380px; max-width: 100%; margin-left: auto !important; margin-right: auto !important; display: flex; justify-content: center; align-items: center; }
  .about-layout .qatch-embed-wrap .qatch-iframe { height: 637px; width: 380px; max-width: 100%; }
  .fleet-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fleet-img:first-child { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --sec-py: 60px; }
  .container { padding: 0 20px; }
  .nav-links, .nav-phone { display: none; }
  .nav-cta-mobile { display: inline-flex; }
  .mobile-toggle { display: flex; }
  .nav-inner { gap: 10px; }
  .hero { padding: 80px 0 40px; }
  .hero-text { margin-left: 0; text-align: center; }
  .hero-text h1 { text-align: center; font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { display: none; }
  .hero .container { padding: 0 16px; max-width: 100%; box-sizing: border-box; }
  .qatch-embed-wrap { margin: 0 auto !important; width: 380px; max-width: calc(100vw - 32px); height: 637px; order: -1; border-radius: 16px; overflow: hidden; }
  .qatch-iframe { height: 637px; width: 100%; display: block; }
  .hero-text { order: 1; }
  .about-layout { grid-template-columns: 1fr; }
  section:has(.about-layout) > .container { padding: 0 16px; max-width: 100%; }
  .about-layout .qatch-embed-wrap { width: 380px; max-width: calc(100vw - 32px); height: 637px; min-height: 637px; margin: 0 !important; order: -1; border-radius: 12px; overflow: hidden; }
  .about-layout .qatch-embed-wrap .qatch-iframe { height: 637px; width: 100%; display: block; }
  .about-layout .about-content { order: 1; }
  .hero-stats { display: none; }
  .trust-strip { padding: 12px 0; }
  .trust-strip-inner { flex-wrap: wrap; justify-content: center; gap: 0; }
  .trust-item { width: 50%; padding: 10px 12px; gap: 8px; border-right: none; border-bottom: 1px solid var(--border); box-sizing: border-box; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .trust-icon { width: 28px; height: 28px; min-width: 28px; font-size: 0.7rem; }
  .trust-item span { font-size: 0.68rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -20px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .area-bottom { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
  .fleet-img:first-child { grid-column: span 2; grid-row: span 1; }
  .fleet-img { min-height: 140px; border-radius: var(--r-md); }
  .fleet-img:first-child { min-height: 180px; }
  .fleet-img img { border-radius: var(--r-md); }
  .fleet-img-overlay { padding: 10px; justify-content: center; align-items: flex-end; background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 70%); }
  .fleet-img-label { font-size: 0.72rem; padding: 4px 10px; }
  .fleet-header { margin-bottom: 30px; }
  .fleet-header h2 { font-size: 1.3rem; }
  .fleet-header p { font-size: 0.85rem; }
  .fleet-cta { flex-direction: column; gap: 16px; text-align: center; padding: 24px 20px; margin-top: 20px; align-items: center; }
  .fleet-cta-buttons { justify-content: center; }
  .fleet-cta-text h3 { font-size: 1rem; }
  .fleet-cta-text p { font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 12px 14px; }
  .form-group label { font-size: 0.78rem; }
  .form-group { margin-bottom: 16px; }
  .form-submit { width: 100%; justify-content: center; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-cards-grid .area-card { padding: 20px !important; }
  .contact-cards-grid .area-card h4 { font-size: 0.9rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-split { grid-template-columns: 1fr; gap: 40px; }
  .service-split.reverse { direction: ltr; }
  .taxi-img-strip { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .bfv-row { grid-template-columns: 1fr 1fr; }
  .page-header h1 { font-size: 1.8rem; }
  .page-header p { font-size: 0.95rem; }
  .cta-banner h2 { font-size: 1.6rem; }
  .faq-q span { font-size: 0.95rem; }
  .sh h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .cta-phone { font-size: 1.8rem; }
  .area-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }
  .service-card .service-icon { margin-bottom: 16px; }
  .service-card h3 { font-size: 1rem; margin-bottom: 8px; }
  .service-card p { font-size: 0.88rem; line-height: 1.6; }
  .bfv-row { grid-template-columns: 1fr; }
  .qatch-embed-wrap { height: 637px; width: 380px; max-width: calc(100vw - 32px); margin: 0 auto !important; }
  .qatch-iframe { height: 637px; width: 100%; display: block; }
  .about-layout .qatch-embed-wrap { height: 637px; width: 380px; max-width: calc(100vw - 32px); margin: 0 auto !important; }
  .about-layout .qatch-embed-wrap .qatch-iframe { height: 637px; width: 100%; display: block; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .page-header h1 { font-size: 1.5rem; }
  .sh h2 { font-size: 1.3rem; }
  .about-content h2 { font-size: 1.3rem; }
  .cta-banner h2 { font-size: 1.4rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .faq-item { padding: 0; }
}
