/* ============================================================
   TRANSFER BY CAB — Global Stylesheet
   Luxury Minimalist | French Riviera
   ============================================================ */

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

/* ── Variables ── */
:root {
  --black:   #ffffff;
  --dark:    #f5f5f3;
  --gold:    #b8943f;
  --gold-lt: #d4b86a;
  --cream:   #1a1a1a;
  --white:   #ffffff;
  --gray:    #666;
  --border:  rgba(180,150,80,.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --transition: .4s cubic-bezier(.25,.46,.45,.94);
  --transition-slow: .8s cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .4em;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}
nav.scrolled {
  background: rgba(11,11,11,.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .15em;
  color: var(--gold);
  font-weight: 400;
}
.nav-logo span { font-style: italic; font-weight: 300; }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .7;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.lang-switcher {
  position: relative;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lang-current {
  display: flex; align-items: center; gap: .4rem;
  cursor: pointer;
  color: var(--gold);
  padding: .4rem .8rem;
  border: 1px solid var(--border);
}
.lang-current::after { content: '▾'; font-size: .6rem; }
.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 4px); right: 0;
  background: var(--dark);
  border: 1px solid var(--border);
  min-width: 130px;
  padding: .5rem 0;
}
.lang-dropdown.open { display: block; }
.lang-dropdown li { padding: .4rem 1rem; cursor: pointer; opacity: .7; transition: opacity .2s; }
.lang-dropdown li:hover { opacity: 1; color: var(--gold); }

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 60px;
  background: rgba(11,11,11,.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .1em;
  opacity: .8;
}
.mobile-menu a:hover { opacity: 1; color: var(--gold); }

/* ── Hero ── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0b0b0b 0%, #1a1208 40%, #0b0b0b 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201,169,110,.08) 0%, transparent 70%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  left: 50%; top: 55%;
  animation: expandRing 4s ease-out infinite;
}
.hero-lines::before { width: 600px; height: 600px; animation-delay: 0s; }
.hero-lines::after  { width: 900px; height: 900px; animation-delay: 1s; }
@keyframes expandRing {
  0%  { transform: translate(-50%,-50%) scale(.8); opacity: .6; }
  100%{ transform: translate(-50%,-50%) scale(1.2); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeUp .8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pretitle {
  font-size: .65rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .6s ease .2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .6s ease .4s both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .6s ease .6s both;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s ease .8s both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2.2rem;
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.btn:hover::after { transform: translateX(0); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Section base ── */
section { padding: 8rem 4rem; }
.section-label {
  font-size: .6rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: .85rem;
  opacity: .55;
  max-width: 520px;
  line-height: 1.8;
}
.divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 5rem;
}
.service-card {
  background: var(--black);
  padding: 3.5rem 2.5rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.service-card:hover { background: #111; }
.service-card:hover::before { width: 100%; }
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  position: absolute;
  top: 1.5rem; right: 2rem;
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(201,169,110,.15); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.service-card p { font-size: .8rem; opacity: .55; line-height: 1.9; }

/* ── Fleet preview ── */
.fleet-section { background: var(--dark); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.fleet-card {
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.fleet-img {
  height: 220px;
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.fleet-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,11,11,.8));
}
.fleet-info { padding: 1.8rem; }
.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: .5rem;
}
.fleet-info p { font-size: .75rem; opacity: .5; }
.fleet-badge {
  display: inline-block;
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: .3rem .7rem;
  margin-top: .8rem;
}

/* ── Destinations ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}
.dest-item {
  background: var(--black);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  gap: .5rem;
  transition: background var(--transition);
  cursor: pointer;
  position: relative;
}
.dest-item::after {
  content: '→';
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%) translateX(10px);
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.dest-item:hover { background: #111; }
.dest-item:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.dest-item a { display: flex; flex-direction: column; gap: .4rem; }
.dest-region {
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}
.dest-country { font-size: .7rem; opacity: .4; }

/* ── Why us ── */
.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.whyus-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.whyus-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.whyus-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.whyus-text h4 {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.whyus-text p { font-size: .78rem; opacity: .5; }
.whyus-visual {
  border: 1px solid var(--border);
  padding: 4rem 3rem;
  position: relative;
}
.whyus-visual::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--gold);
  opacity: .05;
  position: absolute;
  top: -2rem; left: 1rem;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.testimonial-author { font-size: .7rem; letter-spacing: .15em; opacity: .5; text-transform: uppercase; }

/* ── Palaces ── */
.palaces-section { background: var(--dark); }
.palaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.palace-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.palace-card:hover { border-color: var(--gold); }
.palace-city {
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.palace-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .8rem;
}
.palace-card p { font-size: .75rem; opacity: .5; line-height: 1.8; }
.palace-stars { color: var(--gold); font-size: .7rem; margin-top: 1rem; letter-spacing: .2em; }

/* ── Booking Banner ── */
.booking-banner {
  background: var(--gold);
  color: var(--black);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(0,0,0,.03) 40px, rgba(0,0,0,.03) 80px
  );
}
.booking-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  position: relative;
  margin-bottom: 1rem;
}
.booking-banner p {
  font-size: .85rem;
  letter-spacing: .1em;
  opacity: .7;
  position: relative;
  margin-bottom: 2.5rem;
}
.booking-banner .btn-outline {
  border-color: var(--black);
  color: var(--black);
}
.booking-banner .btn-outline:hover { background: var(--black); color: var(--gold); }

/* ── Forms ── */
.form-section { max-width: 860px; margin: 0 auto; padding: 8rem 2rem; }
.form-section .section-title { text-align: center; }
.form-section .divider { margin: 2rem auto; }
.form-group { margin-bottom: 2rem; }
.form-group label {
  display: block;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: .8rem 0;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-submit { text-align: center; margin-top: 3rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--gold);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── SEO Destination page ── */
.dest-hero {
  height: 60vh; min-height: 400px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 4rem;
  overflow: hidden;
  margin-top: 80px;
}
.dest-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0b07 0%, #1a1208 60%, #0b0b0b 100%);
}
.dest-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,.9) 0%, transparent 60%);
}
.dest-hero-content { position: relative; z-index: 1; }
.dest-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem,7vw,6rem);
  font-weight: 300;
  line-height: 1;
}
.dest-hero-content h1 em { font-style: italic; color: var(--gold); }
.dest-hero-content p {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .5;
  margin-top: .8rem;
}
.dest-content { max-width: 900px; margin: 0 auto; padding: 6rem 2rem; }
.dest-content h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  margin: 3rem 0 1rem;
}
.dest-content h2 em { font-style: italic; color: var(--gold); }
.dest-content p { font-size: .88rem; opacity: .65; line-height: 2; margin-bottom: 1rem; }
.dest-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.dest-content ul li { font-size: .85rem; opacity: .6; line-height: 2; }
.dest-content ul li::before { content: '— '; color: var(--gold); }

/* ── Footer ── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 5rem 4rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .78rem; opacity: .4; max-width: 260px; line-height: 1.9; }
.footer-col h4 {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .78rem; opacity: .4; transition: opacity .2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .65rem; letter-spacing: .1em; opacity: .3;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RTL support (Arabic) ── */
[dir="rtl"] {
  font-family: 'Noto Sans Arabic', var(--font-body), sans-serif;
}
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  section { padding: 6rem 2rem; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .whyus-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .fleet-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dest-hero { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}


/* ================================================
   BACKGROUND IMAGES — Luxury Mercedes S-Class
   Images assombries avec overlay elegant
   ================================================ */

/* Section Hero */
.hero {
    position: relative;
    background-image: url('../images/S0-nouvelle-mercedes-classe-s-la-planche-de-bord-en-partie-devoilee-639597.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,11,11,0.72) 0%, rgba(22,22,22,0.52) 50%, rgba(11,11,11,0.82) 100%);
    z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Section Services */
#services {
    position: relative;
    background-image: url('../images/S7-nouvelle-mercedes-classe-s-la-planche-de-bord-en-partie-devoilee-184880.jpg');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
}
#services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,11,0.88) 0%, rgba(22,22,22,0.80) 100%);
    z-index: 0;
}
#services > * { position: relative; z-index: 1; }

/* Section Flotte */
#flotte {
    position: relative;
    background-image: url('../images/S0-nouvelle-mercedes-classe-s-la-planche-de-bord-en-partie-devoilee-639596.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}
#flotte::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11,11,11,0.87);
    z-index: 0;
}
#flotte > * { position: relative; z-index: 1; }

/* Section Destinations */
#destinations {
    position: relative;
    background-image: url('../images/S8-nouvelle-mercedes-classe-s-la-planche-de-bord-en-partie-devoilee-639599.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
#destinations::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,11,11,0.80) 0%, rgba(11,11,11,0.88) 100%);
    z-index: 0;
}
#destinations > * { position: relative; z-index: 1; }

/* Lisibilite renforcee */
.hero h1, .hero h2, .hero p, .hero .hero-pretitle,
#services h2, #services h3, #services p,
#flotte h2, #flotte h3, #flotte p,
#destinations h2, #destinations h3, #destinations p {
    text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

/* Gold accent */
.hero .hero-title,
#services .section-title,
#flotte .section-title,
#destinations .section-title {
    color: var(--gold);
}

/* Boutons hero */
.hero .btn-gold {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}
.hero .btn-outline {
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,169,110,0.6);
    background: rgba(11,11,11,0.35);
    color: var(--cream);
}
.hero .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ================================================
   TRANSFER BY CAB — PATCH v2 (UX + Conversion)
   ================================================ */

/* -- Destinations Dropdown (Desktop) -- */
.nav-links .has-dropdown {
    position: relative;
}
.nav-links .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: .3rem;
}
.nav-links .has-dropdown > a::after {
    content: '\25BE';
    font-size: .5rem;
    opacity: .5;
    transition: transform .3s ease;
}
.nav-links .has-dropdown:hover > a::after,
.nav-links .has-dropdown.open > a::after {
    transform: rotate(180deg);
}
.dest-mega {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16,16,16,.97);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    padding: 2rem 2.5rem;
    min-width: 560px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    transform: translateX(-50%) translateY(6px);
}
.dest-mega::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.nav-links .has-dropdown:hover .dest-mega,
.nav-links .has-dropdown.open .dest-mega {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dest-mega-col h5 {
    font-size: .55rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}
.dest-mega-col ul {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.dest-mega-col ul li a {
    font-size: .72rem;
    letter-spacing: .08em;
    padding: .3rem 0;
    display: block;
    opacity: .6 !important;
    transition: opacity .2s, color .2s, padding-left .2s;
}
.dest-mega-col ul li a:hover {
    opacity: 1 !important;
    color: var(--gold);
    padding-left: .3rem;
}

/* -- WhatsApp Premium Pill -- */
#wa-pill {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(16,16,16,.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: .5rem 1.2rem .5rem .5rem;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease, border-color .3s ease;
    cursor: pointer;
}
#wa-pill.visible {
    opacity: 1;
    transform: translateY(0);
}
#wa-pill:hover {
    border-color: var(--gold);
}
#wa-pill .wa-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(201,169,110,.3);
    flex-shrink: 0;
    background: #25D366;
}
#wa-pill .wa-avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
#wa-pill .wa-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
#wa-pill .wa-label {
    font-size: .55rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}
#wa-pill .wa-action {
    font-family: var(--font-display);
    font-size: .85rem;
    color: var(--cream);
    font-weight: 300;
    white-space: nowrap;
}
@media (max-width: 768px) {
    #wa-pill {
          bottom: 1rem;
          right: 1rem;
          padding: .4rem 1rem .4rem .4rem;
          gap: .6rem;
  }
    #wa-pill .wa-avatar,
    #wa-pill .wa-avatar-fallback {
          width: 38px;
          height: 38px;
  }
  #wa-pill .wa-action { font-size: .75rem; }
  #wa-pill .wa-label { font-size: .5rem; }
}
@media (max-width: 400px) {
  #wa-pill .wa-text { display: none; }
    #wa-pill {
          padding: .5rem;
          border-radius: 50%;
          width: 54px;
          height: 54px;
          justify-content: center;
  }
}

/* -- Google Reviews Section -- */
.reviews-section {
    padding: 8rem 4rem;
    position: relative;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.review-card {
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    transition: border-color var(--transition);
}
.review-card:hover {
    border-color: var(--gold);
}
.review-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    opacity: .08;
    position: absolute;
    top: .5rem;
    left: 1rem;
    line-height: 1;
}
.review-stars {
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: .15em;
    margin-bottom: 1.2rem;
}
.review-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    opacity: .75;
    margin-bottom: 1.5rem;
    min-height: 80px;
}
.review-author {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .4;
}
.review-date {
    font-size: .6rem;
    opacity: .3;
    margin-top: .3rem;
}
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}
.reviews-cta a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .7;
    transition: opacity .3s;
}
.reviews-cta a:hover {
    opacity: 1;
}
.reviews-cta a::after {
    content: '\2192';
    transition: transform .3s;
}
.reviews-cta a:hover::after {
    transform: translateX(4px);
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section { padding: 6rem 2rem; }
}

/* -- Mobile Destinations Accordion -- */
.mobile-dest-section {
    width: 100%;
    padding: 0 2rem;
}
.mobile-dest-toggle {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: .1em;
    opacity: .8;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--cream);
    background: none;
    border: none;
    padding: 0;
    font-weight: 300;
}
.mobile-dest-toggle::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform .3s;
}
.mobile-dest-toggle.open::after {
    transform: rotate(45deg);
}
.mobile-dest-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.mobile-dest-accordion.open {
    max-height: 600px;
}
.mobile-dest-group {
    margin-top: 1rem;
}
.mobile-dest-group h6 {
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
    font-weight: 500;
}
.mobile-dest-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem .8rem;
    margin-bottom: .8rem;
}
.mobile-dest-group ul li a {
    font-size: .85rem;
    opacity: .6;
}
.mobile-dest-group ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

/* -- Footer address -- */
.footer-address {
    font-size: .75rem;
    opacity: .4;
    line-height: 1.7;
    margin-top: .3rem;
}
/* V4 */
html{font-size:18px!important}body{line-height:1.9!important;-webkit-font-smoothing:antialiased}.service-card p,.fleet-info p,.review-text,.section-subtitle,.palaces-section p,p{opacity:.82!important;font-size:1rem!important;line-height:1.85!important}.service-card h3,.fleet-card h3{font-size:1.15rem!important;letter-spacing:.06em!important;opacity:1!important}.section-label{font-size:.72rem!important;letter-spacing:.25em!important;opacity:.75!important}.section-title{font-size:3rem!important;line-height:1.15!important}.section-subtitle{font-size:1.05rem!important;max-width:640px;margin-left:auto;margin-right:auto}.service-num{opacity:.45!important;font-size:.7rem!important}.review-card{font-size:.95rem!important}.review-text{font-size:.95rem!important;line-height:1.8!important}.review-author{font-size:.7rem!important;opacity:.5!important}footer p,footer a,footer li{font-size:.88rem!important;opacity:.7!important;line-height:1.8!important}footer h4{font-size:.75rem!important;opacity:.9!important}.footer-address{font-size:.82rem!important;opacity:.55!important}nav a{font-size:.78rem!important;letter-spacing:.13em!important}.booking-banner h2{font-size:2.4rem!important}.booking-banner p{font-size:1rem!important;opacity:.7!important}#wa-pill{padding:6px 20px 6px 6px!important;border-radius:50px!important;gap:12px!important}.wa-avatar{width:54px!important;height:54px!important;border-radius:50%!important;object-fit:cover!important}.wa-label{font-size:.82rem!important;display:inline-flex!important;align-items:center!important;gap:6px!important}.wa-action{font-size:.78rem!important;opacity:.85!important;line-height:1.4!important}.footer-social{display:flex!important;gap:12px!important;margin-top:12px!important}.footer-social a{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:40px!important;height:40px!important;border:1px solid rgba(201,169,110,.25)!important;border-radius:50%!important;opacity:1!important}.footer-social a:hover{border-color:var(--gold)!important;background:rgba(201,169,110,.1)!important}.footer-social a svg{width:18px!important;height:18px!important;fill:var(--gold)!important}
@media(max-width:1024px){.hero,section,.fleet-section,.palaces-section,.reviews-section,[class*="section"]{background-attachment:scroll!important}}
@media(max-width:768px){.hero{background-size:cover!important;background-position:center!important;background-attachment:scroll!important;min-height:80vh!important}.section-title{font-size:2rem!important;line-height:1.2!important}.section-subtitle{font-size:.92rem!important}.services-grid,.service-grid{grid-template-columns:1fr!important;gap:1.5rem!important}.service-card{padding:1.8rem!important}.fleet-grid{grid-template-columns:1fr!important;gap:1.5rem!important}.fleet-card{padding:1.2rem!important}.fleet-img img,.fleet-card img{width:100%!important;height:auto!important;max-height:220px!important;object-fit:contain!important}.reviews-grid{grid-template-columns:1fr!important;gap:1.2rem!important}.palaces-grid{grid-template-columns:repeat(2,1fr)!important;gap:1rem!important}.booking-banner{padding:3rem 1.5rem!important;text-align:center!important}.booking-banner h2{font-size:1.8rem!important}.booking-banner .btn{display:block!important;width:100%!important;margin:.5rem 0!important;text-align:center!important}.hero-cta,.hero .cta-group{flex-direction:column!important;gap:.8rem!important;align-items:stretch!important}.hero-cta .btn,.hero .cta-group .btn{display:block!important;width:100%!important;text-align:center!important}.footer-grid{grid-template-columns:1fr!important;gap:2rem!important}nav{padding:.8rem 1.2rem!important}section{padding-left:1.5rem!important;padding-right:1.5rem!important}#wa-pill{max-width:calc(100vw - 2rem)!important;right:1rem!important;bottom:1rem!important}.form-grid{grid-template-columns:1fr!important}input,select,textarea{font-size:16px!important;padding:14px 16px!important;border-radius:8px!important}}
@media(min-width:769px) and (max-width:1024px){.hero{background-size:cover!important;background-position:center!important;background-attachment:scroll!important}.section-title{font-size:2.5rem!important}.services-grid,.service-grid{grid-template-columns:repeat(2,1fr)!important}.fleet-grid{grid-template-columns:repeat(2,1fr)!important}.palaces-grid{grid-template-columns:repeat(3,1fr)!important}section{padding-left:2rem!important;padding-right:2rem!important}}
@media(max-width:480px){html{font-size:16px!important}.section-title{font-size:1.7rem!important}.hero h1{font-size:2.2rem!important}.hero .pretitle{font-size:.7rem!important}.palaces-grid{grid-template-columns:1fr!important}.booking-banner h2{font-size:1.5rem!important}.review-text{font-size:.88rem!important}}
form input,form select,form textarea{background:rgba(255,255,255,.04)!important;border:1px solid rgba(201,169,110,.2)!important;border-radius:8px!important;color:var(--cream)!important;padding:12px 16px!important;font-size:.95rem!important}form input:focus,form select:focus,form textarea:focus{border-color:var(--gold)!important;outline:none!important;background:rgba(255,255,255,.06)!important}form .btn[type="submit"]{padding:14px 32px!important;font-size:.85rem!important;letter-spacing:.15em!important;min-height:48px!important}
img{max-width:100%;height:auto}.fleet-img img,.fleet-card img{width:100%;height:auto;object-fit:contain}.fleet-card:hover img{transform:scale(1.03)}.dest-hero,[class*="dest-hero"]{background-size:cover!important;background-position:center!important}@media(max-width:1024px){.dest-hero,[class*="dest-hero"]{background-attachment:scroll!important}}
/* ===== BRAND / LOGO V5 ===== */
.nav-logo{font-family:"Cormorant Garamond",Georgia,serif!important;font-size:1.7rem!important;font-style:italic!important;font-weight:600!important;letter-spacing:.02em!important;color:var(--gold)!important;text-decoration:none!important;display:inline-flex!important;flex-direction:column!important;align-items:flex-start!important;line-height:1!important;gap:0!important;padding:4px 0!important}
.nav-logo span{display:block!important;font-family:"Jost",sans-serif!important;font-size:.55rem!important;font-style:normal!important;font-weight:400!important;letter-spacing:.35em!important;text-transform:uppercase!important;color:var(--gold-lt,#e0c898)!important;margin-top:2px!important;opacity:.85!important;padding-left:2px!important}
footer .nav-logo{font-size:2rem!important}
footer .nav-logo span{font-size:.65rem!important;letter-spacing:.35em!important}
nav.scrolled .nav-logo{font-size:1.5rem!important}
nav.scrolled .nav-logo span{font-size:.5rem!important}
@media(max-width:768px){.nav-logo{font-size:1.4rem!important}.nav-logo span{font-size:.5rem!important}}

/* ===== PATCH V6 - Banner leather + Brand + WA mobile ===== */
.booking-banner{background:#8B5E3C!important;background-image:radial-gradient(ellipse at 20% 50%,rgba(139,94,60,.95) 0%,rgba(101,67,33,.98) 100%),radial-gradient(circle at 80% 20%,rgba(160,110,70,.3) 0%,transparent 50%),radial-gradient(circle at 30% 80%,rgba(120,80,40,.2) 0%,transparent 40%),repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.03) 2px,rgba(0,0,0,.03) 4px),repeating-linear-gradient(90deg,transparent,transparent 3px,rgba(0,0,0,.02) 3px,rgba(0,0,0,.02) 6px)!important;color:var(--cream)!important}
.booking-banner::before{background:repeating-linear-gradient(135deg,transparent,transparent 60px,rgba(255,255,255,.02) 60px,rgba(255,255,255,.02) 120px)!important}
.booking-banner h2{color:var(--cream)!important}
.booking-banner p{color:var(--cream)!important;opacity:.75!important}
.booking-banner .btn-gold{background:var(--gold)!important;color:#3a2410!important;border-color:var(--gold)!important}
.booking-banner .btn-outline{border-color:var(--cream)!important;color:var(--cream)!important}
.booking-banner .btn-outline:hover{background:var(--cream)!important;color:#5a3a1e!important}

/* Brand V6 - bigger */
.nav-logo{font-size:2.1rem!important}
.nav-logo span{font-size:.6rem!important;margin-top:3px!important}
nav.scrolled .nav-logo{font-size:1.7rem!important}
nav.scrolled .nav-logo span{font-size:.52rem!important}
footer .nav-logo{font-size:2.4rem!important}
footer .nav-logo span{font-size:.7rem!important}
@media(max-width:768px){.nav-logo{font-size:1.6rem!important}.nav-logo span{font-size:.52rem!important}}

/* WA pill mobile fix V6 */
#wa-pill{position:fixed!important;bottom:24px!important;right:24px!important;display:inline-flex!important;align-items:center!important;gap:10px!important;padding:6px 18px 6px 6px!important;border-radius:50px!important;z-index:9999!important;max-width:380px!important;box-sizing:border-box!important;text-decoration:none!important;overflow:hidden!important}
.wa-text{display:flex!important;flex-direction:column!important;min-width:0!important;overflow:hidden!important}
.wa-label{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.wa-action{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.wa-avatar{flex-shrink:0!important}
@media(max-width:1024px){#wa-pill{max-width:320px!important;right:16px!important;bottom:16px!important}}
@media(max-width:768px){#wa-pill{right:12px!important;bottom:12px!important;left:auto!important;max-width:calc(100vw - 24px)!important;padding:5px 14px 5px 5px!important;gap:8px!important}.wa-avatar{width:44px!important;height:44px!important}.wa-label{font-size:.72rem!important}.wa-action{font-size:.68rem!important}}
@media(max-width:480px){#wa-pill{right:8px!important;bottom:8px!important;max-width:calc(100vw - 16px)!important;padding:4px 12px 4px 4px!important;gap:6px!important;border-radius:40px!important}.wa-avatar{width:38px!important;height:38px!important}.wa-label{font-size:.65rem!important}.wa-action{font-size:.6rem!important;max-width:180px!important}}
@media(max-width:360px){#wa-pill{padding:4px 10px 4px 4px!important}.wa-avatar{width:34px!important;height:34px!important}.wa-action{max-width:140px!important;font-size:.55rem!important}}

/* Fix: override old WA rules that hide text on small screens */
@media(max-width:400px){#wa-pill .wa-text{display:flex!important}#wa-pill{padding:4px 10px 4px 4px!important;border-radius:40px!important;width:auto!important;height:auto!important;justify-content:flex-start!important}}


/* ================================================
   PATCH V7 — Background images sections manquantes
   Pourquoi nous choisir / Palaces / Avis / Footer
================================================ */

/* Section "Pourquoi nous choisir" (section 5 — pas d'id) */
section:nth-of-type(5) {
    position: relative;
    background-image: url('../images/mercedes-interior-ambient.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
section:nth-of-type(5)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,11,0.90) 0%, rgba(22,22,22,0.85) 100%);
    z-index: 0;
}
section:nth-of-type(5) > * {
    position: relative;
    z-index: 1;
}

/* Section Palaces */
.palaces-section {
    position: relative;
    background-image: url('../images/mercedes-door-controls.jpg') !important;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: transparent !important;
}
.palaces-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,11,11,0.88) 0%, rgba(22,22,22,0.82) 50%, rgba(11,11,11,0.90) 100%);
    z-index: 0;
}
.palaces-section > * {
    position: relative;
    z-index: 1;
}

/* Section Avis Clients */
#avis, .reviews-section {
    position: relative;
    background-image: url('../images/mercedes-rear-seats.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
#avis::before, .reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,11,0.87) 0%, rgba(22,22,22,0.82) 100%);
    z-index: 0;
}
#avis > *, .reviews-section > * {
    position: relative;
    z-index: 1;
}

/* Text shadow for new bg sections */
section:nth-of-type(5) h2, section:nth-of-type(5) h3, section:nth-of-type(5) h4, section:nth-of-type(5) p,
.palaces-section h2, .palaces-section h3, .palaces-section p,
#avis h2, #avis h3, #avis p, .reviews-section h2, .reviews-section p {
    text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

/* Responsive — disable fixed attachment on mobile */
@media(max-width:1024px) {
    section:nth-of-type(5), .palaces-section, #avis, .reviews-section {
          background-attachment: scroll !important;
  }
}

/* Fix: override inline style on "Pourquoi nous choisir" section */
section:nth-of-type(5) {
    background: url('../images/mercedes-interior-ambient.jpg') center/cover fixed !important;
    background-color: transparent !important;
}

/* Fix V7b: reduce overlay opacity to match hero style (0.55-0.72 range) */
section:nth-of-type(5)::before {
    background: linear-gradient(to bottom, rgba(11,11,11,0.72) 0%, rgba(22,22,22,0.55) 50%, rgba(11,11,11,0.75) 100%) !important;
}
.palaces-section::before {
    background: linear-gradient(to bottom, rgba(11,11,11,0.72) 0%, rgba(22,22,22,0.55) 50%, rgba(11,11,11,0.75) 100%) !important;
}
#avis::before, .reviews-section::before {
    background: linear-gradient(135deg, rgba(11,11,11,0.70) 0%, rgba(22,22,22,0.55) 100%) !important;
}

/* ============================================================
   PATCH V8 — Icônes élégantes, Dropdown Flotte, Styles véhicules
   ============================================================ */

/* --- Service Icons: Agrandissement + style élégant --- */
.service-icon {
  font-size: 2.8rem !important;
  margin-bottom: 2rem;
  color: var(--gold);
  transition: transform 0.4s ease, color 0.4s ease;
}
.service-icon i {
  display: inline-block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon i {
  transform: scale(1.15);
  color: var(--gold-lt);
}

/* --- Fleet card icons --- */
.fleet-img i {
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-img i {
  transform: scale(1.1);
}

/* --- Dropdown Flotte (same style as Destinations dropdown) --- */
.dropdown-flotte {
  min-width: 320px;
}
.dropdown-flotte .dropdown-col {
  min-width: 140px;
}
.dropdown-flotte .dropdown-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.dropdown-flotte .dropdown-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropdown-flotte .dropdown-col ul li a {
  display: block;
  padding: 0.35rem 0;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.dropdown-flotte .dropdown-col ul li a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* --- Vehicle detail pages styling --- */
.vehicle-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.vehicle-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(22,22,22,0.72) 100%);
  z-index: 0;
}
.vehicle-hero > * {
  position: relative;
  z-index: 1;
}
.vehicle-hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  text-align: center;
}
.vehicle-hero h1 span {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.vehicle-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.vehicle-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.vehicle-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.vehicle-spec-card {
  background: rgba(201,169,110,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.vehicle-spec-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.vehicle-spec-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.vehicle-spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.vehicle-spec-card p {
  font-size: 0.9rem;
  color: var(--gray);
}
.vehicle-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--dark);
}
.vehicle-cta .btn-gold {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}
.vehicle-cta .btn-gold:hover {
  background: var(--gold-lt);
}

/* --- Vehicle gallery --- */
.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}
.vehicle-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}
.vehicle-gallery img:hover {
  transform: scale(1.03);
}

/* --- Responsive vehicle pages --- */
@media (max-width: 768px) {
  .vehicle-hero h1 {
    font-size: 2.2rem;
  }
  .vehicle-content {
    padding: 3rem 1.5rem;
  }
  .vehicle-specs {
    grid-template-columns: 1fr 1fr;
  }
  .vehicle-hero {
    background-attachment: scroll;
    min-height: 50vh;
  }
}


/* ========================================
   TRANSFER BY CAB - CSS v2.0 ADDITIONS
   ======================================== */

.breadcrumb{padding:100px 6% 0;max-width:1400px;margin:0 auto}
.breadcrumb ul{display:flex;align-items:center;gap:.5rem;list-style:none;padding:0;margin:0}
.breadcrumb ul li{font-family:'Jost',sans-serif;font-size:.85rem;letter-spacing:.04em;color:rgba(201,169,110,.6)}
.breadcrumb ul li a{color:var(--gold);text-decoration:none;transition:color .3s}
.breadcrumb ul li a:hover{color:var(--gold-lt)}
.breadcrumb ul li.active{color:var(--cream)}
.breadcrumb ul li+li::before{content:'\203A';margin-right:.5rem;color:rgba(201,169,110,.35)}
.site-footer{background:var(--black);border-top:1px solid rgba(201,169,110,.12);padding:4rem 6% 0;position:relative}
.site-footer::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.footer-main{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(201,169,110,.08)}
.footer-brand-block .footer-logo{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:700;color:var(--cream);letter-spacing:.06em;margin-bottom:.3rem}
.footer-brand-block .footer-logo span{color:var(--gold);font-weight:400;font-style:italic}
.footer-brand-block .footer-tagline{font-family:'Jost',sans-serif;font-size:.85rem;color:rgba(245,240,232,.45);letter-spacing:.04em;margin-bottom:1.5rem;line-height:1.6}
.footer-contact-info{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.7rem}
.footer-contact-info li{display:flex;align-items:center;gap:.6rem;font-family:'Jost',sans-serif;font-size:.85rem;color:rgba(245,240,232,.55)}
.footer-contact-info li i{color:var(--gold);width:16px;text-align:center;font-size:.8rem}
.footer-contact-info li a{color:rgba(245,240,232,.55);text-decoration:none;transition:color .3s}
.footer-contact-info li a:hover{color:var(--gold)}
.footer-nav-block h4,.footer-legal-block h4,.footer-payment-block h4{font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:600;color:var(--cream);letter-spacing:.08em;text-transform:uppercase;margin-bottom:1.2rem}
.footer-nav-block ul,.footer-legal-block ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.6rem}
.footer-nav-block ul li a,.footer-legal-block ul li a{font-family:'Jost',sans-serif;font-size:.85rem;color:rgba(245,240,232,.5);text-decoration:none;transition:color .3s,padding-left .3s;letter-spacing:.02em}
.footer-nav-block ul li a:hover,.footer-legal-block ul li a:hover{color:var(--gold);padding-left:.3rem}
.payment-logos{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:.3rem}
.payment-logo{display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.06);border:1px solid rgba(201,169,110,.1);border-radius:6px;padding:.4rem .6rem;min-width:55px;height:34px;transition:border-color .3s,background .3s}
.payment-logo:hover{border-color:rgba(201,169,110,.25);background:rgba(255,255,255,.09)}
.payment-logo span{font-family:'Jost',sans-serif;font-size:.6rem;color:rgba(245,240,232,.55);letter-spacing:.04em;text-transform:uppercase;font-weight:500}
.footer-bottom-bar{max-width:1400px;margin:0 auto;padding:1.5rem 0;display:flex;justify-content:space-between;align-items:center}
.footer-copyright{font-family:'Jost',sans-serif;font-size:.75rem;color:rgba(245,240,232,.3);letter-spacing:.03em}
.footer-credits{font-family:'Jost',sans-serif;font-size:.75rem;color:rgba(245,240,232,.2);letter-spacing:.02em}
@media(max-width:1024px){.footer-main{grid-template-columns:1fr 1fr;gap:2.5rem}}
@media(max-width:768px){.site-footer{padding:3rem 5% 0}.footer-main{grid-template-columns:1fr;gap:2rem}.footer-bottom-bar{flex-direction:column;gap:.5rem;text-align:center}}
.cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:10000;background:var(--dark);border-top:1px solid rgba(201,169,110,.15);padding:1.2rem 4%;display:none;box-shadow:0 -4px 30px rgba(0,0,0,.5)}
.cookie-banner.show{display:block;animation:slideUp .4s ease}
@keyframes slideUp{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}
.cookie-inner{max-width:1400px;margin:0 auto;display:flex;align-items:center;gap:2rem}
.cookie-text{flex:1;font-family:'Jost',sans-serif;font-size:.85rem;color:rgba(245,240,232,.7);line-height:1.5}
.cookie-text a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.cookie-actions{display:flex;gap:.6rem;flex-shrink:0}
.cookie-btn{font-family:'Jost',sans-serif;font-size:.8rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase;padding:.6rem 1.3rem;border-radius:4px;border:1px solid rgba(201,169,110,.3);cursor:pointer;transition:all .3s}
.cookie-btn-accept{background:var(--gold);color:var(--black);border-color:var(--gold)}
.cookie-btn-accept:hover{background:var(--gold-lt);border-color:var(--gold-lt)}
.cookie-btn-refuse{background:transparent;color:var(--cream);border-color:rgba(245,240,232,.2)}
.cookie-btn-refuse:hover{border-color:var(--cream)}
.cookie-btn-settings{background:transparent;color:rgba(245,240,232,.5);border-color:transparent;text-decoration:underline;text-underline-offset:2px;padding:.6rem .8rem}
.cookie-btn-settings:hover{color:var(--gold)}
.cookie-modal{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10001;background:rgba(0,0,0,.7);backdrop-filter:blur(4px);display:none;justify-content:center;align-items:center}
.cookie-modal.show{display:flex}
.cookie-modal-content{background:var(--dark);border:1px solid rgba(201,169,110,.15);border-radius:12px;max-width:560px;width:90%;max-height:80vh;overflow-y:auto;padding:2rem}
.cookie-modal-content h3{font-family:'Cormorant Garamond',serif;font-size:1.3rem;color:var(--cream);margin-bottom:1rem}
.cookie-modal-content p{font-family:'Jost',sans-serif;font-size:.85rem;color:rgba(245,240,232,.6);line-height:1.6;margin-bottom:1rem}
.cookie-category{padding:1rem 0;border-top:1px solid rgba(201,169,110,.08)}
.cookie-category-header{display:flex;justify-content:space-between;align-items:center}
.cookie-category-header h4{font-family:'Jost',sans-serif;font-size:.9rem;font-weight:500;color:var(--cream)}
.cookie-category-header span{font-family:'Jost',sans-serif;font-size:.75rem;color:rgba(201,169,110,.5)}
.cookie-toggle{position:relative;width:42px;height:22px}
.cookie-toggle input{opacity:0;width:0;height:0}
.cookie-toggle-slider{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.1);border-radius:22px;cursor:pointer;transition:background .3s}
.cookie-toggle-slider::before{content:'';position:absolute;height:16px;width:16px;left:3px;bottom:3px;background:var(--cream);border-radius:50%;transition:transform .3s}
.cookie-toggle input:checked+.cookie-toggle-slider{background:var(--gold)}
.cookie-toggle input:checked+.cookie-toggle-slider::before{transform:translateX(20px)}
.cookie-modal-actions{display:flex;gap:.8rem;margin-top:1.5rem;justify-content:flex-end}
.cookie-manage-btn{position:fixed;bottom:20px;left:20px;z-index:9998;background:var(--dark);border:1px solid rgba(201,169,110,.2);color:var(--gold);font-family:'Jost',sans-serif;font-size:.7rem;letter-spacing:.04em;padding:.5rem .8rem;border-radius:20px;cursor:pointer;transition:all .3s;display:flex;align-items:center;gap:.4rem;box-shadow:0 2px 15px rgba(0,0,0,.3)}
.cookie-manage-btn:hover{border-color:var(--gold);background:rgba(201,169,110,.08)}
.cookie-manage-btn i{font-size:.75rem}
@media(max-width:768px){.cookie-inner{flex-direction:column;gap:1rem;text-align:center}.cookie-actions{flex-wrap:wrap;justify-content:center}.cookie-manage-btn{bottom:12px;left:12px;font-size:.65rem;padding:.4rem .7rem}}
.legal-page{padding:120px 6% 4rem;max-width:900px;margin:0 auto}
.legal-page h1{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:700;color:var(--cream);margin-bottom:.5rem}
.legal-page .legal-subtitle{font-family:'Jost',sans-serif;font-size:.9rem;color:var(--gold);letter-spacing:.06em;margin-bottom:2rem}
.legal-page .divider{width:60px;height:1px;background:var(--gold);margin-bottom:2.5rem}
.legal-page h2{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:600;color:var(--cream);margin-top:2.5rem;margin-bottom:1rem}
.legal-page h3{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:600;color:var(--gold-lt);margin-top:1.5rem;margin-bottom:.7rem}
.legal-page p,.legal-page li{font-family:'Jost',sans-serif;font-size:.9rem;color:rgba(245,240,232,.65);line-height:1.8;margin-bottom:.8rem}
.legal-page ul,.legal-page ol{padding-left:1.5rem;margin-bottom:1rem}
.legal-page ul li::marker{color:var(--gold)}
.legal-page a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.legal-page strong{color:var(--cream);font-weight:500}
.legal-info-box{background:rgba(201,169,110,.04);border-left:3px solid var(--gold);padding:1.2rem 1.5rem;margin:1.5rem 0;border-radius:0 8px 8px 0}
.legal-info-box p{margin-bottom:.3rem}
.legal-update{font-family:'Jost',sans-serif;font-size:.8rem;color:rgba(245,240,232,.35);margin-top:3rem;padding-top:1.5rem;border-top:1px solid rgba(201,169,110,.08)}
.resv-hero{position:relative;min-height:45vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:120px 6% 3rem;background:var(--black);overflow:hidden}
.resv-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(201,169,110,.05) 0%,transparent 50%,rgba(201,169,110,.03) 100%)}
.resv-hero-content{position:relative;z-index:2}
.resv-hero h1{font-family:'Cormorant Garamond',serif;font-size:2.8rem;font-weight:700;color:var(--cream);margin-bottom:.5rem}
.resv-hero h1 em{font-style:italic;color:var(--gold)}
.resv-hero p{font-family:'Jost',sans-serif;font-size:1rem;color:rgba(245,240,232,.55);max-width:600px;margin:0 auto}
.resv-reassurance{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;margin-top:2rem}
.resv-reassurance-item{display:flex;align-items:center;gap:.5rem;font-family:'Jost',sans-serif;font-size:.8rem;color:rgba(245,240,232,.5);letter-spacing:.03em}
.resv-reassurance-item i{color:var(--gold);font-size:.85rem}
.resv-form-section{padding:3rem 6%;max-width:800px;margin:0 auto}
.resv-form{background:rgba(255,255,255,.02);border:1px solid rgba(201,169,110,.1);border-radius:16px;padding:2.5rem}
.resv-form fieldset{border:none;padding:0;margin:0 0 2rem 0}
.resv-form legend{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:600;color:var(--gold);letter-spacing:.04em;margin-bottom:1.2rem;padding-bottom:.5rem;border-bottom:1px solid rgba(201,169,110,.1);width:100%}
.resv-faq{padding:3rem 6%;max-width:800px;margin:0 auto}
.resv-faq h2{font-family:'Cormorant Garamond',serif;font-size:1.6rem;color:var(--cream);text-align:center;margin-bottom:1.5rem}
.faq-item{border-bottom:1px solid rgba(201,169,110,.08);padding:1rem 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-family:'Jost',sans-serif;font-size:.9rem;font-weight:500;color:var(--cream);padding:.5rem 0}
.faq-question::after{content:'+';font-size:1.2rem;color:var(--gold);transition:transform .3s;flex-shrink:0;margin-left:1rem}
.faq-item.open .faq-question::after{content:'\2212'}
.faq-answer{font-family:'Jost',sans-serif;font-size:.85rem;color:rgba(245,240,232,.55);line-height:1.7;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s}
.faq-item.open .faq-answer{max-height:300px;padding-bottom:.5rem}
.resv-payment{padding:2rem 6% 3rem;max-width:800px;margin:0 auto;text-align:center}
.resv-payment h3{font-family:'Cormorant Garamond',serif;font-size:1.1rem;color:rgba(245,240,232,.5);margin-bottom:1rem}
.resv-payment-logos{display:flex;justify-content:center;flex-wrap:wrap;gap:.5rem}
@media(max-width:768px){.resv-hero h1{font-size:2rem}.resv-form{padding:1.5rem}.resv-reassurance{gap:1rem}}


/* ── RESPONSIVE FIX – Menu + Forms (mobile & tablet) ── */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem !important; }
  .resv-form-section, .contact-form-section { padding: 2rem 1.5rem; }
  .resv-reassurance { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .resv-reassurance-item { font-size: .75rem; }
  .booking-hero-content { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
    /* Nav fix */
  nav { padding: 0.8rem 1.2rem !important; height: auto; min-height: 56px; }
  .nav-logo { font-size: 1.3rem !important; }
  .nav-logo span { font-size: 0.48rem !important; display: block; }
  .hamburger { display: flex !important; z-index: 101; }
  .nav-links { display: none !important; }
  .lang-switcher { margin-right: 0.5rem; }
  
    /* Page header spacing – prevent nav overlap */
  .resv-hero, .contact-hero, .page-hero { padding-top: 80px !important; }
  .resv-hero-content { flex-direction: column; text-align: center; gap: 1rem; }
  .resv-hero h1 { font-size: 1.8rem !important; }
  
    /* Reservation form fix */
  .resv-form { padding: 1.5rem !important; }
    .resv-form .form-row,
    .resv-form .form-grid { 
          display: grid !important;
          grid-template-columns: 1fr !important;
          gap: 1rem !important;
  }
    .resv-form input,
    .resv-form select,
    .resv-form textarea { width: 100% !important; box-sizing: border-box !important; font-size: 16px !important; }
    .resv-form .phone-group { 
          display: flex !important;
          flex-direction: row !important;
          gap: 0.5rem !important;
  }
  .resv-form .phone-group select { flex: 0 0 100px !important; }
  .resv-form .phone-group input { flex: 1 !important; }
    .resv-form .btn, .resv-form button[type="submit"] {
          width: 100% !important;
          padding: 1rem !important;
          font-size: 0.85rem !important;
  }
  
    /* Contact form fix */
  .contact-form { padding: 1.5rem !important; max-width: 100% !important; }
    .contact-form .form-row,
    .contact-form .form-grid {
          display: grid !important;
          grid-template-columns: 1fr !important;
          gap: 1rem !important;
  }
    .contact-form input,
    .contact-form select,
    .contact-form textarea { width: 100% !important; box-sizing: border-box !important; font-size: 16px !important; }
    .contact-form .phone-group {
          display: flex !important;
          flex-direction: row !important;
          gap: 0.5rem !important;
  }
  .contact-form .phone-group select { flex: 0 0 100px !important; }
  .contact-form .phone-group input { flex: 1 !important; }
    .contact-form .btn, .contact-form button[type="submit"] {
          width: 100% !important;
          padding: 1rem !important;
          font-size: 0.85rem !important;
  }
  
    /* Reassurance badges */
  .resv-reassurance { flex-direction: column; align-items: center; gap: 0.5rem; }
}

/* ── Small mobile (max 480px) ── */
@media (max-width: 480px) {
  nav { padding: 0.6rem 1rem !important; }
  .nav-logo { font-size: 1.1rem !important; }
  .resv-hero h1 { font-size: 1.5rem !important; }
  .resv-form, .contact-form { padding: 1rem !important; }
  .resv-form-section { padding: 1rem; }
  .resv-hero, .contact-hero, .page-hero { padding-top: 70px !important; }
}

/* ===== RESERVATION PAGE REDESIGN V7 - Light & Elegant ===== */

/* --- Hero Banner: Light elegant gradient with gold accent --- */
.resv-hero{
    background:linear-gradient(160deg,#f5f0e8 0%,#fafaf8 40%,#f0ead8 100%)!important;
    color:#161616!important;
    min-height:auto!important;
    padding:120px 6% 40px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    text-align:center!important;
    position:relative!important;
}
.resv-hero::before{
    background:radial-gradient(ellipse at 30% 0%,rgba(201,169,110,.12) 0%,transparent 70%)!important;
}
.resv-hero::after{
    content:"";
    position:absolute;
    bottom:0;left:0;right:0;
    height:4px;
    background:linear-gradient(90deg,transparent,#c9a96e,transparent);
}
.resv-hero .overtitle{
    color:#c9a96e!important;
    font-size:.75rem!important;
    letter-spacing:.35em!important;
    margin-bottom:.5rem!important;
}
.resv-hero h1{
    color:#161616!important;
    font-size:clamp(2rem,4vw,3rem)!important;
    font-weight:300!important;
    margin-bottom:.8rem!important;
}
.resv-hero p{
    color:#555!important;
    font-size:.95rem!important;
    max-width:480px!important;
    margin:0 auto 1.5rem!important;
    line-height:1.7!important;
}

/* --- Reassurance badges in hero --- */
.resv-reassurance{
    display:flex!important;
    gap:2rem!important;
    justify-content:center!important;
    flex-wrap:wrap!important;
}
.resv-reassurance span{
    color:#161616!important;
    font-size:.7rem!important;
    letter-spacing:.15em!important;
    display:flex!important;
    align-items:center!important;
    gap:.5rem!important;
    background:rgba(201,169,110,.1)!important;
    padding:.5rem 1rem!important;
    border-radius:20px!important;
}
.resv-reassurance span i{
    color:#c9a96e!important;
    font-size:.85rem!important;
}

/* --- Form Section: Light cream background --- */
.resv-section{
    background:#fafaf8!important;
    padding:3rem 20px 5rem!important;
}
.resv-container{
    max-width:720px!important;
    margin:0 auto!important;
    background:#fff!important;
    border-radius:16px!important;
    padding:3rem 2.5rem!important;
    box-shadow:0 4px 30px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.04)!important;
    border:1px solid rgba(201,169,110,.12)!important;
}

/* --- Form Step Titles --- */
.resv-container .form-step-title{
    color:#161616!important;
    font-size:.8rem!important;
    letter-spacing:.2em!important;
    border-bottom:2px solid #c9a96e!important;
    padding-bottom:.8rem!important;
    margin-bottom:1.8rem!important;
    margin-top:2.5rem!important;
}
.resv-container .form-step-title:first-of-type{
    margin-top:0!important;
}
.resv-container .form-step-title i{
    color:#c9a96e!important;
    margin-right:.5rem!important;
}

/* --- Labels --- */
.resv-container .form-group label{
    color:#555!important;
    font-size:.7rem!important;
    letter-spacing:.2em!important;
    font-weight:500!important;
}

/* --- Inputs --- */
.resv-container .form-group input,
.resv-container .form-group select,
.resv-container .form-group textarea{
    background:#fafaf8!important;
    color:#161616!important;
    border:1px solid #ddd!important;
    border-radius:8px!important;
    padding:.85rem 1rem!important;
    font-size:.9rem!important;
    transition:border-color .3s,box-shadow .3s!important;
}
.resv-container .form-group input:focus,
.resv-container .form-group select:focus,
.resv-container .form-group textarea:focus{
    border-color:#c9a96e!important;
    box-shadow:0 0 0 3px rgba(201,169,110,.12)!important;
    outline:none!important;
}
.resv-container .form-group input::placeholder,
.resv-container .form-group textarea::placeholder{
    color:#aaa!important;
}
.resv-container .form-group select option{
    background:#fff!important;
    color:#161616!important;
}

/* --- Phone row --- */
.resv-container .phone-row select{
    background:#fafaf8!important;
    color:#161616!important;
    border:1px solid #ddd!important;
    border-radius:8px!important;
    padding:.85rem .6rem!important;
}

/* --- Vehicle Cards --- */
.resv-container .vehicle-card{
    background:#fafaf8!important;
    border:1.5px solid #e5e0d5!important;
    border-radius:12px!important;
    padding:1.2rem!important;
    transition:all .3s ease!important;
    cursor:pointer!important;
}
.resv-container .vehicle-card:hover{
    border-color:#c9a96e!important;
    box-shadow:0 4px 15px rgba(201,169,110,.12)!important;
    transform:translateY(-2px)!important;
}
.resv-container .vehicle-card.selected,
.resv-container .vehicle-card:has(input:checked){
    border-color:#c9a96e!important;
    background:rgba(201,169,110,.06)!important;
    box-shadow:0 4px 20px rgba(201,169,110,.15)!important;
}
.resv-container .vehicle-card h3{
    color:#161616!important;
    font-size:1rem!important;
}
.resv-container .vehicle-card .vehicle-info,
.resv-container .vehicle-card p,
.resv-container .vehicle-card span{
    color:#777!important;
    font-size:.8rem!important;
}

/* --- Trip Type Radio buttons --- */
.resv-container .trip-type-group label{
    background:#fafaf8!important;
    color:#555!important;
    border:1.5px solid #e5e0d5!important;
    border-radius:8px!important;
    padding:.7rem 1.2rem!important;
    cursor:pointer!important;
    transition:all .3s!important;
    font-size:.8rem!important;
    letter-spacing:.1em!important;
}
.resv-container .trip-type-group input:checked + label,
.resv-container .trip-type-group label:has(input:checked){
    background:rgba(201,169,110,.08)!important;
    border-color:#c9a96e!important;
    color:#161616!important;
}

/* --- Submit Button --- */
.resv-container #submitBtn,
.resv-container .btn-submit,
.resv-container button[type="submit"]{
    background:linear-gradient(135deg,#c9a96e,#b8944f)!important;
    color:#fff!important;
    border:none!important;
    border-radius:10px!important;
    padding:1rem 2rem!important;
    font-size:.85rem!important;
    letter-spacing:.2em!important;
    text-transform:uppercase!important;
    cursor:pointer!important;
    transition:all .3s!important;
    width:100%!important;
    margin-top:1.5rem!important;
    font-weight:500!important;
    box-shadow:0 4px 15px rgba(201,169,110,.3)!important;
}
.resv-container #submitBtn:hover,
.resv-container .btn-submit:hover,
.resv-container button[type="submit"]:hover{
    background:linear-gradient(135deg,#b8944f,#a37f3c)!important;
    box-shadow:0 6px 25px rgba(201,169,110,.4)!important;
    transform:translateY(-1px)!important;
}

/* --- Form Feedback --- */
.resv-container .form-feedback{
    border-radius:8px!important;
    padding:1rem 1.2rem!important;
    font-size:.85rem!important;
}
.resv-container .form-feedback.success{
    background:rgba(76,175,80,.08)!important;
    color:#2e7d32!important;
    border:1px solid rgba(76,175,80,.2)!important;
}
.resv-container .form-feedback.error{
    background:rgba(244,67,54,.06)!important;
    color:#c62828!important;
    border:1px solid rgba(244,67,54,.15)!important;
}

/* --- Mobile adjustments for redesigned reservation --- */
@media(max-width:768px){
  .resv-hero{padding:100px 5% 30px!important}
  .resv-hero h1{font-size:1.8rem!important}
  .resv-reassurance{gap:1rem!important}
  .resv-reassurance span{font-size:.6rem!important;padding:.4rem .8rem!important}
    .resv-container{padding:2rem 1.2rem!important;border-radius:12px!important;margin:0 10px!important}
  .resv-container .vehicle-card{padding:1rem!important}
}
@media(max-width:480px){
  .resv-hero{padding:80px 4% 25px!important}
  .resv-hero h1{font-size:1.5rem!important}
  .resv-container{padding:1.5rem 1rem!important}
  .resv-reassurance span{font-size:.55rem!important;padding:.35rem .6rem!important}
}

/* ===== RESV NAV V8 - Transparent top, dark on scroll ===== */
body:has(.resv-hero) nav:not(.scrolled){
    background:transparent!important;
    box-shadow:none!important;
    border-bottom:none!important;
}
body:has(.resv-hero) nav:not(.scrolled) .nav-links a{
    color:#161616!important;
}
body:has(.resv-hero) nav:not(.scrolled) .nav-links a:hover{
    color:#c9a96e!important;
}
body:has(.resv-hero) nav:not(.scrolled) .nav-logo{
    color:#161616!important;
}
body:has(.resv-hero) nav:not(.scrolled) .nav-logo span{
    color:#161616!important;
}
body:has(.resv-hero) nav:not(.scrolled) .hamburger span{
    background:#161616!important;
}

/* Scrolled state = same as homepage (dark bg, white text, gold brand) */
body:has(.resv-hero) nav.scrolled{
    background:rgba(11,11,11,.97)!important;
    backdrop-filter:blur(10px)!important;
}
body:has(.resv-hero) nav.scrolled .nav-links a{
    color:var(--cream)!important;
}
body:has(.resv-hero) nav.scrolled .nav-logo{
    color:var(--cream)!important;
}
body:has(.resv-hero) nav.scrolled .nav-logo span{
    color:var(--gold)!important;
}

/* --- Vehicle card images --- */
.resv-container .vehicle-card img.vehicle-img{
    width:100%;
    height:auto;
    max-height:120px;
    object-fit:contain;
    margin-bottom:.8rem;
    filter:none!important;
}

/* ===================================================
   HOMEPAGE FLEET CARDS - LIGHT BACKGROUNDS V10
   =================================================== */

/* Elegant background for fleet image areas */
.fleet-section .fleet-img {
    background: linear-gradient(145deg, #e8e2d8 0%, #d5cec2 30%, #c9c0b2 60%, #e0d9cd 100%) !important;
    position: relative;
}

/* Subtle warm vignette overlay */
.fleet-section .fleet-img::after {
    background: radial-gradient(ellipse at center, transparent 40%, rgba(180,165,140,0.15) 100%) !important;
}

/* Fleet card images - enlarged +10% */
.fleet-section .fleet-img img {
    width: 93%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

/* Sprinter card - extra +20% size */
.fleet-section .fleet-card:nth-child(4) .fleet-img img {
    width: 100%;
    max-height: 220px;
}

.fleet-section .fleet-card:hover .fleet-img img {
    transform: scale(1.05);
}

/* Fleet card border and shadow update */
.fleet-section .fleet-card {
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.fleet-section .fleet-card:hover {
    box-shadow: 0 8px 30px rgba(201,169,110,0.18);
    transform: translateY(-4px);
}

/* Fleet info section - keep dark for contrast */
.fleet-section .fleet-info {
    background: var(--dark);
    padding: 1.5rem;
}

/* Fleet card name styling */
.fleet-section .fleet-info h3 {
    color: var(--gold) !important;
    font-family: var(--font-display);
    font-size: 1.15rem !important;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}


/* ===== FIX: Dropdown menu visibility on light-bg pages ===== */
body:has(.resv-hero) nav:not(.scrolled) .nav-links .dest-mega a,
body:has(.resv-hero) nav:not(.scrolled) .nav-links .dest-mega h5,
body:has(.resv-hero) nav:not(.scrolled) .nav-links .dropdown-flotte a,
body:has(.resv-hero) nav:not(.scrolled) .nav-links .dropdown-flotte h4,
body:has(.contact-hero) nav:not(.scrolled) .nav-links .dest-mega a,
body:has(.contact-hero) nav:not(.scrolled) .nav-links .dest-mega h5,
body:has(.contact-hero) nav:not(.scrolled) .nav-links .dropdown-flotte a,
body:has(.contact-hero) nav:not(.scrolled) .nav-links .dropdown-flotte h4 {
  color: var(--cream) !important;
}

body:has(.contact-hero) nav:not(.scrolled) .nav-links a {
  color: rgb(22, 22, 22) !important;
}
body:has(.contact-hero) nav:not(.scrolled) .nav-logo {
  color: #161616 !important;
}
body:has(.contact-hero) nav.scrolled .nav-links a {
  color: var(--cream) !important;
}
/* ===== END FIX ===== */


/* ===== FIX: Lang dropdown visibility on light-bg pages ===== */
/* ===== END Lang FIX ===== */

/* Lang switcher visibility fix */
nav:not(.scrolled) .lang-switcher { color: #f5f0e8 !important; border-color: rgba(245,240,232,0.4) !important; }
nav:not(.scrolled) .lang-current { color: #f5f0e8 !important; }
nav:not(.scrolled) .lang-switcher:hover { border-color: rgba(213,196,161,0.6) !important; }
nav.scrolled .lang-switcher { color: #161616 !important; border-color: rgba(22,22,22,0.3) !important; }
nav.scrolled .lang-current { color: #161616 !important; }

/* Smart lang-switcher: dark text on light pages, light text on dark pages */
body:has(.resv-hero) nav:not(.scrolled) .lang-switcher,
body:has(.contact-hero) nav:not(.scrolled) .lang-switcher {
  color: #3a3226 !important;
  border-color: rgba(58,50,38,0.3) !important;
}
body:has(.resv-hero) nav:not(.scrolled) .lang-current,
body:has(.contact-hero) nav:not(.scrolled) .lang-current {
  color: #3a3226 !important;
}
body:has(.resv-hero) nav:not(.scrolled) .lang-dropdown,
body:has(.contact-hero) nav:not(.scrolled) .lang-dropdown {
  background: #fafaf8;
  border-color: rgba(58,50,38,0.15);
}
body:has(.resv-hero) nav:not(.scrolled) .lang-dropdown li,
body:has(.contact-hero) nav:not(.scrolled) .lang-dropdown li {
  color: #3a3226 !important;
}


/* ============================================
   MOBILE FIXES - Transfer by Cab
   ============================================ */

/* --- Mobile Navigation & Mega Menu Fix --- */
@media (max-width: 768px) {
    .nav-links.open {
          display: flex !important;
          flex-direction: column;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(10,10,10,0.98);
          backdrop-filter: blur(20px);
          padding: 80px 2rem 2rem;
          z-index: 100;
          overflow-y: auto;
          gap: 0;
  }
    .nav-links.open > li {
          border-bottom: 1px solid rgba(255,255,255,0.08);
  }
    .nav-links.open > li > a {
          padding: 1rem 0;
          font-size: 1.1rem;
  }
    /* Dropdown on mobile */
    .nav-links.open .has-dropdown .dest-mega {
          position: static !important;
          transform: none !important;
          min-width: 100% !important;
          display: none;
          grid-template-columns: 1fr !important;
          padding: 0.5rem 1rem !important;
          background: rgba(30,30,30,0.95) !important;
          border: none !important;
          opacity: 1 !important;
          pointer-events: auto !important;
  }
    .nav-links.open .has-dropdown.open .dest-mega {
          display: block !important;
  }
    .nav-links.open .dest-mega-col {
          margin-bottom: 0.5rem;
  }
    .nav-links.open .dest-mega-col h5 {
          font-size: 0.85rem;
          padding: 0.5rem 0;
  }
    .nav-links.open .dest-mega-col li a {
          padding: 0.4rem 0;
          font-size: 0.95rem;
  }
    /* Hamburger active state */
    .hamburger.active span:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
  }
    .hamburger.active span:nth-child(2) {
          opacity: 0;
  }
    .hamburger.active span:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* --- Cover/Hero Images Responsive Fix --- */
@media (max-width: 768px) {
    .hero,
    .dest-hero,
    .vehicle-hero,
    [class*="hero"] {
          min-height: 50vh !important;
          height: auto !important;
          background-size: cover !important;
          background-position: center center !important;
  }
    .hero h1,
    .dest-hero h1,
    .vehicle-hero h1 {
          font-size: 1.8rem !important;
          line-height: 1.2 !important;
  }
    .hero .pretitle,
    .dest-hero .pretitle {
          font-size: 0.8rem !important;
  }
    .hero-cta .btn,
    .hero .cta-group .btn {
          padding: 0.7rem 1.5rem !important;
          font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
    .hero,
    .dest-hero,
    .vehicle-hero,
    [class*="hero"] {
          min-height: 40vh !important;
  }
    .hero h1,
    .dest-hero h1,
    .vehicle-hero h1 {
          font-size: 1.4rem !important;
  }
}

/* --- Language Switcher Mobile Fix --- */
@media (max-width: 768px) {
    .lang-switcher {
          position: relative !important;
          right: auto !important;
          top: auto !important;
          margin-left: auto;
          z-index: 102;
  }
    .lang-dropdown {
          right: 0 !important;
          left: auto !important;
          min-width: 120px;
  }
}

/* ── Services V2 — Image Cards ── */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 5rem;
}

.service-card-v2 {
  position: relative;
  display: block;
  min-height: 400px;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  cursor: pointer;
}

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,.95) 0%, rgba(11,11,11,.6) 40%, rgba(11,11,11,.3) 100%);
  transition: background var(--transition);
  z-index: 1;
}

.service-card-v2:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-v2:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(11,11,11,.98) 0%, rgba(11,11,11,.5) 50%, rgba(11,11,11,.2) 100%);
}

.service-card-v2 .service-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,110,.15);
  line-height: 1;
  z-index: 2;
  transition: color var(--transition);
}

.service-card-v2:hover .service-num { color: rgba(201,169,110,.25); }

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 2;
}

.service-card-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: .8rem;
  transition: color var(--transition);
}

.service-card-v2:hover h3 { color: var(--gold); }

.service-card-v2 p {
  font-size: .82rem;
  opacity: .6;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  transition: opacity var(--transition);
}

.service-card-v2:hover p { opacity: .8; }

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-card-v2:hover .service-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.service-card-cta i { transition: transform .3s ease; }
.service-card-v2:hover .service-card-cta i { transform: translateX(4px); }

.service-card-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  z-index: 3;
  transition: width .6s cubic-bezier(.25,.46,.45,.94);
}

.service-card-v2:hover::after { width: 100%; }

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

@media (max-width: 600px) {
  .services-grid-v2 { grid-template-columns: 1fr; }
  .service-card-v2 { min-height: 320px; }
}

/* ====================================================================
   MEGA MENU - Elegant 2026 Design
   ==================================================================== */

/* Mega menu trigger */
.has-megamenu {
  position: relative;
}

.has-megamenu > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.has-megamenu:hover > a::after {
  transform: rotate(-135deg);
}

/* Mega menu panel */
.megamenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(.25,.46,.45,.94), visibility 0.4s;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
}

/* Grid layout for 9 services (3x3) */
.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  width: 100%;
}

/* Individual card */
.megamenu-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4/3;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}

.megamenu-card:hover {
  transform: scale(1.03);
}

/* Card image */
.megamenu-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94), filter 0.6s;
  filter: brightness(0.6) saturate(0.9);
}

.megamenu-card:hover .megamenu-img {
  transform: scale(1.1);
  filter: brightness(0.45) saturate(1.1);
}

/* Card label */
.megamenu-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
}

.megamenu-card:hover .megamenu-label {
  padding-bottom: 26px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.megamenu-label::after {
  content: '\2192';
  display: inline-block;
  margin-left: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--gold);
}

.megamenu-card:hover .megamenu-label::after {
  opacity: 1;
  transform: translateX(0);
}

/* ====================================================================
   SERVICES SHOWCASE - Homepage (2026 Modern)
   ==================================================================== */

.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding: 0 20px;
}

.service-item {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--dark);
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), box-shadow 0.5s;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
}

.service-item:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,11,11,0.8) 100%);
  transition: opacity 0.4s;
}

.service-content {
  padding: 22px 24px 28px;
  position: relative;
}

.service-number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  opacity: 0.8;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.02em;
}

.service-content p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 14px;
}

.service-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.service-item:hover .service-link {
  gap: 12px;
}

.service-link .arrow {
  transition: transform 0.3s ease;
}

.service-item:hover .service-link .arrow {
  transform: translateX(4px);
}

/* ====================================================================
   MOBILE SERVICES SUBMENU
   ==================================================================== */

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

.mobile-services-toggle.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-services-sub {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
  margin: 4px 0 8px;
}

.mobile-services-sub.open {
  display: flex;
}

.mobile-services-sub a {
  padding: 8px 12px !important;
  font-size: 0.9rem !important;
  opacity: 0.85;
}

.mobile-services-sub a:hover {
  opacity: 1;
  color: var(--gold) !important;
}

/* ====================================================================
   RESPONSIVE - Mega Menu & Services
   ==================================================================== */

@media (max-width: 1024px) {
  .services-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .megamenu {
    display: none !important;
  }

  .services-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

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

@media (max-width: 480px) {
  .services-showcase {
    gap: 14px;
    margin-top: 30px;
  }

  .service-content {
    padding: 18px 18px 22px;
  }
}


/* ══════════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES — Inspired by clean, bright design
   ══════════════════════════════════════════════════════════ */

/* ── Base ── */
body {
  background: #ffffff !important;
  color: #1a1a1a !important;
}

::-webkit-scrollbar-track { background: #f0f0f0 !important; }
::-webkit-scrollbar-thumb { background: var(--gold) !important; }

#loader {
  background: #ffffff !important;
}

/* ── Navigation ── */
.site-header {
  background: rgba(255,255,255,.97) !important;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}

.site-header.scrolled {
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.nav-logo {
  color: #1a1a1a !important;
}

.nav-logo span {
  color: #1a1a1a !important;
}

.nav-links a {
  color: #333 !important;
}

.nav-links a:hover {
  color: var(--gold) !important;
}

.hamburger span {
  background: #1a1a1a !important;
}

/* ── Dropdown Menus ── */
.dest-mega {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.1) !important;
}

.dest-mega h4 {
  color: var(--gold) !important;
  border-bottom-color: rgba(0,0,0,.08) !important;
}

.dest-mega a {
  color: #333 !important;
}

.dest-mega a:hover {
  color: var(--gold) !important;
  background: rgba(180,150,80,.06) !important;
}

.dropdown-flotte {
  background: #ffffff !important;
}

/* ── Lang Switcher ── */
.lang-dropdown {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.1) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.08) !important;
}

.lang-dropdown li {
  color: #333 !important;
}

.lang-dropdown li:hover {
  background: rgba(180,150,80,.08) !important;
  color: var(--gold) !important;
}

.lang-current {
  color: #333 !important;
}

/* ── Mobile Menu ── */
.mobile-menu {
  background: rgba(255,255,255,.98) !important;
}

.mobile-menu a {
  color: #333 !important;
  border-bottom-color: rgba(0,0,0,.06) !important;
}

.mobile-menu a:hover {
  color: var(--gold) !important;
}

/* ── Hero Section ── */
.hero {
  background: #0a0a0a !important;
}

.hero-bg::before {
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(20,15,5,0.35) 40%, rgba(0,0,0,0.45) 100%) !important;
}

.hero-content {
  color: #ffffff !important;
}

.hero-pretitle {
  color: rgba(255,255,255,.7) !important;
}

.hero-title {
  color: #ffffff !important;
}

.hero-title em {
  color: var(--gold-lt) !important;
}

.hero-subtitle {
  color: rgba(255,255,255,.8) !important;
}

.hero-lines::before,
.hero-lines::after {
  background: rgba(201,169,110,.15) !important;
}

/* ── Buttons ── */
.btn-gold {
  background: var(--gold) !important;
  color: #fff !important;
}

.btn-gold:hover {
  background: var(--gold-lt) !important;
  color: #fff !important;
}

.btn-outline {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.btn-outline:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* Hero buttons stay white-themed */
.hero .btn-gold {
  background: var(--gold) !important;
  color: #fff !important;
}

.hero .btn-outline {
  border-color: rgba(255,255,255,.6) !important;
  color: #fff !important;
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* ── Section Labels & Titles ── */
.section-label {
  color: var(--gold) !important;
}

.section-title {
  color: #1a1a1a !important;
}

.section-title em {
  color: var(--gold) !important;
}

.section-subtitle {
  color: #555 !important;
}

.divider {
  background: var(--gold) !important;
}

/* ── Services Grid ── */
.service-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.service-card::before {
  background: linear-gradient(135deg, rgba(180,150,80,.08), transparent) !important;
}

.service-card:hover {
  background: #fafaf8 !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border-color: rgba(180,150,80,.3) !important;
}

.service-icon {
  color: var(--gold) !important;
}

.service-num {
  color: rgba(0,0,0,.06) !important;
}

.service-card h3 {
  color: #1a1a1a !important;
}

.service-card p {
  color: #555 !important;
}

/* ── Fleet Section ── */
.fleet-section {
  background: #f8f7f5 !important;
}

.fleet-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.fleet-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.fleet-img::after {
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.03) 100%) !important;
}

.fleet-card h3 {
  color: #1a1a1a !important;
}

.fleet-card .fleet-type {
  color: var(--gold) !important;
}

.fleet-card p {
  color: #555 !important;
}

/* ── Destinations Section ── */
.dest-card {
  border: 1px solid rgba(0,0,0,.06);
}

.dest-card::after {
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 70%) !important;
}

.dest-card h3 {
  color: #fff !important;
}

.dest-card .dest-tag {
  color: rgba(255,255,255,.8) !important;
}

/* ── Testimonials ── */
.testimonial-section,
.testimonials {
  background: #f8f7f5 !important;
}

.testimonial-text {
  color: #333 !important;
}

.testimonial-author {
  color: #666 !important;
}

/* ── Why Choose Us ── */
.whyus-section {
  background: #ffffff !important;
}

.whyus-item {
  color: #1a1a1a !important;
}

.whyus-icon {
  color: var(--gold) !important;
}

.whyus-item h3 {
  color: #1a1a1a !important;
}

.whyus-item p {
  color: #555 !important;
}

/* ── Palaces/Partners ── */
.palaces-section {
  background: #f8f7f5 !important;
}

.palace-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

.palace-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.palace-city {
  color: var(--gold) !important;
}

.palace-card h3 {
  color: #1a1a1a !important;
}

.palace-card p {
  color: #555 !important;
}

.palace-stars {
  color: var(--gold) !important;
}

/* ── Booking Banner ── */
.booking-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 50%, #1a1a1a 100%) !important;
}

.booking-banner::before {
  background: radial-gradient(ellipse at center, rgba(180,150,80,.1) 0%, transparent 70%) !important;
}

.booking-banner h2 {
  color: #fff !important;
}

.booking-banner p {
  color: rgba(255,255,255,.7) !important;
}

.booking-banner .btn-gold {
  background: var(--gold) !important;
  color: #fff !important;
}

.booking-banner .btn-outline {
  border-color: rgba(255,255,255,.4) !important;
  color: #fff !important;
}

.booking-banner .btn-outline:hover {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}

/* ── Forms ── */
.form-section {
  background: #f8f7f5 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #ffffff !important;
  border-color: rgba(0,0,0,.12) !important;
  color: #1a1a1a !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(180,150,80,.1) !important;
}

.form-group label {
  color: #333 !important;
}

.form-group select option {
  background: #ffffff !important;
  color: #1a1a1a !important;
}

/* ── Footer ── */
.site-footer {
  background: #1a1a1a !important;
  color: rgba(255,255,255,.7) !important;
  border-top: none !important;
}

.site-footer .nav-logo {
  color: #ffffff !important;
}

.site-footer .nav-logo span {
  color: #ffffff !important;
}

.footer-brand p {
  color: rgba(255,255,255,.6) !important;
}

.footer-col h4 {
  color: #ffffff !important;
}

.footer-col ul li a {
  color: rgba(255,255,255,.6) !important;
}

.footer-col ul li a:hover {
  color: var(--gold-lt) !important;
}

.footer-bottom {
  color: rgba(255,255,255,.4) !important;
  border-top-color: rgba(255,255,255,.08) !important;
}

/* ── Info Bar / Top Bar ── */
.info-bar,
.top-bar {
  background: #f8f7f5 !important;
  color: #555 !important;
  border-bottom: 1px solid rgba(0,0,0,.06) !important;
}

.info-bar a,
.top-bar a {
  color: var(--gold) !important;
}

/* ── Destination Pages ── */
.dest-hero {
  position: relative;
}

.dest-hero-bg::after {
  background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 100%) !important;
}

.dest-content {
  background: #ffffff !important;
}

.dest-content h2 {
  color: #1a1a1a !important;
}

.dest-content h2 em {
  color: var(--gold) !important;
}

.dest-content p {
  color: #444 !important;
}

.dest-content ul li {
  color: #444 !important;
}

.dest-content ul li::before {
  color: var(--gold) !important;
}

/* ── Fleet Pages ── */
.fleet-hero,
.fleet-detail {
  background: #ffffff !important;
}

.fleet-detail h2 {
  color: #1a1a1a !important;
}

.fleet-detail p {
  color: #444 !important;
}

/* ── Reservation / Contact specific styles ── */
/* Keep reservation and contact pages with their own style (as per user instruction) */

/* ── Cookie Banner ── */
.cookie-banner {
  background: #ffffff !important;
  color: #333 !important;
  border-top: 1px solid rgba(0,0,0,.1) !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08) !important;
}

/* ── Scroll to top ── */
.scroll-top {
  background: var(--gold) !important;
  color: #fff !important;
}

/* ── WhatsApp Widget ── */
.whatsapp-widget {
  box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
}

/* ── Animation Reveals ── */
.reveal {
  color: inherit !important;
}

/* ── Cards general ── */
.card,
.feature-card,
.advantage-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

/* ── Pricing / Booking ── */
.price-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
}

.price-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

/* ── FAQ ── */
.faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

.faq-question {
  color: #1a1a1a !important;
}

.faq-answer {
  color: #555 !important;
}

/* ── Legal Pages (CGV, Mentions, etc.) ── */
.legal-content,
.legal-section {
  background: #ffffff !important;
  color: #333 !important;
}

/* ── Services V2 Image Cards ── */
.megamenu {
  background: #ffffff !important;
}

.megamenu-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

.megamenu-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* ── Hardcoded gradient overrides ── */
.parallax-section::before,
.parallax-bg::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(245,245,243,0.80) 40%, rgba(255,255,255,0.85) 100%) !important;
}

/* ── Services section background on home ── */
#services {
  background: #ffffff !important;
}

#destinations {
  background: #f8f7f5 !important;
}

#flotte {
  background: #ffffff !important;
}

/* ── Loader logo ── */
.loader-logo {
  color: var(--gold) !important;
}

/* ── Text color fixes for light bg ── */
h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a;
}

p {
  color: #444;
}

/* ── Links ── */
a:not(.btn):not(.nav-links a):not(.footer-col a):not(.hero a) {
  color: var(--gold);
}

/* ── Specific hardcoded overrides ── */
.trust-banner,
.trust-bar {
  background: #f8f7f5 !important;
  color: #555 !important;
}

.trust-banner span,
.trust-bar span {
  color: #555 !important;
}

/* ── Festival/Event pages ── */
.event-hero::after {
  background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.6)) !important;
}

.event-content {
  background: #ffffff !important;
  color: #333 !important;
}

/* ── Airport transfer pages ── */
.airport-hero::after {
  background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.6)) !important;
}

.airport-content {
  background: #ffffff !important;
  color: #333 !important;
}

/* ── Table styles ── */
table {
  background: #ffffff !important;
  color: #333 !important;
}

table th {
  background: #f5f5f3 !important;
  color: #1a1a1a !important;
}

table td {
  border-color: rgba(0,0,0,.06) !important;
}

/* ── Selection color ── */
::selection {
  background: rgba(180,150,80,.2);
  color: #1a1a1a;
}


/* ══════════════════════════════════════════════════════════
   LIGHT THEME FIXES — Service items and other white text
   ══════════════════════════════════════════════════════════ */

/* ── Service Item Cards (Services Showcase) ── */
.service-item {
  color: #1a1a1a !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

.service-item:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
}

.service-content h3 {
  color: #1a1a1a !important;
}

.service-content p {
  color: #555 !important;
}

.service-number {
  color: var(--gold) !important;
}

.service-link {
  color: var(--gold) !important;
}

.service-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%) !important;
}

/* ── Megamenu Label ── */
.megamenu-label {
  color: var(--gold) !important;
}

/* ── Fleet Card Text ── */
.fleet-card {
  color: #1a1a1a !important;
  background: #ffffff !important;
}

.fleet-card h3 {
  color: #1a1a1a !important;
}

.fleet-tag {
  color: var(--gold) !important;
}

.fleet-specs {
  color: #555 !important;
}

.fleet-features li {
  color: #444 !important;
}

/* ── Destination Cards Text ── */
.dest-item h3,
.dest-card h3 {
  color: #ffffff !important;
}

/* ── Trust Banner / Info Bar Text ── */
.trust-banner *,
.trust-bar * {
  color: #555 !important;
}

.trust-banner .gold-dot,
.trust-bar .gold-dot {
  color: var(--gold) !important;
}

/* ── Section with parallax/bg image ── */
.parallax-section {
  color: #1a1a1a !important;
}

/* ── Why Us Section ── */
.whyus-section {
  background: #f8f7f5 !important;
}

.whyus-content {
  color: #1a1a1a !important;
}

.whyus-list li {
  color: #333 !important;
}

.whyus-number {
  color: var(--gold) !important;
}

/* ── Testimonials ── */
.testimonial-item {
  background: #ffffff !important;
  color: #333 !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

.testimonial-name {
  color: #1a1a1a !important;
}

.testimonial-role {
  color: #888 !important;
}

.testimonial-stars {
  color: var(--gold) !important;
}

/* ── Global text color fix for elements with var(--white) ── */
.section-label,
.section-title,
.section-subtitle {
  color: inherit !important;
}

.section-title {
  color: #1a1a1a !important;
}

.section-title em {
  color: var(--gold) !important;
}

.section-subtitle {
  color: #555 !important;
}

.section-label {
  color: var(--gold) !important;
}

/* ── Ensure all non-hero, non-footer h2/h3 are dark ── */
section:not(.hero) h2:not(.booking-banner h2) {
  color: #1a1a1a !important;
}

section:not(.hero) h2 em {
  color: var(--gold) !important;
}

/* ── Phone link in info bar ── */
.phone-link {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ── Navigation when at top (transparent to white) ── */
nav:not(.scrolled) {
  background: rgba(255,255,255,.95) !important;
}

nav:not(.scrolled) .nav-links a {
  color: #333 !important;
}

nav:not(.scrolled) .nav-logo {
  color: #1a1a1a !important;
}

nav:not(.scrolled) .lang-current {
  color: #333 !important;
}

/* ── Cookie banner text ── */
.cookie-banner * {
  color: #333 !important;
}

.cookie-banner .btn-gold {
  color: #fff !important;
}

/* ── WhatsApp widget ── */
.whatsapp-widget .whatsapp-text {
  color: #333 !important;
}


/* ══════════════════════════════════════════════════════════
   CRITICAL FIX — Remove dark overlays on all sections
   These ::before overlays were for dark theme depth effects
   ══════════════════════════════════════════════════════════ */

/* Remove dark ::before overlays on ALL content sections (NOT hero) */
#services::before,
#flotte::before,
.fleet-section::before,
#destinations::before,
.palaces-section::before,
.reviews-section::before,
#avis::before {
  background: none !important;
  display: none !important;
}

/* The unnamed sections too */
section:not(.hero):not(.booking-banner)::before {
  background: none !important;
  opacity: 0 !important;
}

/* Also fix ::after for the same sections */
section:not(.hero):not(.booking-banner)::after {
  background: none !important;
  opacity: 0 !important;
}

/* Keep hero overlay (the hero needs to stay dark) */
.hero::before {
  display: block !important;
}

/* Keep booking banner dark */
.booking-banner::before {
  display: block !important;
}

/* ── Fix section background images (parallax sections) ── */
/* These sections had bg-attachment fixed images with dark overlays */
/* Now they should be clean light backgrounds */
section[style*="background"],
.parallax {
  background-color: #ffffff !important;
}

/* ── Ensure correct z-index stacking ── */
#services .section-label,
#services .section-title,
#services .section-subtitle,
#services .services-showcase,
#flotte .section-label,
#flotte .section-title,
.fleet-section .section-label,
.fleet-section .section-title,
.fleet-grid,
#destinations .section-label,
#destinations .section-title,
.dest-grid,
.palaces-section .section-label,
.palaces-section .section-title,
.palaces-grid,
.reviews-section .section-label,
.reviews-section .section-title {
  position: relative;
  z-index: 2 !important;
}

/* ── Ensure correct section backgrounds ── */
#services {
  background: #ffffff !important;
}

.fleet-section,
#flotte {
  background: #f8f7f5 !important;
}

#destinations {
  background: #ffffff !important;
}

.palaces-section {
  background: #f8f7f5 !important;
}

.reviews-section,
#avis {
  background: #ffffff !important;
}

/* ── Navigation scrolled state ── */
.site-header.scrolled,
nav.scrolled {
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
}

.site-header.scrolled .nav-links a,
nav.scrolled .nav-links a {
  color: #333 !important;
}

.site-header.scrolled .nav-logo,
nav.scrolled .nav-logo {
  color: #1a1a1a !important;
}

nav.scrolled .lang-current {
  color: #333 !important;
}

/* ── Bottom bar (dark) fix ── */
.bottom-bar {
  background: #1a1a1a !important;
}


/* ══════════════════════════════════════════════════════════
   INLINE STYLE OVERRIDES — Fix inline styles in HTML pages
   These override inline <style> tags in destination pages
   ══════════════════════════════════════════════════════════ */

/* ── Global text color catch-all ── */
body p,
body li,
body td,
body span:not(.nav-logo):not(.section-label),
body div:not(.hero-content):not(.hero-ctas) {
  color: #333 !important;
}

/* ── Re-apply correct colors for specific elements ── */
/* Hero keeps white text */
.hero *,
.hero-content *,
.hero-pretitle,
.hero-title,
.hero-title em,
.hero-subtitle,
.hero-ctas * {
  color: #ffffff !important;
}

.hero-title em {
  color: var(--gold-lt) !important;
}

.hero-pretitle {
  color: rgba(255,255,255,.7) !important;
}

.hero-subtitle {
  color: rgba(255,255,255,.8) !important;
}

/* Destination hero keeps white text */
.dest-hero *,
.dest-hero-content *,
.dest-hero-content h1,
.dest-hero-content p {
  color: #ffffff !important;
}

.dest-hero-content h1 em {
  color: var(--gold-lt) !important;
}

/* Footer keeps light text on dark */
.site-footer *,
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer a {
  color: rgba(255,255,255,.6) !important;
}

.site-footer h4 {
  color: #ffffff !important;
}

.site-footer .nav-logo,
.site-footer .nav-logo span {
  color: #ffffff !important;
}

.footer-bottom {
  color: rgba(255,255,255,.4) !important;
}

/* Booking banner keeps light text */
.booking-banner *,
.booking-banner h2,
.booking-banner p {
  color: #ffffff !important;
}

.booking-banner p {
  color: rgba(255,255,255,.7) !important;
}

/* ── Section-specific text colors ── */
.section-label {
  color: var(--gold) !important;
}

.section-title,
.section-title * {
  color: #1a1a1a !important;
}

.section-title em {
  color: var(--gold) !important;
}

.section-subtitle {
  color: #555 !important;
}

/* ── Headings in content areas ── */
body h1:not(.hero-title):not(.dest-hero-content h1) {
  color: #1a1a1a !important;
}

body h2,
body h3,
body h4 {
  color: #1a1a1a !important;
}

body h2 em,
body h3 em {
  color: var(--gold) !important;
}

/* Footer headings stay white */
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: #ffffff !important;
}

/* Booking banner headings stay white */
.booking-banner h2,
.booking-banner h3 {
  color: #ffffff !important;
}

/* ── Nice/Destination page specific ── */
.nice-section p,
.nice-section li,
.nice-section span {
  color: #444 !important;
}

.nice-section h2,
.nice-section h3 {
  color: #1a1a1a !important;
}

.nice-section h2 em {
  color: var(--gold) !important;
}

/* ── All destination content ── */
.dest-content p {
  color: #444 !important;
  opacity: 1 !important;
}

.dest-content ul li {
  color: #444 !important;
  opacity: 1 !important;
}

/* ── Service cards ── */
.service-item,
.service-item * {
  color: #1a1a1a !important;
}

.service-content p {
  color: #555 !important;
}

.service-number,
.service-link {
  color: var(--gold) !important;
}

/* ── Fleet cards ── */
.fleet-card *,
.fleet-card p,
.fleet-card li {
  color: #333 !important;
}

.fleet-card h3 {
  color: #1a1a1a !important;
}

/* ── Advantages/Feature cards ── */
.advantage-card *,
.feature-card * {
  color: #333 !important;
}

.advantage-card h3,
.feature-card h3 {
  color: #1a1a1a !important;
}

.advantage-card h4,
.feature-card h4 {
  color: var(--gold) !important;
}

/* ── Gold accent elements ── */
.gold-dot,
.divider,
em {
  color: var(--gold) !important;
}

/* ── Buttons text fix ── */
.btn-gold,
.btn-gold * {
  color: #fff !important;
}

.btn-outline {
  color: var(--gold) !important;
}

/* Hero buttons */
.hero .btn-outline {
  color: #fff !important;
}

/* ── Nav links ── */
nav a,
.nav-links a,
.site-header a {
  color: #333 !important;
}

nav a:hover,
.nav-links a:hover {
  color: var(--gold) !important;
}

/* ── Card headings on destination pages ── */
.nice-card h4,
.nice-card-title {
  color: #1a1a1a !important;
}

.nice-card p {
  color: #555 !important;
}

/* ── FAQ ── */
.faq-question,
.nice-faq .faq-question {
  color: #1a1a1a !important;
}

.faq-answer,
.faq-answer p,
.nice-faq .faq-answer,
.nice-faq .faq-answer p {
  color: #444 !important;
}

/* ── CTA sections ── */
.nice-cta-section {
  background: #1a1a1a !important;
}

.nice-cta-section *,
.nice-cta-section h2,
.nice-cta-section p {
  color: #ffffff !important;
}

/* ── Tables ── */
.nice-section table,
table td,
table th {
  color: #333 !important;
}

/* ── Opacity fixes ── */
.dest-content p,
.dest-content li,
.nice-section p {
  opacity: 1 !important;
}

/* ── Breadcrumb ── */
.breadcrumb,
.breadcrumb * {
  color: #666 !important;
}

.breadcrumb .active {
  color: #1a1a1a !important;
}


/* ══════════════════════════════════════════════════════════
   HERO FIX — Ensure hero-bg covers the full hero area
   ══════════════════════════════════════════════════════════ */
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.hero-lines {
  position: relative !important;
  z-index: 1 !important;
}

/* Dest hero bg fix */
.dest-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
