/* ══════════════════════════════════════════════════
   Brnada Davor – Taxi & Transfers  ·  styles.css
   ══════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Enforce the HTML `hidden` attribute regardless of other CSS rules */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--champagne); }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--highlight);
  background: var(--champagne);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --navy:      #0b2447;
  --navy-mid:  #19376d;
  --navy-soft: #1e3a5f;
  --wa:        #25d366;
  --wa-dark:   #128c7e;
  --white:     #ffffff;
  --champagne: #f2ead8;
  --champagne-2: #e8dfc8;
  --highlight: #0b2447;
  --navy-bg:   #0b2447;
  --navy-bg-2: #19376d;
  --gray-500:  #4a5568;
  --gray-700:  #2d3748;

  --gold:  #C9A84C;
  --gold-2: rgba(201,168,76,.35);
  --r-sm: 6px; --r: 12px; --r-lg: 18px;
  --sh:    0 4px 14px rgba(0,0,0,.08);
  --sh-md: 0 8px 28px rgba(0,0,0,.10);
  --sh-lg: 0 16px 48px rgba(0,0,0,.13);
  --dur: 200ms; --ease: cubic-bezier(.4,0,.2,1);
  --container: 1080px;
  --hh: 72px;   /* header height */
}

/* ── LAYOUT ─────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); font-weight: 700; line-height: 1.18; letter-spacing: -.02em; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .875rem 1.875rem;
  border-radius: var(--r); font-size: 1rem; font-weight: 600;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
  white-space: nowrap;
}
.btn svg { width: 1.2rem; height: 1.2rem; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn--wa:hover { background: var(--wa-dark); box-shadow: 0 6px 22px rgba(37,211,102,.4); }

.btn--ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.2); }

/* ── HEADER (dark theme: dark blue gradient) ─────── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  transition: box-shadow var(--dur) var(--ease);
}
.header--shadow { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.header__inner { display: flex; align-items: center; gap: 0; height: var(--hh); width: 100%; }
.header__brand { flex: 1; min-width: 0; display: flex; align-items: center; gap: .75rem; padding-inline: 1.5rem; }

/* Logo */
.logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.logo__icon { width: 38px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-size: .95rem; font-weight: 600; color: #fff; }
.logo__name strong { color: #fff; font-weight: 800; }
.logo__sub { font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .07em; text-transform: uppercase; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav__link {
  color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 500;
  padding: .45rem .85rem; border-radius: var(--r-sm);
  transition: color var(--dur), background var(--dur);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Actions */
.header__actions { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; padding-right: 1.5rem; }

.lang-btn {
  font-size: .78rem; font-weight: 700; color: #fff;
  padding: .28rem .65rem;
  border: 1.5px solid rgba(255,255,255,.5); border-radius: 999px;
  letter-spacing: .06em;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.lang-btn:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.header__wa {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; background: var(--wa);
  border-radius: 50%; color: #fff;
  transition: background var(--dur), transform var(--dur);
}
.header__wa svg { width: 1.05rem; height: 1.05rem; }
.header__wa:hover { background: var(--wa-dark); transform: scale(1.1); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .3rem; border-radius: var(--r-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 999px; transition: transform var(--dur) var(--ease), opacity var(--dur); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { display: none; flex-direction: column; background: var(--navy-mid); overflow: hidden; max-height: 0; transition: max-height 350ms var(--ease); }
.mobile-nav.open { max-height: 420px; }
.mobile-nav__link {
  display: block; color: rgba(255,255,255,.82); font-size: 1rem; font-weight: 500;
  padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--dur), color var(--dur);
}
.mobile-nav__link:hover { background: rgba(255,255,255,.09); color: #fff; }
.mobile-nav__phone { display: block; color: #fff; font-weight: 700; font-size: 1.1rem; padding: 1.25rem 1.5rem; text-align: center; }

/* ── HERO ────────────────────────────────────────── */
/* Hero (dark theme: dark blue with gradient like header/footer) */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding-block: 7rem 5rem; overflow: hidden;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 40%, #0a1628 70%, #06121e 100%);
}

/* Dot grid texture */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}

/* Decorative rings */
.hero__deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.deco-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); }
.deco-ring--1 { width: 680px; height: 680px; top: -180px; right: -200px; }
.deco-ring--2 { width: 440px; height: 440px; bottom: 60px;  left: -160px; }
.deco-ring--3 { width: 920px; height: 920px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(255,255,255,.04); }

.hero__inner { position: relative; z-index: 1; max-width: 750px; }

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .38rem 1.1rem; border-radius: 999px; margin-bottom: 1.75rem;
}

.hero__title {
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero__sub {
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.7); margin-bottom: 2.75rem;
  font-weight: 400; letter-spacing: .01em;
}

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

.hero__scroll {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  animation: scrollBounce 2.4s ease-in-out infinite;
  display: flex;
}
.hero__scroll svg { width: 1.5rem; height: 1.5rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .35; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: .6;  }
}

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 3px solid transparent;
  padding-block: 1.375rem;
  box-shadow: 0 4px 0 0 var(--champagne);
}
.stats-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem 2.5rem; text-align: center;
}
.stat__val {
  font-size: 1.55rem; font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -.02em;
}
.stat__lbl {
  font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55);
  letter-spacing: .07em; text-transform: uppercase; margin-top: .3rem;
}
.stat-div {
  width: 1px; height: 2.5rem;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── SECTIONS ────────────────────────────────────── */
/* LIGHT THEME: champagne only */
.section { padding-block: 5.5rem; background: var(--champagne); }
.section__hd::before { background: var(--highlight); }
.section__hd h2 { color: var(--highlight); margin-bottom: .75rem; }
.section__hd p  { color: var(--gray-700); font-size: 1.05rem; }

/* DARK THEME: dark blue with gradient (like footer/header) */
.section--dark {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 50%, #06121e 100%);
  color: #fff;
}
.section--dark .section__hd::before { background: #fff; }
.section--dark .section__hd h2 { color: #fff; }
.section--dark .section__hd p  { color: rgba(255,255,255,.8); }

.section__hd {
  text-align: center;
  margin-inline: auto;
  max-width: 580px;
  margin-bottom: 3.25rem;
}
.section__hd::before {
  content: '';
  display: block;
  width: 3rem; height: 3px;
  background: var(--highlight);
  border-radius: 2px;
  margin: 0 auto .9rem;
}
.section__hd--light h2 { color: #fff; }
.section__hd--light p  { color: rgba(255,255,255,.65); }

/* ── SERVICES ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--champagne); border: 2px solid var(--highlight);
  border-radius: var(--r-lg); padding: 2.25rem 1.875rem;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.service-card__icon {
  width: 58px; height: 58px; background: var(--champagne-2);
  border: 2px solid var(--highlight); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.375rem; color: var(--highlight);
  transition: background var(--dur);
}
.service-card:hover .service-card__icon { background: #e0d6c0; }
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--highlight); margin-bottom: .55rem; }
.service-card p  { color: var(--gray-700); font-size: .95rem; line-height: 1.65; }

/* ── DESTINATIONS ────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-bottom: 1.5rem;
}
.dest-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  cursor: default;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.3);
}
.dest-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.dest-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 450ms var(--ease);
}
.dest-card:hover .dest-card__img img { transform: scale(1.06); }
.dest-card__label {
  display: flex; align-items: center; gap: .55rem;
  padding: .75rem 1rem;
  font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.9);
}
.dest-card__pin { color: rgba(255,255,255,.7); flex-shrink: 0; width: .95rem; height: .95rem; }
.dest-more { text-align: center; color: rgba(255,255,255,.4); font-size: .9rem; font-style: italic; }

@media (max-width: 768px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}

/* ── FLEET ───────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem; margin-bottom: 2.5rem;
}
.vehicle {
  background: var(--champagne); border: 2px solid var(--highlight);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.vehicle:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

/* Vehicle photo — single image, full width */
.vehicle__photos {
  display: block;
  border-bottom: 2px solid var(--highlight);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.vehicle__photos img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms var(--ease);
}
.vehicle:hover .vehicle__photos img { transform: scale(1.04); }

/* Product-shot vehicles */
.vehicle__photos--product { background: var(--champagne-2); border-bottom: 2px solid var(--highlight); }
.vehicle__photos--product img {
  object-fit: contain;
  background: var(--champagne);
  padding: .5rem;
}

/* Vehicle body */
/* Vehicle body */
.vehicle__body { padding: 1.875rem; }
.vehicle__body h3 { color: var(--highlight); font-size: 1.25rem; margin-bottom: 1rem; }
.vehicle__specs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.25rem; }
.vehicle__specs li {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--champagne-2); border: 2px solid var(--highlight);
  border-radius: 999px;
  padding: .3rem .85rem; font-size: .8rem; font-weight: 500; color: var(--highlight);
}
.vehicle__specs li::before {
  content: ''; width: .38rem; height: .38rem;
  background: var(--highlight); border-radius: 50%; flex-shrink: 0;
}
.vehicle__body p { color: var(--gray-700); font-size: .95rem; line-height: 1.7; }

/* Driver note (light section = champagne + dark blue highlight) */
.driver-note {
  display: flex; align-items: flex-start; gap: 1.75rem;
  background: var(--champagne);
  border: 2px solid var(--highlight);
  border-radius: var(--r-lg); padding: 2.25rem 2.5rem;
  color: var(--highlight);
}
.driver-note__icon {
  flex-shrink: 0; width: 72px; height: 72px;
  background: var(--champagne-2);
  border: 2px solid var(--highlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--highlight);
}
.driver-note__icon svg { width: 42px; height: 42px; }
.driver-note__body h3 { color: var(--highlight); margin-bottom: .6rem; font-size: 1.15rem; }
.driver-note__body p  { color: var(--gray-700); font-size: .95rem; line-height: 1.7; max-width: 54ch; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 2rem;
}
.contact-card {
  display: flex; align-items: center; gap: 1.375rem;
  padding: 2rem 2.25rem; border-radius: var(--r-lg); font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); filter: brightness(1.06); }
.contact-card__ico { width: 2.5rem; height: 2.5rem; flex-shrink: 0; }
.contact-card > div { display: flex; flex-direction: column; gap: .25rem; }
.contact-card strong { font-size: .9rem; opacity: .88; }
.contact-card span   { font-size: 1.25rem; letter-spacing: .02em; }
.contact-card--wa    { background: var(--wa); color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.contact-card--wa:hover { background: var(--wa-dark); }
.contact-card--phone { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.contact-card--phone:hover { background: rgba(255,255,255,.14); }
.legal { text-align: center; color: rgba(255,255,255,.3); font-size: .85rem; }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 50%, #06121e 100%); color: rgba(255,255,255,.44); padding-block: 2rem; font-size: .875rem; }
[data-theme="dark"] .footer {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(201,168,76,.2);
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__nav a { color: rgba(255,255,255,.36); transition: color var(--dur); }
.footer__nav a:hover { color: rgba(255,255,255,.75); }

/* ── FLOATING WHATSAPP ───────────────────────────── */
.wa-fab {
  position: fixed; left: auto; right: 1.5rem; bottom: 1.5rem; z-index: 300;
  width: 3.5rem; height: 3.5rem; background: var(--wa);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
}
.wa-fab svg { width: 1.75rem; height: 1.75rem; }
.wa-fab:hover { transform: scale(1.12); background: var(--wa-dark); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav        { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: flex; }
  .header__wa { display: none; }
  .header__brand { padding-right: 0; padding-inline-end: 0; }
  .header__actions { padding-right: 0.75rem; }
}

@media (max-width: 768px) {
  :root { --hh: 64px; }
  .section          { padding-block: 3.75rem; }
  .hero             { padding-block: 5.5rem 3.5rem; }
  .hero__actions    { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .fleet-grid       { grid-template-columns: 1fr; }
  .vehicle__photos  { grid-template-columns: 1fr; }
  .vehicle__photo-secondary { display: none; }
  .driver-note      { flex-direction: column; padding: 1.75rem; }
  .footer__inner    { justify-content: center; text-align: center; }
  .footer__nav      { justify-content: center; }
  .dest-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__inner { gap: .5rem; }
  .stat             { padding: .5rem 1.5rem; }
  .stat-div         { height: 2rem; }
  .wa-fab           { left: auto !important; right: 1rem !important; bottom: 1rem; }
}

@media (max-width: 480px) {
  .container      { padding-inline: 1rem; }
  .header__brand { padding-left: 1rem; padding-right: 0; padding-inline: 1rem 0; }
  .header__actions { padding-right: 0.5rem; }
  .dest-grid      { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .stat-div       { display: none; }
  .stats-bar__inner { justify-content: space-around; }
  .stat           { padding: .5rem .75rem; }
  .header__actions { padding-right: 0.5rem; }
  .wa-fab         { left: auto !important; right: 1rem !important; bottom: 1rem; width: 3rem; height: 3rem; }
  .wa-fab svg     { width: 1.5rem; height: 1.5rem; }
}

/* ══════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ══════════════════════════════════════════════════ */
.theme-btn {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.theme-btn:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.theme-btn svg { width: 1rem; height: 1rem; pointer-events: none; }

/* Dark mode: show sun (click → go light) */
.theme-btn .icon-sun  { display: block; }
.theme-btn .icon-moon { display: none; }
/* Light mode: show moon (click → go dark) */
[data-theme="light"] .theme-btn .icon-sun  { display: none; }
[data-theme="light"] .theme-btn .icon-moon { display: block; }
[data-theme="light"] .theme-btn {
  color: var(--highlight);
  border-color: rgba(11,36,71,.35);
}
[data-theme="light"] .theme-btn:hover { background: rgba(11,36,71,.08); border-color: var(--highlight); }

/* ══════════════════════════════════════════════════
   DARK THEME — uniform navy, gold accents
   (default: data-theme="dark")
   ══════════════════════════════════════════════════ */

/* Solid background — uniform across all scroll positions */
[data-theme="dark"] body {
  background: #0b2447;
}

/* ALL content sections: uniform solid — no per-section gradient restart */
[data-theme="dark"] .section,
[data-theme="dark"] .section--dark {
  background: transparent;
}

/* Subtle section divider so sections feel separated without jarring cuts */
[data-theme="dark"] .section + .section,
[data-theme="dark"] .section--dark + .section,
[data-theme="dark"] .section + .section--dark,
[data-theme="dark"] .section--dark + .section--dark {
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Section headings — gold accent bar, white text */
[data-theme="dark"] .section__hd::before              { background: var(--gold); }
[data-theme="dark"] .section--dark .section__hd::before { background: var(--gold); }
[data-theme="dark"] .section__hd h2                  { color: #fff; }
[data-theme="dark"] .section--dark .section__hd h2   { color: #fff; }
[data-theme="dark"] .section__hd p                   { color: rgba(255,255,255,.7); }
[data-theme="dark"] .section--dark .section__hd p    { color: rgba(255,255,255,.7); }
[data-theme="dark"] .section__hd--light h2            { color: #fff; }
[data-theme="dark"] .section__hd--light p             { color: rgba(255,255,255,.7); }

/* Stats bar: uniform dark, gold bottom accent */
[data-theme="dark"] .stats-bar {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 2px solid rgba(201,168,76,.3);
  box-shadow: none;
}

/* Service cards — gold borders */
[data-theme="dark"] .service-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(201,168,76,.28);
}
[data-theme="dark"] .service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.55);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
[data-theme="dark"] .service-card__icon {
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.35);
  color: var(--gold);
}
[data-theme="dark"] .service-card:hover .service-card__icon { background: rgba(201,168,76,.18); }
[data-theme="dark"] .service-card h3 { color: #fff; }
[data-theme="dark"] .service-card p  { color: rgba(255,255,255,.68); }

/* Destinations */
[data-theme="dark"] .dest-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(201,168,76,.28);
}
[data-theme="dark"] .dest-card:hover { border-color: rgba(201,168,76,.6); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
[data-theme="dark"] .dest-card__label { color: #fff; }
[data-theme="dark"] .dest-card__pin { color: var(--gold); }

/* Fleet — gold borders */
[data-theme="dark"] .vehicle {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(201,168,76,.28);
  box-shadow: none;
}
[data-theme="dark"] .vehicle:hover {
  border-color: rgba(201,168,76,.55);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
[data-theme="dark"] .vehicle__photos {
  border-bottom: 1.5px solid rgba(201,168,76,.28);
}
[data-theme="dark"] .vehicle__body h3 { color: #fff; }
[data-theme="dark"] .vehicle__specs li {
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.35);
  color: var(--gold);
}
[data-theme="dark"] .vehicle__specs li::before { background: var(--gold); opacity: .7; }
[data-theme="dark"] .vehicle__body p { color: rgba(255,255,255,.68); }

/* Driver note — gold border */
[data-theme="dark"] .driver-note {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(201,168,76,.28);
  color: #fff;
}
[data-theme="dark"] .driver-note__icon {
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.35);
  color: var(--gold);
}
[data-theme="dark"] .driver-note__body h3 { color: #fff; }
[data-theme="dark"] .driver-note__body p  { color: rgba(255,255,255,.68); }

/* Contact cards in dark theme */
[data-theme="dark"] .contact-card--phone {
  border-color: rgba(201,168,76,.28);
}
[data-theme="dark"] .contact-card--phone:hover { border-color: rgba(201,168,76,.55); }

/* ══════════════════════════════════════════════════
   LIGHT THEME — all sections use champagne palette
   ══════════════════════════════════════════════════ */

[data-theme="light"] body { background: var(--champagne); color: var(--highlight); }

/* Header → champagne */
[data-theme="light"] .header {
  background: linear-gradient(180deg, var(--champagne) 0%, var(--champagne-2) 100%);
  border-bottom: 1px solid rgba(11,36,71,.12);
}
[data-theme="light"] .header--shadow { box-shadow: 0 4px 24px rgba(11,36,71,.12); }
[data-theme="light"] .logo__name        { color: var(--navy); }
[data-theme="light"] .logo__name strong { color: var(--navy); }
[data-theme="light"] .logo__sub         { color: rgba(11,36,71,.45); }
[data-theme="light"] .nav__link         { color: rgba(11,36,71,.72); }
[data-theme="light"] .nav__link:hover   { color: var(--navy); background: rgba(11,36,71,.07); }
[data-theme="light"] .lang-btn          { color: var(--navy); border-color: rgba(11,36,71,.35); }
[data-theme="light"] .lang-btn:hover    { background: rgba(11,36,71,.07); border-color: var(--navy); }
[data-theme="light"] .hamburger span    { background: var(--navy); }

/* Mobile nav */
[data-theme="light"] .mobile-nav { background: var(--champagne-2); }
[data-theme="light"] .mobile-nav__link {
  color: rgba(11,36,71,.78);
  border-bottom-color: rgba(11,36,71,.08);
}
[data-theme="light"] .mobile-nav__link:hover { background: rgba(11,36,71,.06); color: var(--navy); }
[data-theme="light"] .mobile-nav__phone { color: var(--navy); }

/* Hero → champagne */
[data-theme="light"] .hero {
  background: linear-gradient(180deg, var(--champagne-2) 0%, var(--champagne) 55%, #ede5ce 100%);
  color: var(--highlight);
}
[data-theme="light"] .hero::before {
  background-image: radial-gradient(rgba(11,36,71,.055) 1px, transparent 1px);
}
[data-theme="light"] .deco-ring        { border-color: rgba(11,36,71,.06); }
[data-theme="light"] .hero__badge      { background: rgba(11,36,71,.08); color: var(--highlight); border-color: rgba(11,36,71,.2); }
[data-theme="light"] .hero__title      { color: var(--highlight); }
[data-theme="light"] .hero__sub        { color: rgba(11,36,71,.62); }
[data-theme="light"] .hero__scroll     { color: rgba(11,36,71,.3); }
[data-theme="light"] .btn--ghost       { background: rgba(11,36,71,.07); color: var(--highlight); border-color: rgba(11,36,71,.22); }
[data-theme="light"] .btn--ghost:hover { background: rgba(11,36,71,.14); }

/* Stats bar → champagne */
[data-theme="light"] .stats-bar {
  background: var(--champagne-2);
  border-top: 1px solid rgba(11,36,71,.09);
  border-bottom: 2px solid rgba(11,36,71,.14);
  box-shadow: none;
}
[data-theme="light"] .stat__val { color: var(--highlight); }
[data-theme="light"] .stat__lbl { color: rgba(11,36,71,.5); }
[data-theme="light"] .stat-div  { background: rgba(11,36,71,.12); }

/* Dark sections → champagne */
[data-theme="light"] .section--dark {
  background: var(--champagne);
  color: var(--highlight);
}
[data-theme="light"] .section--dark .section__hd::before { background: var(--highlight); }
[data-theme="light"] .section--dark .section__hd h2 { color: var(--highlight); }
[data-theme="light"] .section--dark .section__hd p  { color: var(--gray-700); }
[data-theme="light"] .section__hd--light h2 { color: var(--highlight); }
[data-theme="light"] .section__hd--light p  { color: var(--gray-700); }

/* Destinations */
[data-theme="light"] .dest-card {
  background: var(--champagne-2);
  border-color: rgba(11,36,71,.22);
}
[data-theme="light"] .dest-card:hover { border-color: var(--highlight); box-shadow: 0 10px 30px rgba(11,36,71,.18); }
[data-theme="light"] .dest-card__label { color: var(--highlight); }
[data-theme="light"] .dest-card__pin { color: var(--highlight); }
[data-theme="light"] .dest-more      { color: rgba(11,36,71,.4); }

/* Contact */
[data-theme="light"] .contact-card--phone {
  background: var(--champagne-2);
  color: var(--highlight);
  border-color: rgba(11,36,71,.22);
}
[data-theme="light"] .contact-card--phone:hover { background: #e0d6c0; }
[data-theme="light"] .legal { color: rgba(11,36,71,.35); }

/* Footer → champagne */
[data-theme="light"] .footer {
  background: var(--champagne-2);
  border-top: 1px solid rgba(11,36,71,.12);
  color: rgba(11,36,71,.5);
}
[data-theme="light"] .footer__nav a       { color: rgba(11,36,71,.42); }
[data-theme="light"] .footer__nav a:hover { color: var(--highlight); }
