/*
Theme Name: taxi-albert-theme-v1
Theme URI: https://taxialbert.com
Author: Deluxe Studios L.L.C
Author URI: https://instagram.com/deluxe.studios.llc
Description: Premium taxi & transfer service theme for the Dolomites — Brixen / Bressanone, South Tyrol. Features hero video/image slideshow, fleet gallery with lightbox, cookie banner, social proof notifications, mobile-optimized design, dark/light mode, multilingual support (22 languages), and a fully overhauled WordPress admin panel.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: taxi-albert
Tags: taxi, transfer, transport, dolomites, hotel, premium, dark-mode, responsive, multilingual
*/

/* =================================================================
   DESIGN TOKENS — LIGHT (default)
   ================================================================= */
:root {
  --gold: #6EF07A;
  --gold-text: #1a7a27;   /* dark forest green — readable on light backgrounds */
  --gold-l: #8FF59B;
  --gold-d: #3DC44D;
  --gold-rgb: 110, 240, 122;

  --bg: #f7f5f1;
  --bg2: #ffffff;
  --bg3: #edeae3;
  --bg4: #e2ddd4;
  --bg5: #d4cec3;

  --txt: #1c1a16;
  --txt-m: #524d44;
  --txt-d: #8a8478;

  --bdr: rgba(0, 0, 0, .09);
  --bdr-g: rgba(110, 240, 122, .28);

  --sh: 0 8px 32px rgba(0, 0, 0, .12);
  --sh-lg: 0 20px 60px rgba(0, 0, 0, .16);
  --sh-g: 0 6px 32px rgba(110, 240, 122, .30);

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-m: 'Courier New', monospace;

  --r-xs: 4px;
  --r-s: 8px;
  --r: 12px;
  --r-l: 20px;
  --r-xl: 32px;
  --r-f: 9999px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: 0.28s;
  --tf: 0.18s;
  --ts: 0.5s;

  --header-h: 80px;
  --green: #25D366;
  --green-d: #1da851;
  --red: #d63031;
  --white: #ffffff;
  --black: #0d0d0d;
}

/* =================================================================
   DARK THEME
   ================================================================= */
[data-theme="dark"] {
  --gold: #6EF07A;
  --gold-text: #6EF07A;   /* bright green is fine on dark backgrounds */
  --gold-l: #8FF59B;
  --gold-d: #3DC44D;
  --gold-rgb: 110, 240, 122;

  --bg: #0e0e0e;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --bg4: #262626;
  --bg5: #303030;

  --txt: #f0ede6;
  --txt-m: #b8b2a7;
  --txt-d: #706860;

  --bdr: rgba(255, 255, 255, .07);
  --bdr-g: rgba(110, 240, 122, .22);

  --sh: 0 8px 32px rgba(0, 0, 0, .55);
  --sh-lg: 0 20px 60px rgba(0, 0, 0, .7);
  --sh-g: 0 6px 32px rgba(110, 240, 122, .25);
}

/* =================================================================
   KILL ALL GOOGLE TRANSLATE UI
   ================================================================= */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
#goog-gt-tt,
.goog-tooltip,
.goog-te-balloon-frame,
.goog-text-highlight,
.goog-te-gadget-icon {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
}

iframe.skiptranslate,
.skiptranslate iframe {
  display: none !important;
}

#google_translate_element {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

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

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

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--tf) var(--ease);
}

a:hover {
  color: var(--gold-l);
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-b);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.2;
  color: var(--txt);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 110px 0;
}

.section-padding-sm {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin: 0 auto;
}

/* =================================================================
   SECTION LABELS
   ================================================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  opacity: .5;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--txt);
  margin-bottom: 20px;
}

.section-title span,
.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-desc {
  font-size: 17px;
  color: var(--txt-m);
  max-width: 600px;
  line-height: 1.85;
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: var(--r-f);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

.btn svg {
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), .35), 0 0 16px rgba(var(--gold-rgb), .4);
}

.btn-gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  color: #000;
  box-shadow: 0 6px 28px rgba(var(--gold-rgb), .5), 0 0 28px rgba(var(--gold-rgb), .55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--txt);
  border-color: var(--bdr);
}

.btn-outline:hover {
  border-color: var(--txt);
  background: var(--txt);
  color: var(--bg);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  box-shadow: var(--sh-g);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
  background: var(--green-d);
  border-color: var(--green-d);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 12px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 14px;
}

/* =================================================================
   THEME TOGGLE BUTTON
   ================================================================= */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg4);
  border: 1.5px solid var(--bdr-g);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), .1);
  transform: rotate(18deg) scale(1.08);
}

.t-icon {
  position: absolute;
  font-size: 17px;
  line-height: 1;
  display: flex;
  transition: all var(--t) var(--ease);
}

.i-moon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.i-sun {
  opacity: 0;
  transform: scale(.4) rotate(90deg);
}

[data-theme="dark"] .i-moon {
  opacity: 0;
  transform: scale(.4) rotate(-90deg);
}

[data-theme="dark"] .i-sun {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* =================================================================
   CUSTOM LANGUAGE SELECTOR
   ================================================================= */
.lang-selector {
  position: relative;
  z-index: 800;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: var(--r-f);
  background: var(--bg3);
  border: 1.5px solid var(--bdr-g);
  color: var(--txt-m);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  user-select: none;
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), .08);
}

.lang-globe {
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.lang-curr {
  font-weight: 700;
  color: var(--gold);
  font-size: 12px;
}

.lang-caret {
  font-size: 9px;
  opacity: .5;
  transition: transform var(--tf) var(--ease);
}

.lang-selector.open .lang-caret {
  transform: rotate(180deg);
}

.lang-drop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 215px;
  background: var(--bg2);
  border: 1.5px solid var(--bdr-g);
  border-radius: var(--r);
  padding: 6px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.95);
  transition: all .22s cubic-bezier(.16, 1, .3, 1);
  transform-origin: top right;
}

.lang-selector.open .lang-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: var(--r-s);
  cursor: pointer;
  color: var(--txt-m);
  font-size: 13px;
  font-weight: 500;
  transition: background var(--tf) var(--ease), color var(--tf) var(--ease);
}

.lang-opt:hover {
  background: rgba(var(--gold-rgb), .08);
  color: var(--txt);
}

.lang-opt.active {
  background: rgba(var(--gold-rgb), .12);
  color: var(--gold);
  font-weight: 700;
}

.lang-flag {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.lang-name {
  flex: 1;
}

.lang-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--txt-d);
  background: var(--bg4);
  padding: 2px 7px;
  border-radius: var(--r-xs);
  font-family: var(--font-m);
}

.lang-opt.active .lang-code {
  background: rgba(var(--gold-rgb), .15);
  color: var(--gold);
}

/* =================================================================
   HEADER
   ================================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: all var(--t) var(--ease);
  background: transparent;

  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent);
  }

  &:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3));
  }
}

#site-header.scrolled {
  top: 0;
  background: color-mix(in srgb, var(--bg2) 94%, transparent);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--bdr-g), 0 8px 32px rgba(0, 0, 0, .12);
}

/* Ensure fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, white, transparent)) {
  #site-header.scrolled {
    background: var(--bg2);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 20px;
}

/* Force white text in hero zone (before scroll) */
#site-header:not(.scrolled) .logo-name {
  color: white;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

#site-header:not(.scrolled) .logo-sub {
  color: rgba(var(--gold-rgb), .95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

#site-header:not(.scrolled) .main-nav a {
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

#site-header:not(.scrolled) .main-nav a:hover {
  color: #fff;
}

#site-header:not(.scrolled) .header-phone {
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

#site-header:not(.scrolled) .nav-toggle span {
  background: white;
}

#site-header:not(.scrolled) .theme-toggle {
  background: rgba(255, 255, 255, 0.125);
  border-color: brown;
  color: brown;
}

#site-header:not(.scrolled) .lang-btn {
  background: rgba(255, 255, 255, .1);
  border-color: brown;
  color: rgba(255, 255, 255, .85);
}

#site-header:not(.scrolled) .lang-curr {
  color: #fff;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  font-family: var(--font-h);
  color: #000;
  box-shadow: 0 3px 14px rgba(var(--gold-rgb), .35);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: .5px;
  transition: color var(--t) var(--ease);
}

.logo-sub {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: color var(--t) var(--ease);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--txt-m);
  padding: 8px 12px;
  border-radius: var(--r-s);
  transition: all var(--tf) var(--ease);
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: left var(--t) var(--ease), right var(--t) var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  left: 12px;
  right: 12px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--txt-m);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--tf) var(--ease);
}

.header-phone:hover {
  color: var(--gold);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: var(--r-s);
  transition: background var(--tf) var(--ease);
}

.nav-toggle:hover {
  background: rgba(var(--gold-rgb), .1);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt);
  transition: all var(--t) var(--ease);
  border-radius: 2px;
}

/* =================================================================
   HERO — Cinematic full-bleed (taxi-james.it style, elevated)
   ================================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* Background photo */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* The fallback gradient if no image set */
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: linear-gradient(140deg, #111 0%, #1a1208 50%, #0d0d0d 100%);
}

/* Cinematic layered overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .40) 55%, rgba(0, 0, 0, .22) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(0, 0, 0, .35) 0%, transparent 30%);
}

/* Gold bottom accent line */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
}

/* Grid layout */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
}

/* ── Left: editorial text ── */
.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideUp .7s var(--ease) .15s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(42px, 6.5vw, 86px);
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
  opacity: 0;
  animation: slideUp .8s var(--ease) .35s forwards;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
  font-size: .85em;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: slideUp .8s var(--ease) .55s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  opacity: 0;
  animation: slideUp .8s var(--ease) .75s forwards;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  opacity: 0;
  animation: slideUp .8s var(--ease) .95s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num em {
  color: var(--gold);
  font-style: normal;
}

.hero-stat-lbl {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

/* ── Right: Frosted booking card ── */
.hero-card {
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-l);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  opacity: 0;
  animation: slideRight .9s var(--ease) .5s forwards;
}

[data-theme="light"] .hero-card {
  background: rgba(255, 255, 255, .80);
  border-color: rgba(255, 255, 255, .65);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
}

.hero-card-title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

[data-theme="light"] .hero-card-title {
  color: var(--txt);
}

.hero-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 24px;
}

[data-theme="light"] .hero-card-sub {
  color: var(--txt-m);
}

/* Card form inputs */
.hero-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.hero-card .form-group label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

[data-theme="light"] .hero-card .form-group label {
  color: var(--txt-m);
}

.hero-card .form-group input,
.hero-card .form-group select,
.hero-card .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, .09);
  border: 1.5px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-s);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-b);
  transition: border-color var(--tf) var(--ease), box-shadow var(--tf) var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

[data-theme="light"] .hero-card .form-group input,
[data-theme="light"] .hero-card .form-group select {
  background: rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .13);
  color: var(--txt);
}

.hero-card .form-group input::placeholder {
  color: rgba(255, 255, 255, .32);
}

[data-theme="light"] .hero-card .form-group input::placeholder {
  color: var(--txt-d);
}

.hero-card .form-group input:focus,
.hero-card .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .18);
}

/* Select arrow in card */
.hero-card .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='rgba(255,255,255,.45)' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}

[data-theme="light"] .hero-card .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%23888' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
}

.hero-card .form-group select option {
  background: #1a1a1a;
  color: #fff;
}

[data-theme="light"] .hero-card .form-group select option {
  background: #fff;
  color: var(--txt);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card-note {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  text-align: center;
  margin-top: 12px;
}

[data-theme="light"] .hero-card-note {
  color: var(--txt-d);
}

.hero-card-note a {
  color: var(--gold);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.5s forwards;
  transition: opacity var(--t) var(--ease);
}

.hero-scroll:hover {
  opacity: .5 !important;
}

.hero-scroll-text {
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
}

.hero-scroll-line {
  width: 1.5px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(var(--gold-rgb), .8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(.5);
    opacity: .5;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: .65;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* =================================================================
   PARTNER BANNER
   ================================================================= */
#partner-banner {
  background: var(--bg3);
  border-top: 1.5px solid var(--bdr-g);
  border-bottom: 1.5px solid var(--bdr-g);
  padding: 22px 0;
}

.partner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-star {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
}

.partner-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.partner-badge-text .label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.partner-badge-text .name {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--txt);
}

.partner-divider {
  width: 1px;
  height: 36px;
  background: var(--bdr-g);
  flex-shrink: 0;
}

.partner-tagline {
  font-size: 14px;
  color: var(--txt-m);
  max-width: 360px;
  text-align: center;
  line-height: 1.6;
}

.partner-tagline strong {
  color: var(--txt);
  font-weight: 700;
}

.partner-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--tf) var(--ease);
}

.partner-link:hover {
  gap: 11px;
  color: var(--gold-l);
}

/* =================================================================
   SERVICES
   ================================================================= */
#services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}

.service-card:hover {
  border-color: var(--bdr-g);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 18px;
  line-height: 1;
}

.service-title {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--txt-m);
  line-height: 1.7;
}

/* =================================================================
   GALLERY
   ================================================================= */
#gallery {
  background: var(--bg);
}

.gallery-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0 32px;
}

.gallery-tab {
  padding: 9px 20px;
  border-radius: var(--r-f);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--bdr);
  background: transparent;
  color: var(--txt-m);
  transition: all var(--tf) var(--ease);
}

.gallery-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), .35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-s);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg4);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ts) var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 2px solid rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  backdrop-filter: blur(6px);
}

.gallery-delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(214, 48, 49, .85);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tf) var(--ease);
  z-index: 10;
  line-height: 1;
}

.gallery-item:hover .gallery-delete-btn {
  opacity: 1;
}

/* Gallery Remove Button (non-destructive — sets to draft) */
.gallery-remove-btn {
  position: absolute;
  top: 8px;
  right: 44px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(200, 120, 0, .85);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tf) var(--ease);
  z-index: 10;
}

.gallery-item:hover .gallery-remove-btn {
  opacity: 1;
}

/* Gallery Inline Category Changer */
.gallery-cat-changer {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 10;
  opacity: 0;
  transition: opacity var(--tf) var(--ease);
}

.gallery-item:hover .gallery-cat-changer {
  opacity: 1;
}

.gallery-cat-select-inline {
  background: rgba(0, 0, 0, .75);
  color: #fff;
  border: 1px solid rgba(110, 240, 122, .6);
  border-radius: 5px;
  font-size: 11px;
  padding: 3px 6px;
  cursor: pointer;
  max-width: 140px;
  backdrop-filter: blur(4px);
}

.gallery-cat-select-inline:focus {
  outline: none;
  border-color: #6EF07A;
}

/* Glimpse Admin Bar */
.glimpse-admin-bar {
  background: var(--bg2);
  border: 1.5px dashed var(--bdr-g);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.glimpse-admin-label {
  font-size: 13px;
  color: var(--txt);
  white-space: nowrap;
}

/* Glimpse Remove Button */
.glimpse-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(200, 120, 0, .85);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tf) var(--ease);
  z-index: 10;
}

.gallery-item:hover .glimpse-remove-btn {
  opacity: 1;
}

/* Glimpse Picker Modal */
.glimpse-picker-item {
  transition: border-color .2s, transform .2s;
}

.glimpse-picker-item:hover {
  transform: scale(1.04);
}

.glimpse-picker-item.glimpse-picker-selected {
  border-color: #6EF07A !important;
  box-shadow: 0 0 0 2px rgba(110, 240, 122, .4);
}

/* Fix btn-outline visibility in light theme for gallery admin bar */
.gallery-admin-bar .btn-outline,
.glimpse-admin-bar .btn-outline {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}

.gallery-admin-bar .btn-outline:hover,
.glimpse-admin-bar .btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-s);
  transition: opacity .2s ease;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tf) var(--ease);
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, .25);
}

.lightbox-close {
  top: 22px;
  right: 26px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

/* =================================================================
   SONNWIES SECTION
   ================================================================= */
#sonnwies {
  background: var(--bg3);
}

.sonnwies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sonnwies-images {
  position: relative;
  padding-bottom: 32px;
}

.sonnwies-img-main {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
}

.sonnwies-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sonnwies-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 52%;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  border: 5px solid var(--bg3);
  box-shadow: var(--sh);
}

.sonnwies-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sonnwies-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-s);
  transition: border-color var(--tf) var(--ease);
}

.perk-item:hover {
  border-color: var(--bdr-g);
}

.perk-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.perk-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.2;
  margin-bottom: 3px;
}

.perk-desc {
  font-size: 12px;
  color: var(--txt-d);
  line-height: 1.5;
}

/* =================================================================
   ABOUT / DRIVER
   ================================================================= */
#about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
  box-shadow: var(--sh-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--gold);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: var(--sh);
}

.about-exp-badge .years {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-exp-badge .years-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--txt);
}

.about-feat::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), .14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

/* =================================================================
   WHY CHOOSE US
   ================================================================= */
#why-us {
  background: var(--bg3);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.why-card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--t) var(--ease);
}

.why-card:hover {
  border-color: var(--bdr-g);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}

.why-icon {
  font-size: 38px;
  margin-bottom: 14px;
  line-height: 1;
}

.why-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 13px;
  color: var(--txt-m);
  line-height: 1.7;
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
#testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--t) var(--ease);
}

.testimonial-card:hover {
  border-color: var(--bdr-g);
  box-shadow: var(--sh);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--txt-m);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--bdr);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
}

.testimonial-location {
  font-size: 12px;
  color: var(--txt-d);
}

/* =================================================================
   CTA BANNER
   ================================================================= */
#cta-banner {
  background: var(--gold);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, .1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, .08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
  margin: 0 auto 42px;
  max-width: 500px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* =================================================================
   CONTACT
   ================================================================= */
#contact {
  background: var(--bg3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-s);
  transition: border-color var(--tf) var(--ease);
}

.contact-item:hover {
  border-color: var(--bdr-g);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-s);
  background: rgba(var(--gold-rgb), .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--txt-d);
  margin-bottom: 3px;
}

.contact-item-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--txt);
}

.contact-item-val a {
  color: var(--txt);
}

.contact-item-val a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 40px 36px;
}

.contact-form-title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--txt-m);
  margin-bottom: 28px;
}

/* Contact form inputs */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--txt-m);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 17px;
  background: var(--bg);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-s);
  color: var(--txt);
  font-size: 14.5px;
  font-family: var(--font-b);
  transition: border-color var(--tf) var(--ease), box-shadow var(--tf) var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--txt-d);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%23888' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg);
  padding-right: 40px;
  cursor: pointer;
}

.form-field select option {
  background: var(--bg2);
  color: var(--txt);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-row .form-field {
  margin-bottom: 0;
}

#formMessage {
  display: none;
  padding: 13px 17px;
  border-radius: var(--r-s);
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}

/* =================================================================
   FOOTER
   ================================================================= */
#site-footer {
  background: var(--bg2);
  border-top: 1.5px solid var(--bdr-g);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer-logo-name {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
}

.footer-desc {
  font-size: 14px;
  color: var(--txt-m);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg4);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--txt-m);
  transition: all var(--tf) var(--ease);
}

.footer-social a:hover {
  background: rgba(var(--gold-rgb), .12);
  border-color: var(--bdr-g);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--txt-m);
  transition: color var(--tf) var(--ease);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 13.5px;
  color: var(--txt-m);
  line-height: 1.55;
}

.footer-contact-text a {
  color: var(--txt-m);
}

.footer-contact-text a:hover {
  color: var(--gold);
}

.footer-partner-box {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(var(--gold-rgb), .08);
  border: 1px solid var(--bdr-g);
  border-radius: var(--r-s);
}

.footer-partner-box .label {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.footer-partner-box .hotel-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  display: block;
  margin-bottom: 8px;
}

.footer-partner-box a {
  font-size: 12px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--txt-d);
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--txt-d);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* =================================================================
   STICKY BUTTONS — Pill: icon only → expands on hover
   ================================================================= */
.sticky-buttons {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .28);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  width: 56px;
  height: 56px;
  white-space: nowrap;
  overflow: visible;
}

.sticky-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  /* NO width:auto here — that caused the shrink bug */
}

.sticky-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.sticky-btn-label {
  display: none;
  /* hide text labels — we use tooltips instead */
}

.sticky-btn:hover .sticky-btn-label {
  display: none;
}

.sticky-btn.whatsapp {
  background: var(--green);
}

.sticky-btn.whatsapp:hover {
  background: var(--green-d);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .40);
}

.sticky-btn.phone {
  background: var(--gold);
}

.sticky-btn.phone:hover {
  background: var(--gold-l);
  box-shadow: 0 6px 28px rgba(var(--gold-rgb), .45);
}

/* =================================================================
   MOBILE MENU
   ================================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg2);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 100px 40px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 700;
  color: var(--txt);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--bdr);
  transition: color var(--tf) var(--ease);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

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

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  color: var(--txt);
  font-size: 22px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tf) var(--ease);
}

.mobile-menu-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.mobile-menu-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =================================================================
   GALLERY ADMIN
   ================================================================= */
.gallery-admin-bar {
  background: var(--bg2);
  border: 1.5px dashed var(--bdr-g);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-admin-bar p {
  font-size: 13px;
  color: var(--txt-m);
  flex: 1;
}

/* =================================================================
   SCROLL ANIMATIONS
   ================================================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

.delay-5 {
  transition-delay: .5s
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width:1200px) {
  .hero-inner {
    grid-template-columns: 1fr 400px;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:1024px) {
  :root {
    --header-h: 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: calc(var(--header-h) + 40px);
  }

  .hero-text {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-card {
    max-width: 500px;
    margin: 48px auto;
  }

  .sonnwies-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrap {
    aspect-ratio: 16/9;
    max-height: 400px;
  }

  .about-exp-badge {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width:768px) {
  .section-padding {
    padding: 72px 0;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 56px);
  }

  .hero-stat {
    padding: 0 16px;
  }

  .hero-stat-num {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }


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

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .partner-inner {
    flex-direction: column;
    text-align: center;
  }

  .partner-divider {
    width: 60px;
    height: 1px;
  }

  .sonnwies-img-accent {
    display: none;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .header-phone {
    display: none;
  }

  .sticky-buttons {
    bottom: 24px;
    right: 18px;
  }
}

@media (max-width:480px) {
  .section-padding {
    padding: 54px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sonnwies-perks {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }
}

/* =================================================================
   TRUST BAR
   ================================================================= */
.trust-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--bdr);
  padding: 14px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--txt-m);
  white-space: nowrap;
}

.trust-icon {
  font-size: 15px;
}

.trust-sep {
  color: var(--bdr);
  font-size: 16px;
}

/* =================================================================
   HERO — Complete
   ================================================================= */
.hero-section {
  position: relative;
  min-height: 100svh;
  background-image: var(--hero-bg, linear-gradient(135deg, #0d1117 0%, #1a2035 50%, #0d1117 100%));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, .72) 0%, rgba(10, 10, 20, .65) 50%, rgba(0, 0, 0, .75) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: particle-float 8s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
  animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -50px;
  animation-delay: 2s;
}

.hero-particles span:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: -40px;
  left: 40%;
  animation-delay: 4s;
}

.hero-particles span:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 20%;
  animation-delay: 1s;
}

.hero-particles span:nth-child(5) {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes particle-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: block !important;
  max-width: 860px;
  width: max-content;
  margin: 0 auto !important;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(110, 240, 122, 0.18);
  border: 1px solid rgba(110, 240, 122, 0.45);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r-f);
  margin-bottom: 28px;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  box-shadow: 0 0 18px rgba(110, 240, 122, 0.3), 0 0 36px rgba(110, 240, 122, 0.15), inset 0 1px 0 rgba(255,255,255,0.15);
  animation: heroBadgeGlow 3s ease-in-out infinite;
}
@keyframes heroBadgeGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(110, 240, 122, 0.3), 0 0 36px rgba(110, 240, 122, 0.15), inset 0 1px 0 rgba(255,255,255,0.15); }
  50% { box-shadow: 0 0 28px rgba(110, 240, 122, 0.5), 0 0 56px rgba(110, 240, 122, 0.25), inset 0 1px 0 rgba(255,255,255,0.2); }
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), .6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(var(--gold-rgb), 0);
  }
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(38px, 6vw, 82px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .4);
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title,
.hero-sub {
  /* 1. Shrink the box to the text size */
  width: fit-content;

  /* 2. Set the 'cap' (the absolute max it can grow) */
  max-width: 400px;

  /* 3. Safety net for mobile screens */
  width: -moz-fit-content;
  /* Firefox compatibility */
  max-width: 90%;

  /* 4. Allow wrapping */
  overflow-wrap: break-word;

  /* Optional: Center it if it's a block */
  margin-inline: auto;
  background: rgba(var(--gold-rgb), .15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--gold-rgb), .35);
  letter-spacing: 1.5px;
  padding: 0.35rem;
  border-radius: 0.5rem;
}

/* Responsive hero glass panel */
@media (max-width: 768px) {
  .hero-content {
    padding: 36px 28px 32px !important;
    border-radius: 20px !important;
    margin: 0 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 28px 20px 24px !important;
    border-radius: 16px !important;
    margin: 0 12px !important;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-l);
  padding: 18px 30px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 26px;
}

.hero-stat-num {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Quick Book */
.hero-quick-book {
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-l);
  padding: 24px 28px;
  max-width: 820px;
  margin: 0 auto;
}

.qb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.qb-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qb-field label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.qb-field input,
.qb-field select {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  border-radius: var(--r-s);
  padding: 10px 14px;
  font-size: 14px;
  transition: all var(--tf) var(--ease);
}

.qb-field input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.qb-field input:focus,
.qb-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .15);
}

.qb-field select option {
  background: #1a1a2e;
  color: #fff;
}

.qb-submit {
  width: 100%;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  animation: scroll-bounce 2.5s ease infinite;
  transition: all var(--tf) var(--ease);
}

.hero-scroll:hover {
  background: rgba(var(--gold-rgb), .3);
  border-color: var(--gold);
}

.hero-scroll svg {
  width: 22px;
  height: 22px;
}

@keyframes scroll-bounce {

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

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

/* =================================================================
   PARTNER BANNER
   ================================================================= */
.partner-banner {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.partner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-text .section-label {
  margin-bottom: 16px;
}

.partner-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--txt);
  margin-bottom: 22px;
}

.gold-text {
  color: var(--gold);
}

.partner-desc {
  font-size: 16px;
  color: var(--txt-m);
  line-height: 1.8;
  margin-bottom: 32px;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.partner-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pf-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.partner-feat strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 3px;
}

.partner-feat p {
  font-size: 14px;
  color: var(--txt-m);
  margin: 0;
}

.partner-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Partner Card */
.partner-visual {
  position: relative;
}

.partner-card {
  background: var(--bg3);
  border: 1px solid var(--bdr-g);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
  z-index: 1;
}

.pc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--bdr);
  background: var(--bg2);
}

.pc-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.pc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
}

.pc-stars {
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
}

.pc-photo-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #1a2035 0%, #0d1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-photo-inner {
  text-align: center;
  color: rgba(255, 255, 255, .7);
}

.pc-mountain-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 10px;
}

.pc-photo-inner p {
  font-size: 14px;
  margin: 4px 0;
  color: rgba(255, 255, 255, .8);
}

.pc-body {
  padding: 20px 24px;
}

.pc-stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 14px;
}

.pc-stat {
  font-size: 13px;
  color: var(--txt-m);
}

.pc-stat span {
  color: var(--gold);
  font-weight: 700;
}

.pc-badge {
  background: rgba(37, 200, 100, .1);
  border: 1px solid rgba(37, 200, 100, .3);
  color: #25c864;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-f);
  display: inline-block;
}

.partner-deco-1,
.partner-deco-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), .06);
  pointer-events: none;
}

.partner-deco-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
}

.partner-deco-2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: -50px;
}

/* =================================================================
   SERVICES SECTION
   ================================================================= */
.services-section {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-l);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-g);
  border-color: var(--bdr-g);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(var(--gold-rgb), .1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon {
  font-size: 26px;
}

.service-body {
  flex: 1;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--txt-m);
  line-height: 1.7;
}

.service-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .3px;
  transition: gap var(--tf) var(--ease);
}

.service-cta:hover {
  color: var(--gold-l);
}

/* =================================================================
   GALLERY PREVIEW
   ================================================================= */
.gallery-preview-section {
  padding: 80px 0;
  background: var(--bg3);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-preview-wide {
  grid-column: span 2;
}

.gallery-preview-cta {
  text-align: center;
  margin-top: 32px;
}

/* =================================================================
   FLEET SECTION
   ================================================================= */
.fleet-section {
  padding: 100px 0;
  background: var(--bg2);
}

/* ── Grid: 1 column on mobile, 2 on tablet, 2 on desktop ── */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1200px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* ── Solo item: full-width hero layout ── */
.fleet-grid-solo {
  grid-template-columns: 1fr !important;
  max-width: 960px;
  margin: 0 auto;
}

.fleet-grid-solo .fleet-card {
  min-height: 380px;
}

.fleet-grid-solo .fleet-img-wrap {
  flex: 0 0 58% !important;
}

.fleet-grid-solo .fleet-name {
  font-size: 26px !important;
}

.fleet-grid-solo .fleet-body {
  padding: 36px 36px 36px 32px !important;
  gap: 16px !important;
}

/* ── Card: horizontal layout (image left, content right) ── */
.fleet-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--t) var(--ease);
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 240px;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--bdr-g);
}

/* ── Image side ── */
.fleet-img-wrap {
  position: relative;
  flex: 0 0 52%;
  min-width: 0;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ts) var(--ease);
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.06);
}

/* Bottom-to-top gradient to blend into card body */
.fleet-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      transparent 40%,
      rgba(var(--bg3-rgb, 22, 22, 22), .55) 100%);
  pointer-events: none;
}

.fleet-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg4), var(--bg5));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--txt-d);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  min-height: 200px;
}

.fleet-img-placeholder span {
  font-size: 52px;
}

/* Badge — top-left over image */
.fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-f);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

/* Class tag — bottom-left over image */
.fleet-class-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-f);
}

/* ── Body side ── */
.fleet-body {
  flex: 1;
  min-width: 0;
  padding: 22px 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Name + class pill row */
.fleet-header-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.fleet-name {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.fleet-class-pill {
  background: rgba(var(--gold-rgb), .12);
  border: 1px solid rgba(var(--gold-rgb), .25);
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-f);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.fleet-excerpt {
  font-size: 13px;
  color: var(--txt-m);
  line-height: 1.6;
  margin: 0;
}

.fleet-vehicle-desc {
  font-size: 13px;
  color: var(--txt-m);
  line-height: 1.6;
  margin: 0 0 4px;
}

/* Spec pills row */
.fleet-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fleet-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg4);
  border: 1px solid var(--bdr);
  color: var(--txt-m);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-f);
}

.fleet-spec-pill svg {
  opacity: .7;
  flex-shrink: 0;
}

/* Feature tags */
.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.fleet-feat-tag {
  background: rgba(var(--gold-rgb), .09);
  border: 1px solid rgba(var(--gold-rgb), .18);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-f);
}

/* Book button */
.fleet-book-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  align-self: flex-start;
}

/* ── Mobile: stack vertically ── */
@media (max-width: 599px) {
  .fleet-card {
    flex-direction: column;
  }

  .fleet-img-wrap {
    flex: none;
    height: 200px;
    width: 100%;
  }

  .fleet-img-gradient {
    background: linear-gradient(to bottom,
        transparent 50%,
        rgba(22, 22, 22, .55) 100%);
  }

  .fleet-book-btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.how-section {
  padding: 100px 0;
  background: var(--bg);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 50px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--gold));
  z-index: 0;
  opacity: .25;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step-num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.how-step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg2);
  border: 2px solid var(--bdr-g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
  box-shadow: var(--sh-g);
  transition: all var(--t) var(--ease);
}

.how-step:hover .how-step-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(var(--gold-rgb), .1);
}

.how-step-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 13.5px;
  color: var(--txt-m);
  line-height: 1.7;
}

.how-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =================================================================
   DESTINATIONS
   ================================================================= */
.destinations-section {
  padding: 100px 0;
  background: var(--bg3);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.destination-card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-l);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.destination-card:hover {
  border-color: var(--bdr-g);
  box-shadow: var(--sh-g);
  transform: translateY(-4px);
}

.dest-icon {
  font-size: 28px;
}

.dest-route {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dest-from {
  font-size: 11.5px;
  color: var(--txt-d);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.dest-arrow {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}

.dest-to {
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
}

.dest-time {
  font-size: 13px;
  color: var(--txt-m);
  background: rgba(var(--gold-rgb), .08);
  border: 1px solid rgba(var(--gold-rgb), .2);
  border-radius: var(--r-f);
  padding: 3px 10px;
  display: inline-block;
  width: fit-content;
  color: var(--gold);
  font-weight: 600;
}

.dest-book {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
}

.destination-card:hover .dest-book::after {
  content: ' →';
}

/* =================================================================
   GALLERY — Full
   ================================================================= */
.gallery-section {
  padding: 100px 0;
  background: var(--bg);
}

.gallery-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gallery-tab {
  padding: 9px 20px;
  border-radius: var(--r-f);
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--bdr);
  background: var(--bg2);
  color: var(--txt-m);
  cursor: pointer;
  transition: all var(--tf) var(--ease);
}

.gallery-tab:hover {
  border-color: var(--bdr-g);
  color: var(--gold);
}

.gallery-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), .35);
}

.gallery-admin-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.gallery-cat-select {
  padding: 9px 14px;
  border-radius: var(--r-s);
  border: 1px solid var(--bdr);
  background: var(--bg2);
  color: var(--txt);
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
  background: var(--bg3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ts) var(--ease);
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t) var(--ease);
  flex-direction: column;
  gap: 10px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  font-size: 28px;
  transform: scale(.7);
  transition: transform var(--t) var(--ease);
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-cat-badge {
  background: rgba(var(--gold-rgb), .9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-f);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(214, 48, 49, .85);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tf) var(--ease);
}

.gallery-item:hover .gallery-delete-btn {
  opacity: 1;
}

.gallery-empty {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg2);
  border: 2px dashed var(--bdr);
  border-radius: var(--r-l);
}

.gallery-empty h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--txt);
  margin: 16px 0 10px;
}

.gallery-empty p {
  color: var(--txt-m);
  font-size: 15px;
}

.gallery-preview-section .gallery-grid {
  grid-auto-rows: 200px;
}

/* =================================================================
   LIGHTBOX
   ================================================================= */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .94);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

#lightbox.active {
  display: flex;
  animation: lb-in .3s ease;
}

@keyframes lb-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#lightboxImg {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .8);
  transition: opacity .18s ease;
}

#lightboxClose {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tf) var(--ease);
  z-index: 10000;
}

#lightboxClose:hover {
  background: var(--red);
}

#lightboxPrev,
#lightboxNext {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tf) var(--ease);
  z-index: 10000;
}

#lightboxPrev {
  left: 18px;
}

#lightboxNext {
  right: 18px;
}

#lightboxPrev:hover,
#lightboxNext:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 28px;
  transition: all var(--t) var(--ease);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-h);
  font-size: 80px;
  color: rgba(var(--gold-rgb), .12);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--bdr-g);
}

.t-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.t-quote {
  font-size: 14.5px;
  color: var(--txt-m);
  line-height: 1.75;
  margin: 0 0 20px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
}

.t-country {
  font-size: 12px;
  color: var(--txt-d);
  margin-top: 2px;
}

.rating-summary {
  text-align: center;
  padding: 48px;
  background: var(--bg3);
  border: 1px solid var(--bdr-g);
  border-radius: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.rs-score {
  font-family: var(--font-h);
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.rs-stars {
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 4px;
  margin: 8px 0;
}

.rs-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt-m);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rs-count {
  font-size: 13px;
  color: var(--txt-d);
  margin-top: 6px;
}

/* =================================================================
   ABOUT / DRIVER
   ================================================================= */
.about-section {
  padding: 100px 0;
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: var(--txt-d);
  padding: 40px;
  border: 2px dashed var(--bdr-g);
}

.about-photo-placeholder p {
  margin: 0;
  font-size: 14px;
}

.about-badge-wrap {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1.5px solid var(--bdr-g);
  border-radius: var(--r-l);
  padding: 12px 18px;
  box-shadow: var(--sh-lg);
}

.ab-icon {
  font-size: 28px;
}

.ab-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
}

.ab-sub {
  font-size: 12px;
  color: var(--txt-d);
}

.about-deco {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  z-index: -1;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(var(--gold-rgb), .05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.about-text .section-label {
  margin-bottom: 16px;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15.5px;
  color: var(--txt-m);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--txt-m);
  font-weight: 500;
}

.ah-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.about-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =================================================================
   CONTACT SECTION
   ================================================================= */
.contact-section {
  padding: 100px 0;
  background: var(--bg3);
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.ci-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bdr);
}

.ci-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.ci-name {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--txt);
}

.ci-sub {
  font-size: 12px;
  color: var(--txt-d);
  margin-top: 2px;
}

.ci-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--r);
  transition: all var(--tf) var(--ease);
  text-decoration: none;
  border: 1px solid transparent;
}

.ci-item:hover {
  background: var(--bg3);
  border-color: var(--bdr);
}

.ci-item-whatsapp {
  background: rgba(37, 211, 102, .07);
  border-color: rgba(37, 211, 102, .2) !important;
}

.ci-item-whatsapp:hover {
  background: rgba(37, 211, 102, .14) !important;
}

.ci-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.ci-text {
  flex: 1;
}

.ci-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--txt-d);
  margin-bottom: 2px;
}

.ci-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--txt);
}

.ci-arrow {
  color: var(--gold);
  font-weight: 700;
}

.ci-partner-box {
  background: rgba(var(--gold-rgb), .07);
  border: 1.5px solid var(--bdr-g);
  border-radius: var(--r);
  padding: 16px 18px;
}

.cpb-label {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.cpb-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 5px;
}

.cpb-desc {
  font-size: 12.5px;
  color: var(--txt-d);
  margin: 0 0 8px;
}

.cpb-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 40px;
}

.cf-header {
  margin-bottom: 28px;
}

.cf-header h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}

.cf-header p {
  font-size: 14px;
  color: var(--txt-m);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field:not(.contact-form-row > .form-field) {
  margin-bottom: 16px;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--txt-m);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-s);
  background: var(--bg3);
  color: var(--txt);
  font-size: 14.5px;
  font-family: var(--font-b);
  transition: all var(--tf) var(--ease);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg2);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .12);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.cf-direct-links {
  text-align: center;
  font-size: 12.5px;
  color: var(--txt-d);
  margin-top: 14px;
}

.cf-direct-links a {
  margin: 0 4px;
}

/* =================================================================
   STICKY FLOATING BUTTONS — v2 with tooltip
   ================================================================= */
.sticky-buttons {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.sticky-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .28);
  transition: all var(--t) var(--ease);
}

.sticky-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.sticky-btn.whatsapp {
  background: var(--green);
}

.sticky-btn.whatsapp:hover {
  background: var(--green-d);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
}

.sticky-btn.phone {
  background: var(--gold);
}

.sticky-btn.phone:hover {
  background: var(--gold-l);
  box-shadow: 0 6px 28px rgba(var(--gold-rgb), .5);
}

.sticky-btn.book {
  background: var(--bg4);
  border: 2px solid var(--gold);
  color: var(--gold);
}

.sticky-btn.book:hover {
  background: var(--gold);
  color: #fff;
}

.sticky-btn-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg2);
  border: 1px solid var(--bdr);
  color: var(--txt);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--r-s);
  box-shadow: var(--sh);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tf) var(--ease);
}

.sticky-btn:hover .sticky-btn-tooltip {
  opacity: 1;
}

.sticky-btn-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--bdr);
}

/* =================================================================
   SECTION HEADER — Shared
   ================================================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 5px 16px;
  background: rgba(var(--gold-rgb), .1);
  border-radius: var(--r-f);
  border: 1px solid rgba(var(--gold-rgb), .2);
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--txt);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 16px;
  color: var(--txt-m);
  line-height: 1.75;
}

/* =================================================================
   BUTTONS — Complete System
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-f);
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--tf) var(--ease);
  letter-spacing: .2px;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  color: #fff;
  box-shadow: 0 6px 24px rgba(var(--gold-rgb), .45);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-whatsapp:hover {
  background: var(--green-d);
  border-color: var(--green-d);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

.btn-glass {
  color: hsl(0, 59%, 41%);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
  overflow: hidden;

  &:hover {
    color: hsl(0, 59%, 41%, 0.9);
    border-color: hsl(0, 59%, 41%, 0.8);
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent);
  }

  &:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3));
  }
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

/* =================================================================
   RESPONSIVE ADDITIONS
   ================================================================= */
@media (max-width:1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps::before {
    display: none;
  }

  .partner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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


  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview-wide {
    grid-column: span 1;
  }

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

@media (max-width:768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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


  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    padding: 14px 20px;
    gap: 0;
  }

  .hero-stat {
    padding: 8px 14px;
  }

  .hero-stat-divider {
    height: 30px;
  }

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

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .trust-sep {
    display: none;
  }

  .trust-items {
    justify-content: flex-start;
  }

  .how-cta {
    flex-direction: column;
    align-items: center;
  }

  .partner-ctas,
  .about-ctas {
    flex-direction: column;
  }

  .partner-ctas .btn,
  .about-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}


/* =================================================================
   HERO SLIDESHOW — Full-screen, custom-header-media style
   ================================================================= */
.hero-section {
  position: relative !important;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.07);
  }
}

.hero-slide.active {
  animation: kenBurns 9s ease-out;
}

/* Fallback: dark gradient when no photos uploaded */
.hero-slide-fallback {
  background: linear-gradient(135deg, #0a0f1a 0%, #0f1f35 50%, #0a1525 100%);
  opacity: 1;
}

/* Slideshow dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: 2px solid rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .35s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .7);
}

/* Admin notice when no hero images */
.hero-admin-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  background: rgba(0, 0, 0, .75);
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  color: #fff;
  font-family: var(--font-b);
  max-width: 90%;
}

/* =================================================================
   HEADER — Mobile-first fixes
   ================================================================= */

/* ── Hamburger: always rendered, visible only via @media ── */
.nav-toggle {
  display: none;
  /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--r-s);
  transition: background var(--tf) var(--ease);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--txt);
  transition: all var(--t) var(--ease);
  border-radius: 2px;
}

#site-header:not(.scrolled) .nav-toggle span {
  background: #fff;
}

.nav-toggle:hover {
  background: rgba(var(--gold-rgb), .1);
}

/* Hamburger → X animation when menu open */
body.mobile-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

body.mobile-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.mobile-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* WhatsApp header button — responsive */
.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-wa-btn .wa-btn-text {
  display: inline;
}

/* =================================================================
   MOBILE MENU — Polished slide-in drawer
   ================================================================= */

/* Backdrop overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.mobile-menu-open {
  overflow: hidden !important;
}

/* Drawer itself */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--bg2);
  z-index: 1100;
  display: flex !important;
  /* override any inline display:none */
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -12px 0 48px rgba(0, 0, 0, .25);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* reset old fullscreen styles */
  opacity: 1 !important;
  pointer-events: auto !important;
  inset: unset;
  top: 0;
  right: 0;
  bottom: 0;
  align-items: unset;
  justify-content: unset;
  padding: 0;
  gap: 0;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Header strip */
.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--bdr);
  background: var(--bg2);
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 72px;
}

.mobile-menu-header .logo-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.mobile-menu-header .logo-text {
  flex: 1;
  min-width: 0;
}

.mobile-menu-header .logo-name {
  font-size: 15px;
}

.mobile-menu-header .logo-sub {
  font-size: 10px;
}

.mobile-menu-close {
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  color: var(--txt);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
  margin-left: auto;
}

.mobile-menu-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Nav links */
.mobile-menu-body {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}

.mobile-nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 15px 24px !important;
  color: var(--txt) !important;
  font-family: var(--font-h) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-bottom: 1px solid var(--bdr) !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
  text-align: left !important;
  /* override old centered style */
  width: auto !important;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: var(--gold) !important;
  background: rgba(var(--gold-rgb), .06) !important;
  padding-left: 32px !important;
}

.mobile-nav-link svg {
  flex-shrink: 0;
  color: var(--gold);
}

.mobile-nav-link:last-child {
  border-bottom: none !important;
}

/* Footer CTAs */
.mobile-menu-footer {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--bdr-g);
  background: rgba(var(--gold-rgb), .04);
  flex-shrink: 0;
}

.mobile-menu-footer .btn {
  justify-content: center !important;
  width: 100% !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
}

/* Dark mode */
[data-theme="dark"] .mobile-menu {
  background: rgba(15, 15, 20, .92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: -12px 0 64px rgba(0, 0, 0, .7);
  border-left: 1px solid rgba(255, 255, 255, .07);
}

[data-theme="light"] .mobile-menu {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: -12px 0 64px rgba(0, 0, 0, .2);
  border-left: 1px solid rgba(0, 0, 0, .07);
}

/* =================================================================
   STICKY BUTTONS — Fixed: no shrinking on hover
   ================================================================= */

/* Override old conflicting rules */
.sticky-buttons {
  position: fixed !important;
  bottom: 30px !important;
  right: 24px !important;
  z-index: 850;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-end !important;
}

/* Round pill buttons — NEVER change size on hover */
.sticky-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  border-radius: 50% !important;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .28) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  /* kill any width/overflow transition */
  overflow: visible !important;
  white-space: nowrap !important;
}

/* Hover: lift only, NEVER resize */
.sticky-btn:hover {
  transform: translateY(-3px) !important;
  color: #fff !important;
  width: 46px !important;
  height: 46px !important;
}

.sticky-btn.whatsapp {
  background: var(--green) !important;
}

.sticky-btn.whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5) !important;
  background: var(--green-d) !important;
}

.sticky-btn.phone {
  background: var(--gold) !important;
}

.sticky-btn.phone:hover {
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), .55) !important;
  background: var(--gold-l) !important;
}

.sticky-btn.book {
  background: var(--bg2) !important;
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
}

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

/* Tooltip — slides in from right */
.sticky-btn-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg2);
  border: 1px solid var(--bdr);
  color: var(--txt);
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: var(--r-s);
  box-shadow: var(--sh);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.sticky-btn:hover .sticky-btn-tooltip {
  opacity: 1;
}

.sticky-btn-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--bdr);
}

/* Icon inside sticky btn */
.sticky-btn svg,
.sticky-btn-icon {
  flex-shrink: 0;
}

/* Also kill old sticky-btn-icon/label styles */
.sticky-btn-icon {
  width: auto !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-btn-label {
  display: none !important;
}

/* =================================================================
   HEADER RESPONSIVE BREAKPOINTS
   ================================================================= */

/* ≤ 1024px — show hamburger, hide main nav */
@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }

  .header-phone span {
    display: none;
  }
}

/* ≤ 768px — compact header */
@media (max-width: 768px) {
  .header-phone {
    display: none !important;
  }

  .lang-selector .lang-name {
    display: none;
  }
}

/* ≤ 600px — icon-only WhatsApp button */
@media (max-width: 600px) {
  .header-wa-btn {
    display: none;
  }

  /* .header-wa-btn .wa-btn-text { display: none; } */
  /* .header-wa-btn { width: 38px; height: 38px; padding: 0; justify-content: center; border-radius: 50% !important; } */
  .header-cta {
    gap: 6px;
  }

  .lang-btn .lang-globe {

    &,
    img {
      display: block !important;
      width: 1rem !important;
      height: 1rem !important;
    }
  }
}

/* ≤ 420px — hide language selector text, keep globe */
@media (max-width: 420px) {

  .lang-curr,
  .lang-caret {
    display: none;
  }
}

/* =================================================================
   GOOGLE TRANSLATE — Hide the ugly GT toolbar bar
   ================================================================= */
.goog-te-banner-frame,
.skiptranslate>iframe,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}

/* Prevent GT from pushing the body down */
body {
  top: 0 !important;
}

/* Hide GT branding elements */
.goog-te-gadget {
  display: none !important;
}

.goog-logo-link {
  display: none !important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
  display: none !important;
}

/* Keep the google_translate_element from taking any space */
#google_translate_element {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  top: 0 !important;
  left: 0 !important;
  pointer-events: none !important;
}

/* =================================================================
   HERO RESPONSIVE
   ================================================================= */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh;
    min-height: 100vh;
  }

  .hero-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-ctas .btn {
    justify-content: center !important;
  }

  .hero-title {
    font-size: clamp(26px, 8vw, 48px) !important;
  }

  .hero-sub {
    font-size: clamp(13px, 3.5vw, 17px) !important;
  }

  .hero-stats {
    gap: 12px 20px !important;
  }

  .hero-stat-divider {
    display: none !important;
  }

  .hero-dots {
    bottom: 80px;
  }
}

@media (max-width: 640px) {
  .qb-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-quick-book {
    padding: 16px !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
}

/* =================================================================
   TRUST BAR RESPONSIVE
   ================================================================= */
@media (max-width: 640px) {
  .trust-items {
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
  }

  .trust-sep {
    display: none;
  }
}


/* =================================================================
   SERVICES RESPONSIVE
   ================================================================= */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =================================================================
   GALLERY RESPONSIVE
   ================================================================= */
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gallery-preview-wide {
    grid-column: span 1 !important;
  }
}

@media (max-width: 380px) {

  .gallery-grid,
  .gallery-preview-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =================================================================
   TESTIMONIALS RESPONSIVE
   ================================================================= */
@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =================================================================
   HOW-IT-WORKS RESPONSIVE
   ================================================================= */
@media (max-width: 640px) {
  .how-steps {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 400px) {
  .how-steps {
    grid-template-columns: 1fr !important;
  }
}

/* =================================================================
   DESTINATIONS RESPONSIVE
   ================================================================= */
@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =================================================================
   ABOUT RESPONSIVE
   ================================================================= */
@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr !important;
  }

  .about-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* =================================================================
   PARTNER / SONNWIES RESPONSIVE
   ================================================================= */
@media (max-width: 860px) {
  .partner-inner {
    grid-template-columns: 1fr !important;
  }
}

/* =================================================================
   CONTACT RESPONSIVE
   ================================================================= */
@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr !important;
  }
}

/* =================================================================
   STICKY BUTTONS RESPONSIVE
   ================================================================= */
@media (max-width: 480px) {
  .sticky-buttons {
    bottom: 16px !important;
    right: 14px !important;
    gap: 10px !important;
  }

  .sticky-btn {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }

  .sticky-btn:hover {
    width: 50px !important;
    height: 50px !important;
  }
}

/* =================================================================
   CONTAINER & GENERAL RESPONSIVE
   ================================================================= */
@media (max-width: 480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 36px) !important;
  }
}

/* =================================================================
   FOOTER RESPONSIVE
   ================================================================= */
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center;
  }
}


/* =================================================================
   QUICK BOOK STRIP — v3 Fix: Standalone section below hero
   ================================================================= */
.quick-book-strip {
  background: var(--bg2);
  border-bottom: 2px solid var(--bdr-g);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .10);
  padding: 0;
  position: relative;
  z-index: 10;
}

.qbs-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
}

.qbs-label {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  padding-right: 28px;
  border-right: 1px solid var(--bdr-g);
}

.qbs-icon {
  font-size: 28px;
  line-height: 1;
}

.qbs-title {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.2;
}

.qbs-sub {
  font-size: 11px;
  color: var(--txt-d);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: .3px;
}

.qbs-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: nowrap;
}

.qbs-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.qbs-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-s);
  padding: 9px 13px;
  flex: 1;
  min-width: 0;
  transition: border-color var(--tf) var(--ease);
}

.qbs-field:focus-within {
  border-color: var(--gold);
  background: var(--bg);
}

.qbs-field-sm {
  flex: 0 0 110px;
}

.qbs-field-icon {
  font-size: 14px;
  flex-shrink: 0;
  opacity: .7;
}

.qbs-field input,
.qbs-field select {
  border: none;
  background: transparent;
  color: var(--txt);
  font-size: 13.5px;
  font-family: var(--font-b);
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.qbs-field input::placeholder {
  color: var(--txt-d);
}

.qbs-field select {
  cursor: pointer;
}

.qbs-field select option {
  background: var(--bg2);
}

.qbs-submit {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Responsive quick book strip */
@media (max-width: 1100px) {
  .qbs-fields {
    flex-wrap: wrap;
  }

  .qbs-field {
    flex: 1 1 calc(50% - 8px);
    min-width: 130px;
  }

  .qbs-field-sm {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 900px) {
  .qbs-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 22px 0;
  }

  .qbs-label {
    border-right: none;
    padding-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bdr);
  }

  .qbs-form {
    flex-direction: column;
    align-items: stretch;
  }

  .qbs-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .qbs-field-sm {
    grid-column: span 1;
    flex: unset;
  }

  .qbs-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .qbs-fields {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   HEADER — v3 Fixes: Better mobile responsiveness
   ================================================================= */

/* Ensure header-inner doesn't overflow on mobile */
.header-inner {
  flex-wrap: nowrap;
  overflow: visible;
}

/* On mobile: reduce logo size slightly */
@media (max-width: 480px) {
  .logo-name {
    font-size: 15px !important;
  }

  .logo-sub {
    font-size: 8.5px !important;
    letter-spacing: 2px !important;
  }

  .logo-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }

  .header-inner {
    padding: 0 14px !important;
    gap: 10px !important;
  }

  .header-cta {
    gap: 6px !important;
  }

  /* Hide phone on smallest screens */
  .header-phone {
    display: none !important;
  }

  /* Compact theme toggle */
  .theme-toggle {
    width: 34px !important;
    height: 34px !important;
  }

  .lang-glob,
  .lang-globe {
    display: none !important;
  }

  .lang-btn {
    min-width: auto !important;
  }
}

/* Prevent header-cta from overflowing */
@media (max-width: 380px) {
  .lang-btn {
    min-width: auto !important;
    padding: 8px !important;
  }
}

/* =================================================================
   LANGUAGE SELECTOR — v3 Enhanced Dropdown (match v2 quality)
   ================================================================= */

/* Better button styling */
.lang-btn {
  min-width: 72px;
  position: relative;
}

/* Bigger, polished dropdown */
.lang-drop {
  min-width: 230px !important;
  border-radius: var(--r) !important;
  padding: 8px !important;
  overflow: hidden;
}

/* Section separator between groups */
.lang-opt:nth-child(4)::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--bdr);
  margin: 6px -11px -9px;
  pointer-events: none;
}

/* Polished option rows */
.lang-opt {
  border-radius: var(--r-s) !important;
  transition: background var(--tf) var(--ease), color var(--tf) var(--ease), padding-left var(--tf) var(--ease) !important;
}

.lang-opt:hover {
  padding-left: 16px !important;
}

/* Active option with left gold indicator */
.lang-opt.active {
  position: relative;
}

.lang-opt.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
}

/* Flag styling boost */
.lang-flag {
  font-size: 22px !important;
}

/* Caret becomes a proper chevron SVG look */
.lang-caret {
  font-size: 8px !important;
  opacity: .6 !important;
  margin-left: 2px;
}

/* Glassy dropdown backdrop in dark mode */
[data-theme="dark"] .lang-drop {
  background: rgba(22, 22, 22, .97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-color: rgba(110, 240, 122, .30) !important;
}

/* =================================================================
   HERO SECTION — v3 cleaner without form
   ================================================================= */

/* Remove old hero-quick-book and qb styles (they're no longer in hero) */
.hero-quick-book {
  display: none !important;
}

/* Ensure hero content is centered with more breathing room */
.hero-content {
  padding-bottom: 100px;
  /* room for scroll indicator */
}

/* Hero stats pill - ensure proper wrapping on mobile */
@media (max-width: 540px) {
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    border-radius: var(--r) !important;
    padding: 14px 16px !important;
  }

  .hero-stat-divider {
    display: none !important;
  }

  .hero-stat {
    padding: 8px 12px !important;
    border-right: none !important;
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .15) !important;
  }
}

/* =================================================================
   MOBILE NAV — v3 additional fixes
   ================================================================= */

/* Ensure hamburger is always tappable (44px touch target) */
.nav-toggle {
  min-width: 44px !important;
  min-height: 44px !important;
  flex-shrink: 0 !important;
}

/* Make sure WhatsApp btn in header is icon-only by default on tight screens */
@media (max-width: 860px) {
  .header-wa-btn .wa-btn-text {
    display: none !important;
  }

  .header-wa-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    justify-content: center !important;
  }
}

/* Better mobile menu transition */
.mobile-menu {
  border-left: 2px solid var(--bdr-g) !important;
}

[data-theme="dark"] .mobile-menu {
  border-left-color: rgba(110, 240, 122, .2) !important;
}

/* Mobile menu header gold accent */
.mobile-menu-header {
  background: linear-gradient(135deg, var(--bg2), rgba(var(--gold-rgb), .04)) !important;
  border-bottom: 2px solid var(--bdr-g) !important;
}

/* Mobile nav links - better hover state */
.mobile-nav-link {
  position: relative;
}

.mobile-nav-link::after {
  content: '→';
  position: absolute;
  right: 24px;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s ease;
  font-size: 16px;
}

.mobile-nav-link:hover::after {
  opacity: 1 !important;
}

/* =================================================================
   FOOTER RESPONSIVE — extra fixes
   ================================================================= */
@media (max-width: 480px) {
  .footer-top {
    padding-top: 48px !important;
    padding-bottom: 40px !important;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
}

/* =================================================================
   GENERAL RESPONSIVENESS — Extra fixes
   ================================================================= */

/* Partner banner responsive */
@media (max-width: 640px) {
  .partner-banner {
    padding: 64px 0 !important;
  }

  .partner-ctas {
    flex-direction: column !important;
  }

  .partner-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Section padding tighter on small phones */
@media (max-width: 400px) {
  .section-padding {
    padding: 48px 0 !important;
  }

  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-inner,
  .header-inner {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* How-section CTA on mobile */
@media (max-width: 480px) {
  .how-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

/* Rating summary responsive */
@media (max-width: 480px) {
  .rating-summary {
    padding: 32px 20px !important;
  }

  .rs-score {
    font-size: 56px !important;
  }
}

/* =================================================================
   HEADER HERO ZONE — White styling for icon-only WA btn & theme btn
   ================================================================= */
#site-header:not(.scrolled) .header-wa-btn {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .25) !important;
  color: #fff !important;
}

#site-header:not(.scrolled) .header-wa-btn svg {
  color: #fff;
}

/* Dark-theme specific: show proper contrast */
[data-theme="dark"] #site-header.scrolled .lang-btn {
  background: var(--bg3);
  border-color: var(--bdr-g);
}

/* =================================================================
   HERO VIDEO BACKGROUND
   ================================================================= */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Hide image slideshow when video is active */
.hero-slides--hidden {
  display: none !important;
}

/* Ensure overlay, content and dots stay above video */
.hero-section .hero-overlay {
  z-index: 1;
}

.hero-section .hero-content {
  z-index: 2;
}

.hero-section .hero-scroll {
  z-index: 2;
}

.hero-section .hero-dots {
  z-index: 20;
}

.hero-section .hero-admin-notice {
  z-index: 25;
}

/* Hide dots when video is playing (no slides to navigate) */
.hero-slides--hidden~.hero-dots {
  display: none !important;
}

/* =================================================================
   HERO — Clearer image: lighter overlay + hide stats on mobile
   ================================================================= */

/* Much lighter overlay so the photo/video shows through clearly */
.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .10) 40%, rgba(0, 0, 0, .20) 70%, rgba(0, 0, 0, .50) 100%) !important;
}

/* Slightly stronger gradient only at the very bottom (keeps text readable) */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(0, 0, 0, .45) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Reduce title text-shadow so it doesn't look heavy on a bright image */
.hero-title {
  text-shadow: 0 2px 16px rgba(0, 0, 0, .35) !important;
}

/* Subtitle slightly more opaque for readability on bright backgrounds */
.hero-sub {
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

/* Stats bar: lighter glass pill */
.hero-stats {
  background: rgba(0, 0, 0, .22) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-color: rgba(255, 255, 255, .18) !important;
}

/* Hide stats bar on mobile */
@media (max-width: 768px) {
  .hero-stats {
    display: none !important;
  }
}

/* =================================================================
   HERO SLIDE VIDEO — video fills slide exactly like bg-image slides
   ================================================================= */

/* The video slide div itself is already position:absolute like siblings */
.hero-slide-video {
  background: #000;
  /* black while video loads */
  overflow: hidden;
}

/* Video fills the slide like object-fit cover */
.hero-slide-video .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Video dot: show ▶ icon inside the nav dot */
.hero-dot .dot-video-icon {
  font-size: 7px;
  line-height: 1;
  display: block;
}

/* Remove the old hero-video-wrap / standalone video rules (no longer used) */
.hero-video-wrap {
  display: none !important;
}

.hero-slides--hidden {
  display: flex !important;
}

/* undo the hide, video is now inside */

/* =================================================================
   LANG DROPDOWN — scrollable for expanded language list
   ================================================================= */
.lang-drop {
  max-height: 70vh !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.lang-drop::-webkit-scrollbar {
  width: 4px;
}

.lang-drop::-webkit-scrollbar-track {
  background: transparent;
}

.lang-drop::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* RTL languages (Arabic) */
.lang-opt[data-lang="ar"] .lang-name {
  direction: rtl;
}

/* =================================================================
   HERO SLIDER — smoother transitions & cleaner dots
   ================================================================= */

/* Slower, silkier crossfade between slides */
.hero-slide {
  transition: opacity 2s cubic-bezier(.4, 0, .2, 1) !important;
}

/* Active dot: wider pill instead of circle for a modern feel */
.hero-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  transition: all .45s cubic-bezier(.4, 0, .2, 1) !important;
  padding: 0 !important;
}

.hero-dot.active {
  width: 28px !important;
  border-radius: 4px !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* Remove any leftover dot-video-icon styling */
.dot-video-icon {
  display: none !important;
}

/* =================================================================
   Fixed Breakpoint - Hardcoded
   ================================================================= */

/* Set fixed screen for smaller devices */
@media (max-width: 328px) {

  html,
  body {
    min-width: 328px !important;
    max-width: 328px !important;
    width: 328px !important;
  }
}

/* =================================================================
   DRIVER PHOTO — actual image replacing placeholder
   ================================================================= */
.about-driver-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
}

/* =================================================================
   ABOUT / DRIVER PHOTO — mobile responsiveness fix
   ================================================================= */

/* Contain the wrap so absolutely-positioned children can't bleed out */
.about-photo-wrap {
  position: relative;
  overflow: visible;
  /* badge needs to peek out — controlled below */
  /* Ensure it never stretches full viewport on mobile */
  max-width: 100%;
}

/* Driver photo: cap size, keep circle clean */
.about-driver-photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
}

/* Placeholder: same max-width treatment */
.about-photo-placeholder {
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Deco gradient: must never cause horizontal scroll */
.about-deco {
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden;
}

/* Badge: reposition on mobile so it stays inside viewport */
@media (max-width: 860px) {
  .about-badge-wrap {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }

  .about-badge {
    width: auto;
    max-width: 100%;
  }

  .about-photo-wrap {
    padding-bottom: 0 !important;
  }

  .about-visual {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  /* Prevent any child from overflowing the section */
  .about-section {
    overflow-x: hidden;
  }
}

/* Extra-small phones */
@media (max-width: 400px) {

  .about-driver-photo,
  .about-photo-placeholder {
    max-width: 260px;
  }

  .about-badge {
    padding: 10px 14px;
    gap: 8px;
  }

  .ab-icon {
    font-size: 22px;
  }

  .ab-label {
    font-size: 13px;
  }

  .ab-sub {
    font-size: 11px;
  }
}

/* =================================================================
   GALLERY — video items: autoplay thumbnail + poster button
   ================================================================= */

/* Video fills the cell exactly like an image */
.gallery-item-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  /* clicks go to the gallery-item */
}

/* Subtle ▶ badge so visitors know it's a video */
.gallery-vid-play-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 4;
  backdrop-filter: blur(4px);
}

/* 🖼 thumbnail override button — admin only */
.gallery-poster-btn {
  position: absolute;
  bottom: 34px;
  right: 6px;
  z-index: 10;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
  backdrop-filter: blur(4px);
}

.gallery-poster-btn:hover {
  background: rgba(110, 240, 122, .85);
}

/* Lightbox video */
#lightboxVideo {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  display: none;
}

/* ============================================================
   HERO ADMIN DRAG HINT
   ============================================================ */
.hero-admin-drag-hint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: rgba(110, 240, 122, .92);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  transition: opacity .6s ease;
}

/* ============================================================
   HERO SLIDESHOW — Smooth crossfade improved
   ============================================================ */
.hero-slide {
  transition: opacity 1.2s cubic-bezier(.4, 0, .2, 1) !important;
}

.hero-slide.active {
  animation: kenBurns 12s ease-out forwards;
}

.hero-slide[draggable="true"]:hover {
  outline: 2px dashed rgba(110, 240, 122, .7);
  outline-offset: -4px;
}

/* Video slides: ensure video covers fully */
.hero-slide-video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FLEET CARD IMAGE SLIDESHOW
   ============================================================ */
.fleet-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.fleet-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1);
}

.fleet-slide-img.active {
  opacity: 1;
  position: relative;
}

.fleet-slide-prev,
.fleet-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s, background .2s;
  padding: 0;
}

.fleet-slide-prev {
  left: 8px;
}

.fleet-slide-next {
  right: 8px;
}

.fleet-card:hover .fleet-slide-prev,
.fleet-card:hover .fleet-slide-next {
  opacity: 1;
}

.fleet-slide-prev:hover,
.fleet-slide-next:hover {
  background: rgba(110, 240, 122, .85);
  color: #000;
}

.fleet-slide-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}

.fleet-slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: background .2s, transform .2s;
  cursor: pointer;
}

.fleet-slide-dot.active {
  background: var(--gold, #6EF07A);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   ███████  ENHANCEMENTS v2  ─  Deluxe Studios L.L.C
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   1. HERO VIDEO — Cinematic full-coverage fix
   ───────────────────────────────────────────────────────────── */
.hero-slide-video {
  background: #000;
  overflow: hidden;
}

/* Single authoritative video rule — covers the slide 100% */
.hero-slide-video .hero-video {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none;
  will-change: opacity;
}

/* Cinematic vignette on active video slide */
.hero-slide-video.active::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, .22) 0%, transparent 22%, transparent 68%, rgba(0, 0, 0, .42) 100%);
  pointer-events: none;
}

/* Gold shimmer bar at bottom of video slide */
.hero-slide-video.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(to right, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   2. FLEET — Bigger images + hover zoom overlay + lightbox
   ───────────────────────────────────────────────────────────── */

/* Wider image panel */
.fleet-img-wrap {
  flex: 0 0 48% !important;
}

/* Taller card to show more of the image */
.fleet-card {
  min-height: 270px !important;
}

/* Image fills the wrap */
.fleet-img-wrap img,
.fleet-slide-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Hover: stronger zoom */
.fleet-card:hover .fleet-img-wrap img,
.fleet-card:hover .fleet-slide-img.active {
  transform: scale(1.10) !important;
}

/* Click-to-view zoom overlay */
.fleet-zoom-overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background var(--t) var(--ease);
  cursor: zoom-in;
}

.fleet-zoom-overlay span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  border: 2px solid rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(.7);
  transition: all var(--t) var(--ease);
}

.fleet-img-wrap:hover .fleet-zoom-overlay {
  background: rgba(0, 0, 0, .18);
}

.fleet-img-wrap:hover .fleet-zoom-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* Fleet image lightbox */
#fleet-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10500;
  background: rgba(0, 0, 0, .97);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: none;
}

#fleet-lightbox.active {
  display: flex;
  animation: flbIn .28s cubic-bezier(.16, 1, .3, 1);
}

@keyframes flbIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#fleet-lightbox img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .9);
  border: 1px solid rgba(255, 255, 255, .06);
  user-select: none;
  display: block;
}

#fleet-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tf) var(--ease);
  z-index: 10501;
}

#fleet-lb-close:hover {
  background: var(--red);
  border-color: var(--red);
}

#fleet-lb-prev,
#fleet-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tf) var(--ease);
  z-index: 10501;
}

#fleet-lb-prev {
  left: 18px;
}

#fleet-lb-next {
  right: 18px;
}

#fleet-lb-prev:hover,
#fleet-lb-next:hover {
  background: rgba(var(--gold-rgb), .8);
  border-color: var(--gold);
}

#fleet-lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  font-weight: 600;
  background: rgba(0, 0, 0, .5);
  padding: 5px 18px;
  border-radius: var(--r-f);
  backdrop-filter: blur(6px);
  letter-spacing: .5px;
  white-space: nowrap;
}

/* Mobile: full-width image on fleet cards */
@media (max-width: 600px) {
  .fleet-card {
    flex-direction: column !important;
  }

  .fleet-img-wrap {
    flex: none !important;
    height: 240px !important;
    width: 100% !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   3. BACK TO TOP BUTTON
   ───────────────────────────────────────────────────────────── */
.sticky-btn.back-to-top {
  background: var(--bg2) !important;
  border: 2px solid var(--bdr-g) !important;
  color: var(--gold) !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.8);
  transition: opacity .35s var(--ease), transform .35s var(--ease), max-height .35s var(--ease), background var(--t) var(--ease) !important;
  max-height: 0 !important;
  overflow: hidden;
  margin: -6px 0 0 !important;
}

.sticky-btn.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
  max-height: 48px !important;
  overflow: visible;
  margin: 0 !important;
}

.sticky-btn.back-to-top:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(var(--gold-rgb), .5) !important;
}

/* ─────────────────────────────────────────────────────────────
   5. MOBILE MENU — Modern side drawer redesign
   ───────────────────────────────────────────────────────────── */

/* Overlay */
.mobile-menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1090 !important;
  background: rgba(0, 0, 0, .65) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .3s var(--ease) !important;
}

.mobile-menu-overlay.open {
  opacity: 1 !important;
  pointer-events: all !important;
}

/* Drawer — right side slide-in */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: min(340px, 92vw) !important;
  max-width: 340px !important;
  background: var(--bg2) !important;
  z-index: 1100 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  gap: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transform: translateX(100%) !important;
  transition: transform .38s cubic-bezier(.16, 1, .3, 1) !important;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .4) !important;
  border-left: 1px solid var(--bdr-g) !important;
  overflow: hidden !important;
}

.mobile-menu.open {
  pointer-events: all !important;
  transform: translateX(0) !important;
}

/* Header strip with logo */
.mobile-menu-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 20px 22px !important;
  border-bottom: 1px solid var(--bdr) !important;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), .1) 0%, transparent 60%) !important;
  flex-shrink: 0 !important;
  min-height: 74px !important;
}

/* Nav body */
.mobile-menu-body {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 0 !important;
}

/* Individual nav links */
.mobile-nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 17px 24px !important;
  color: var(--txt) !important;
  font-family: var(--font-b) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid var(--bdr) !important;
  text-decoration: none !important;
  transition: color .2s, background .2s, padding-left .2s !important;
  position: relative !important;
  overflow: hidden !important;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform .2s var(--ease);
  transform-origin: bottom;
}

.mobile-nav-link:hover {
  color: var(--gold) !important;
  background: rgba(var(--gold-rgb), .07) !important;
  padding-left: 28px !important;
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-nav-link svg {
  flex-shrink: 0;
  opacity: .65;
  color: var(--gold);
  transition: opacity .2s;
}

.mobile-nav-link:hover svg {
  opacity: 1;
}

/* Arrow badge on right */
.mobile-nav-link::after {
  content: '›';
  position: absolute;
  right: 18px;
  font-size: 20px;
  color: var(--txt-d);
  transition: color .2s, transform .2s;
  line-height: 1;
}

.mobile-nav-link:hover::after {
  color: var(--gold);
  transform: translateX(3px);
}

/* Stats bar inside menu */
.mm-stats-bar {
  display: flex;
  justify-content: space-around;
  padding: 14px 20px;
  background: rgba(var(--gold-rgb), .06);
  border-bottom: 1px solid var(--bdr);
  flex-shrink: 0;
}

.mm-stat {
  text-align: center;
}

.mm-stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.mm-stat-lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txt-d);
  margin-top: 3px;
}

/* Footer CTA */
.mobile-menu-footer {
  padding: 20px 22px !important;
  border-top: 1px solid var(--bdr-g) !important;
  display: flex !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  background: rgba(var(--gold-rgb), .05) !important;
}

.mobile-menu-footer .btn {
  flex: 1;
  justify-content: center;
  font-size: 13px !important;
  padding: 11px 10px !important;
}

/* Close button repositioned */
.mobile-menu-close {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin-left: auto !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--bg4) !important;
  border: 1.5px solid var(--bdr) !important;
  color: var(--txt) !important;
  border-radius: var(--r-s) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all var(--tf) var(--ease) !important;
  flex-shrink: 0 !important;
}

.mobile-menu-close:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
}

/* ─────────────────────────────────────────────────────────────
   6. RESPONSIVE IMPROVEMENTS
   ───────────────────────────────────────────────────────────── */

/* Container padding at all sizes */
@media (max-width: 1280px) {
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* Section padding */
@media (max-width: 768px) {

  .section-padding,
  .fleet-section,
  .how-section,
  .destinations-section,
  .testimonials-section,
  .about-section,
  .contact-section,
  .gallery-section,
  .services-section {
    padding: 70px 0 !important;
  }
}

@media (max-width: 480px) {

  .section-padding,
  .fleet-section,
  .how-section,
  .destinations-section,
  .testimonials-section,
  .about-section,
  .contact-section,
  .gallery-section,
  .services-section {
    padding: 52px 0 !important;
  }
}

/* Hero responsive */
@media (max-width: 480px) {
  .hero-ctas {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .hero-ctas .btn {
    font-size: 13px !important;
    padding: 11px 18px !important;
  }

  .hero-badge {
    font-size: 10px !important;
    padding: 7px 14px !important;
  }

  .hero-stats {
    gap: 12px !important;
  }

  .hero-stat-num {
    font-size: 26px !important;
  }
}

/* Trust bar scrollable on mobile */
@media (max-width: 640px) {
  .trust-items {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .trust-items::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    flex-shrink: 0;
  }

  .trust-sep {
    flex-shrink: 0;
  }
}

/* Quick book strip */
@media (max-width: 700px) {
  .qbs-inner {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .qbs-label {
    border-right: none !important;
    border-bottom: 1px solid var(--bdr) !important;
    padding: 0 0 16px !important;
  }

  .qbs-fields {
    flex-wrap: wrap !important;
  }

  .qbs-field {
    min-width: calc(50% - 8px) !important;
  }

  .qbs-submit {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 420px) {
  .qbs-field {
    min-width: 100% !important;
  }
}

/* Fleet grid: single column on mobile */
@media (max-width: 700px) {
  .fleet-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Services grid */
@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* How steps */
@media (max-width: 600px) {
  .how-steps {
    grid-template-columns: 1fr 1fr !important;
  }

  .how-steps::before {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .how-steps {
    grid-template-columns: 1fr !important;
  }
}

/* Contact form */
@media (max-width: 560px) {
  .contact-form-row {
    grid-template-columns: 1fr !important;
  }

  .contact-form-wrap {
    padding: 22px 18px !important;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }
}

/* Footer */
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

/* About section */
@media (max-width: 800px) {
  .about-inner {
    grid-template-columns: 1fr !important;
  }

  .about-visual {
    max-width: 420px !important;
    margin: 0 auto !important;
  }
}

/* Partner banner */
@media (max-width: 700px) {
  .partner-inner {
    grid-template-columns: 1fr !important;
  }

  .partner-ctas {
    flex-direction: column !important;
  }

  .partner-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Destinations grid */
@media (max-width: 700px) {
  .destinations-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 400px) {
  .destinations-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Gallery grid */
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Testimonials */
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Header phone hidden on small screens */
@media (max-width: 640px) {
  .header-phone span {
    display: none !important;
  }

  .wa-btn-text {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   8. NEW FEATURES
   ───────────────────────────────────────────────────────────── */

/* ── A. Cookie Consent Banner ── */
#talb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: var(--bg2);
  border-top: 2px solid var(--bdr-g);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .2);
  padding: 18px 28px;
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#talb-cookie-banner.show {
  display: flex;
  animation: cookieUp .4s cubic-bezier(.16, 1, .3, 1);
}

@keyframes cookieUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.talb-cb-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.talb-cb-text {
  flex: 1;
  min-width: 200px;
  font-size: 13.5px;
  color: var(--txt-m);
  line-height: 1.6;
}

.talb-cb-text strong {
  color: var(--txt);
}

.talb-cb-text a {
  color: var(--gold);
}

.talb-cb-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.talb-cb-btn-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--r-f);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--tf) var(--ease);
}

.talb-cb-btn-accept:hover {
  background: var(--gold-l);
}

.talb-cb-btn-decline {
  background: transparent;
  color: var(--txt-d);
  border: 1.5px solid var(--bdr);
  padding: 10px 16px;
  border-radius: var(--r-f);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tf) var(--ease);
}

.talb-cb-btn-decline:hover {
  border-color: var(--txt-d);
  color: var(--txt);
}

@media (max-width:560px) {
  #talb-cookie-banner {
    padding: 16px;
    gap: 14px;
  }

  .talb-cb-btns {
    width: 100%;
  }

  .talb-cb-btn-accept,
  .talb-cb-btn-decline {
    flex: 1;
    text-align: center;
  }
}

/* ── B. Announcement Bar ── */
#talb-announce-bar {
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-d));
  color: #fff;
  text-align: center;
  padding: 9px 48px 9px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#talb-announce-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
}

#talb-announce-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color var(--tf);
}

#talb-announce-close:hover {
  color: #fff;
}

body.talb-bar-visible #site-header {
  top: 37px !important;
}

body.talb-bar-visible .mobile-menu {
  top: 37px !important;
}

/* ── C. Social proof popup ── */
#talb-social-proof {
  position: fixed;
  bottom: 110px;
  left: 20px;
  z-index: 800;
  background: var(--bg2);
  border: 1px solid var(--bdr-g);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-lg);
  max-width: 275px;
  opacity: 0;
  transform: translateX(-16px) scale(.94);
  transition: all .45s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

#talb-social-proof.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.sp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.sp-body {
  flex: 1;
  min-width: 0;
}

.sp-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-action {
  font-size: 11.5px;
  color: var(--txt-d);
}

.sp-time {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 1px;
}

@media (max-width:480px) {
  #talb-social-proof {
    display: none;
  }
}

/* ── D. Legal page styles (Privacy / Cookie / Book Now) ── */
.talb-legal-page {
  padding: 80px 0 100px;
  background: var(--bg);
}
  color: var(--txt-m);
  line-height: 1.9;
  max-width: 800px;
}

.talb-legal-content h2 {
  font-family: var(--font-h);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: var(--txt);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bdr-g);
}

.talb-legal-content h2:first-of-type {
  margin-top: 20px;
}

.talb-legal-content p {
  font-size: 15px;
  margin-bottom: 16px;
}

.talb-legal-content ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.talb-legal-content ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--bdr);
}

.talb-legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.talb-legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cookie table */
.talb-cookie-table {
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  margin: 16px 0 24px;
}

.talb-cookie-row {
  display: grid;
  grid-template-columns: 1.4fr .7fr 2.2fr .9fr;
  padding: 11px 18px;
  border-bottom: 1px solid var(--bdr);
  align-items: center;
  font-size: 13px;
}

.talb-cookie-row:last-child {
  border-bottom: none;
}

.talb-cookie-head {
  background: rgba(var(--gold-rgb), .08);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--txt-d);
}

.talb-cookie-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: var(--r-f);
  font-size: 10px;
  font-weight: 700;
}

.talb-badge-essential {
  background: rgba(37, 211, 102, .1);
  color: #25c864;
  border: 1px solid rgba(37, 211, 102, .3);
}

.talb-badge-functional {
  background: rgba(var(--gold-rgb), .1);
  color: var(--gold);
  border: 1px solid rgba(var(--gold-rgb), .3);
}

.talb-badge-analytics {
  background: rgba(74, 144, 226, .1);
  color: #4a90e2;
  border: 1px solid rgba(74, 144, 226, .3);
}

@media (max-width:580px) {
  .talb-cookie-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 10px 14px;
  }

  .talb-cookie-head {
    display: none;
  }
}

/* Book Now page */
.book-now-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.book-step {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--bdr);
}

.book-step:last-child {
  border-right: none;
}

.book-step-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.book-step-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.book-step-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
}

@media (max-width:640px) {
  .book-now-steps {
    grid-template-columns: 1fr 1fr !important;
  }

  .book-step:nth-child(2) {
    border-right: none;
  }

  .book-step:nth-child(3),
  .book-step:nth-child(4) {
    border-top: 1px solid var(--bdr);
  }
}

@media (max-width:360px) {
  .book-now-steps {
    grid-template-columns: 1fr !important;
  }

  .book-step {
    border-right: none !important;
    border-bottom: 1px solid var(--bdr) !important;
  }
}


/* ============================================================
   DELUXE STUDIOS — ENHANCEMENTS v2
   ============================================================ */

/* --- FIX 1: Flag images & SVG icons --- */
.lang-flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  flex-shrink: 0;
}

.lang-globe {
  flex-shrink: 0;
  opacity: 0.85;
}

.t-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-icon.i-sun {
  display: none;
}

[data-theme="light"] .t-icon.i-moon {
  display: none;
}

[data-theme="light"] .t-icon.i-sun {
  display: flex;
}

/* --- FIX 2: Header phone — icon only, styled like other buttons --- */
.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  color: var(--txt-m);
  transition: all var(--tf) var(--ease);
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), .08);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* --- FIX 3: WhatsApp header button — official green --- */
.btn-wa-green {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
}

.btn-wa-green:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
}

/* --- FIX 4: Hero content — smaller, cinematic --- */
.hero-content {
  max-width: 780px;
}

.hero-badge {
  font-size: 10px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(26px, 4vw, 54px) !important;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: clamp(13px, 1.5vw, 16px) !important;
  margin-bottom: 24px;
  max-width: 560px;
}

/* --- FIX 5: Hero stats & CTAs — smaller --- */
.hero-stats {
  padding: 12px 20px;
  margin-bottom: 24px;
  gap: 0;
  border-radius: 12px;
}

.hero-stat {
  padding: 0 18px;
}

.hero-stat-num {
  font-size: 22px !important;
}

.hero-stat-label {
  font-size: 10px !important;
}

.hero-stat-divider {
  height: 32px;
}

.hero-ctas {
  gap: 10px;
  margin-bottom: 24px;
}

.hero-ctas .btn-lg {
  padding: 11px 22px !important;
  font-size: 13.5px !important;
}

/* --- FIX 6: Sticky buttons — smaller + email button --- */
.sticky-btn {
  width: 44px !important;
  height: 44px !important;
}

.sticky-btn svg {
  pointer-events: none;
}

.sticky-btn.email {
  background: #1a73e8;
}

.sticky-btn.email:hover {
  background: #1558c0;
  box-shadow: 0 6px 28px rgba(26, 115, 232, .45);
  transform: translateY(-3px);
}

/* --- FIX 7: Dolomites Experience Section --- */
.dolomites-exp-section {
  padding: 90px 0;
  background: var(--bg2);
}

.dexp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.dexp-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all var(--t) var(--ease);
}

.dexp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--bdr-g);
}

.dexp-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.dexp-card h3 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--txt);
}

.dexp-card p {
  font-size: 14px;
  color: var(--txt-m);
  line-height: 1.65;
}

.dexp-cta {
  text-align: center;
  padding-top: 16px;
}

.dexp-cta p {
  font-size: 15px;
  color: var(--txt-m);
  margin-bottom: 20px;
}

.dexp-cta .btn {
  margin: 0 8px;
}

/* --- FIX 9: Fleet solo item — fills full row, modern hero style --- */
.fleet-grid-solo {
  grid-template-columns: 1fr !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-grid-solo .fleet-card {
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.fleet-grid-solo .fleet-img-wrap {
  flex: 0 0 50%;
}

.fleet-grid-solo .fleet-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.fleet-grid-solo .fleet-name {
  font-size: 28px;
}

.fleet-grid-solo .fleet-excerpt {
  font-size: 15px;
  line-height: 1.7;
}

.fleet-grid-solo .fleet-book-btn {
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 15px;
}

/* --- FIX 10: Destination cards without time --- */
.destination-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.dest-time {
  display: none !important;
}

/* --- Destinations grid — 4 columns for more routes --- */
.destinations-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* --- General: no-icon photo fix for lang-flag in non-supporting browsers --- */
img.lang-flag:not([src]) {
  visibility: hidden;
}

/* --- Responsive adjustments --- */
@media (max-width: 600px) {
  .hero-title {
    font-size: 22px !important;
  }

  .hero-sub {
    font-size: 13px !important;
  }

  .hero-stats {
    padding: 10px 14px;
  }

  .hero-stat {
    padding: 0 12px;
  }

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

  .fleet-grid-solo .fleet-card {
    flex-direction: column;
    min-height: auto;
  }

  .fleet-grid-solo .fleet-img-wrap {
    flex: 0 0 240px;
  }
}

@media (max-width: 400px) {
  .dexp-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   DELUXE STUDIOS — FINAL FIXES v3
   ================================================================= */

/* ─── FIX 1: .header-phone — correct background ─── */
.header-phone {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: var(--bg3) !important;
  border: 1.5px solid var(--bdr) !important;
  color: var(--txt-m) !important;
  transition: all var(--tf) var(--ease) !important;
  flex-shrink: 0 !important;
}

.header-phone:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(var(--gold-rgb), .10) !important;
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .15) !important;
}

/* Non-scrolled (hero zone): glass look */
#site-header:not(.scrolled) .header-phone {
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .32) !important;
  color: #fff !important;
}

#site-header:not(.scrolled) .header-phone:hover {
  background: rgba(255, 255, 255, .26) !important;
  border-color: rgba(255, 255, 255, .6) !important;
}

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

/* ─── FIX 2a: .theme-toggle — correct background ─── */
.theme-toggle {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: var(--bg3) !important;
  border: 1.5px solid var(--bdr-g) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all var(--t) var(--ease) !important;
  flex-shrink: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  color: var(--txt) !important;
}

.theme-toggle:hover {
  border-color: var(--gold) !important;
  background: rgba(var(--gold-rgb), .12) !important;
  transform: rotate(18deg) scale(1.08) !important;
}

/* Non-scrolled: glass look */
#site-header:not(.scrolled) .theme-toggle {
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .32) !important;
  color: #fff !important;
}

#site-header:not(.scrolled) .theme-toggle:hover {
  background: rgba(255, 255, 255, .26) !important;
  border-color: rgba(255, 255, 255, .6) !important;
}

/* ─── FIX 2b: .theme-toggle icons — fix opacity conflict ─── */
/* Reset all old opacity animations */
.t-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  transform: none !important;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease) !important;
}

/* Light mode (default data-theme="light"): show sun, hide moon */
.t-icon.i-moon {
  opacity: 0 !important;
  transform: scale(0.4) rotate(90deg) !important;
  pointer-events: none;
}

.t-icon.i-sun {
  opacity: 1 !important;
  transform: scale(1) rotate(0) !important;
}

/* Dark mode: show moon, hide sun */
[data-theme="dark"] .t-icon.i-moon {
  opacity: 1 !important;
  transform: scale(1) rotate(0) !important;
}

[data-theme="dark"] .t-icon.i-sun {
  opacity: 0 !important;
  transform: scale(0.4) rotate(-90deg) !important;
  pointer-events: none;
}

/* Also ensure display is never none for icons (use opacity only) */
.t-icon.i-sun {
  display: flex !important;
}

.t-icon.i-moon {
  display: flex !important;
}

/* ─── FIX 3: .header-wa-btn — official WhatsApp green + glass ─── */
.header-wa-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 14px !important;
  border-radius: var(--r-f) !important;
  background: #25D366 !important;
  border: 1.5px solid rgba(37, 211, 102, .6) !important;
  color: #fff !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: .3px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all var(--t) var(--ease) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 2px 12px rgba(37, 211, 102, .3), inset 0 1px 0 rgba(255, 255, 255, .25) !important;
  position: relative !important;
  overflow: hidden !important;
}

.header-wa-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
}

.header-wa-btn:hover {
  background: #1ebe5a !important;
  border-color: rgba(37, 211, 102, .9) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5), inset 0 1px 0 rgba(255, 255, 255, .3) !important;
  transform: translateY(-1px) !important;
}

/* Non-scrolled: slightly more transparent glass */
#site-header:not(.scrolled) .header-wa-btn {
  background: rgba(37, 211, 102, .85) !important;
  border-color: rgba(37, 211, 102, .7) !important;
  box-shadow: 0 2px 16px rgba(37, 211, 102, .35), inset 0 1px 0 rgba(255, 255, 255, .3) !important;
}

#site-header:not(.scrolled) .header-wa-btn:hover {
  background: rgba(37, 211, 102, .95) !important;
}

@media (max-width: 600px) {
  .header-wa-btn {
    display: none !important;
  }
}

/* ─── FIX 4: .sticky-buttons — consistent size, never resize on hover ─── */
.sticky-buttons {
  position: fixed !important;
  bottom: 30px !important;
  right: 24px !important;
  z-index: 850;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-end !important;
}

.sticky-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  border-radius: 50% !important;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .28) !important;
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease !important;
  overflow: visible !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}

.sticky-btn:hover {
  transform: translateY(-4px) !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
}

@media (max-width: 480px) {
  .sticky-btn {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
  }

  .sticky-btn:hover {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
  }
}

/* ─── Review Form Styles ─── */
.talb-review-form-section {
  margin-top: 48px;
  background: var(--bg2);
  border: 1.5px solid var(--bdr-g);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.talb-review-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.talb-review-form-title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}

.talb-review-form-sub {
  font-size: 14px;
  color: var(--txt-m);
  margin-bottom: 28px;
}

.talb-star-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.talb-star-rating input[type="radio"] {
  display: none;
}

.talb-star-rating label {
  font-size: 32px;
  color: var(--bg4);
  cursor: pointer;
  transition: color .15s, transform .15s;
  line-height: 1;
}

.talb-star-rating label:hover,
.talb-star-rating label:hover~label,
.talb-star-rating input:checked~label {
  color: var(--bg4);
}

.talb-star-rating label:hover,
.talb-star-rating input:checked~label~label~label~label,
.talb-star-rating input[value="5"]:checked~label,
.talb-star-rating input[value="5"]:checked~label~label {
  color: var(--gold);
}

/* Simpler star rating via JS */
.talb-stars-wrap {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.talb-star-lbl {
  font-size: 36px;
  cursor: pointer;
  color: var(--bg5);
  transition: color .15s, transform .15s;
  line-height: 1;
  user-select: none;
}

.talb-star-lbl:hover,
.talb-star-lbl.active {
  color: var(--gold);
  transform: scale(1.15);
}

.talb-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 560px) {
  .talb-review-grid {
    grid-template-columns: 1fr;
  }
}

.talb-review-form-msg {
  padding: 14px 18px;
  border-radius: var(--r-s);
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  display: none;
}

.talb-review-form-msg.success {
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .3);
  color: #25c864;
}

.talb-review-form-msg.error {
  background: rgba(214, 48, 49, .1);
  border: 1px solid rgba(214, 48, 49, .3);
  color: var(--red);
}

/* Admin controls on testimonial cards */
.talb-review-admin-bar {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--bdr-g);
  flex-wrap: wrap;
}

.talb-rev-admin-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-s);
  border: none;
  cursor: pointer;
  transition: all var(--tf) var(--ease);
  letter-spacing: .3px;
}

.talb-rev-btn-toggle {
  background: rgba(var(--gold-rgb), .12);
  color: var(--gold);
}

.talb-rev-btn-toggle:hover {
  background: var(--gold);
  color: #fff;
}

.talb-rev-btn-delete {
  background: rgba(214, 48, 49, .1);
  color: var(--red);
}

.talb-rev-btn-delete:hover {
  background: var(--red);
  color: #fff;
}

/* ─── Better Legal Page Design ─── */
.talb-legal-page {
  padding: 80px 0 100px;
  background: var(--bg);
}

.talb-legal-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(var(--gold-rgb), .04) 100%);
  border: 1px solid var(--bdr-g);
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.talb-legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-d));
}

.talb-legal-hero::after {
  content: '⚖️';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: .07;
  pointer-events: none;
}

.talb-legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--txt-d);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: .5px;
}

.talb-legal-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.talb-legal-breadcrumb a:hover {
  text-decoration: underline;
}

.talb-legal-breadcrumb span {
  opacity: .5;
}

.talb-legal-h1 {
  font-family: var(--font-h);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: var(--txt);
  margin-bottom: 10px;
  line-height: 1.1;
}

.talb-legal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.talb-legal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--txt-d);
  font-weight: 500;
}

.talb-legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 860px) {
  .talb-legal-layout {
    grid-template-columns: 1fr;
  }
}

.talb-legal-toc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 20px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.talb-legal-toc-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bdr-g);
}

.talb-legal-toc-item {
  display: block;
  font-size: 13px;
  color: var(--txt-m);
  padding: 7px 8px;
  border-radius: var(--r-s);
  text-decoration: none;
  transition: all var(--tf) var(--ease);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 2px;
}

.talb-legal-toc-item:hover {
  background: rgba(var(--gold-rgb), .08);
  color: var(--gold);
  padding-left: 14px;
}

.talb-legal-content-body h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--txt);
  margin: 40px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--bdr-g);
}

.talb-legal-content-body h2:first-of-type {
  margin-top: 0;
}

.talb-legal-content-body h2 .lh-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-s);
  background: rgba(var(--gold-rgb), .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.talb-legal-content-body p {
  font-size: 15px;
  color: var(--txt-m);
  line-height: 1.85;
  margin-bottom: 16px;
}

.talb-legal-content-body ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.talb-legal-content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  font-size: 14.5px;
  color: var(--txt-m);
  border-bottom: 1px solid var(--bdr);
  line-height: 1.6;
}

.talb-legal-content-body ul li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.talb-legal-content-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.talb-legal-content-body h3 {
  font-family: var(--font-h);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  color: var(--txt);
  margin: 28px 0 10px;
}

.talb-legal-content-body strong,
.talb-legal-content-body b {
  color: var(--txt);
  font-weight: 700;
}

.talb-legal-content-body code {
  font-family: var(--font-m);
  font-size: 12.5px;
  color: var(--gold);
  background: rgba(var(--gold-rgb), .08);
  border: 1px solid rgba(var(--gold-rgb), .2);
  border-radius: 4px;
  padding: 1px 6px;
}

.talb-legal-content-body ol {
  list-style: decimal;
  margin: 0 0 20px;
  padding-left: 22px;
}

.talb-legal-content-body ol li {
  font-size: 14.5px;
  color: var(--txt-m);
  padding: 6px 0;
  line-height: 1.6;
}

/* WP block editor output — ensure correct colors in both modes */
.talb-legal-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13.5px;
  color: var(--txt-m);
}

.talb-legal-content-body table th {
  background: rgba(var(--gold-rgb), .08);
  color: var(--txt);
  font-weight: 700;
  padding: 10px 14px;
  border: 1px solid var(--bdr);
  text-align: left;
}

.talb-legal-content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--bdr);
  color: var(--txt-m);
  vertical-align: top;
}

.talb-legal-info-box {
  background: rgba(var(--gold-rgb), .06);
  border: 1px solid var(--bdr-g);
  border-radius: var(--r);
  padding: 18px 22px;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.talb-legal-info-box .lib-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.talb-legal-info-box p {
  margin: 0;
  font-size: 14px;
  color: var(--txt-m);
}

@media (max-width: 640px) {
  .talb-legal-hero {
    padding: 28px 24px;
  }

  .talb-legal-hero::after {
    display: none;
  }
}


/* ─── FIX 8: Fleet — bigger, more visible images ─── */
/* List view: wider image side */
.fleet-img-wrap {
  flex: 0 0 52% !important;
  min-height: 260px !important;
}

.fleet-card {
  min-height: 280px !important;
}

/* Ensure images fill fully with good brightness */
.fleet-img-wrap img,
.fleet-slide-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(1.05) contrast(1.02) !important;
}

/* Gradient overlay lighter so images show through */
.fleet-img-gradient {
  background: linear-gradient(to right, transparent 55%, rgba(0, 0, 0, .25) 100%) !important;
}

/* Placeholder: same height */
.fleet-img-placeholder {
  min-height: 260px !important;
}

/* Mobile: taller image when stacked */
@media (max-width: 600px) {
  .fleet-img-wrap {
    height: 260px !important;
    flex: none !important;
  }
}

/* =================================================================
   ╔══════════════════════════════════════════════════════════════╗
   ║  DELUXE STUDIOS L.L.C — UPDATE PATCH v1.0.0                 ║
   ╚══════════════════════════════════════════════════════════════╝
   ================================================================= */

/* ─── 1. STICKY BUTTONS — SMALLER & REFINED ─── */
.sticky-buttons {
  bottom: 24px !important;
  right: 20px !important;
  gap: 10px !important;
}

.sticky-btn {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .26) !important;
}

.sticky-btn:hover {
  width: 44px !important;
  height: 44px !important;
  transform: translateY(-3px) !important;
}

.sticky-btn svg {
  width: 17px !important;
  height: 17px !important;
}

.sticky-btn.back-to-top svg {
  width: 16px !important;
  height: 16px !important;
}

@media (max-width: 480px) {
  .sticky-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .sticky-btn:hover {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ─── 2. WHATSAPP BUTTONS — OFFICIAL COLORS + GLASS ─── */
:root {
  --wa-green: #25D366;
  --wa-green-d: #128C7E;
  --wa-green-l: #DCF8C6;
}

/* All whatsapp sticky buttons */
.sticky-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20b958 100%) !important;
  box-shadow: 0 3px 16px rgba(37, 211, 102, .45) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, .25) !important;
}

.sticky-btn.whatsapp:hover {
  background: linear-gradient(135deg, #20b958 0%, #128C7E 100%) !important;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55) !important;
}

/* All .btn-whatsapp buttons */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20b958 100%) !important;
  border-color: #25D366 !important;
  color: #fff !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .35), inset 0 1px 0 rgba(255, 255, 255, .2) !important;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .12) 0%, transparent 50%);
  pointer-events: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20b958 0%, #128C7E 100%) !important;
  border-color: #128C7E !important;
  color: #fff !important;
  box-shadow: 0 6px 26px rgba(37, 211, 102, .5), inset 0 1px 0 rgba(255, 255, 255, .18) !important;
  transform: translateY(-2px) !important;
}

/* WhatsApp contact info item */
.ci-item-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, .12) 0%, rgba(18, 140, 126, .08) 100%) !important;
  border-color: rgba(37, 211, 102, .3) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.ci-item-whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, .22) 0%, rgba(18, 140, 126, .15) 100%) !important;
  border-color: rgba(37, 211, 102, .5) !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .2) !important;
}

/* Header WhatsApp button */
.header-wa-btn {
  background: linear-gradient(135deg, #25D366 0%, #20b958 100%) !important;
  border-color: #25D366 !important;
  box-shadow: 0 2px 14px rgba(37, 211, 102, .35), inset 0 1px 0 rgba(255, 255, 255, .2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.header-wa-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #0e7a6e 100%) !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45) !important;
}

/* ─── 3. FLEET IMAGES BIGGER ─── */
.fleet-img-wrap {
  flex: 0 0 54% !important;
  min-height: 300px !important;
}

.fleet-card {
  min-height: 300px !important;
}

.fleet-img-wrap img,
.fleet-slide-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(1.06) contrast(1.03) !important;
}

.fleet-img-placeholder {
  min-height: 300px !important;
}

@media (max-width: 768px) {
  .fleet-img-wrap {
    height: 280px !important;
    flex: none !important;
    min-height: 280px !important;
  }
}

@media (max-width: 480px) {
  .fleet-img-wrap {
    height: 240px !important;
    min-height: 240px !important;
  }
}

/* ─── 4. SINGLE FLEET — BIGGER IMAGES ─── */
#fleetMainImg {
  aspect-ratio: 16/10 !important;
  min-height: 380px !important;
}

#fleetMainImgEl {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Bigger thumbnails in fleet strip */
.fleet-single-thumb-strip>div {
  flex: 0 0 140px !important;
  height: 95px !important;
}

/* ─── 5. MODERN MOBILE MENU — GLASS EFFECT ─── */
.mobile-menu {
  background: none !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
}

/* Light mode glass */
:root .mobile-menu {
  background: rgba(247, 245, 241, .88) !important;
}

/* Dark mode glass */
[data-theme="dark"] .mobile-menu,
.dark-mode .mobile-menu {
  background: rgba(10, 14, 22, .85) !important;
}

.mobile-menu-header {
  border-bottom: 1px solid rgba(110, 240, 122, .2) !important;
  background: transparent !important;
}

.mobile-menu-overlay {
  background: rgba(0, 0, 0, .55) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

/* Nav links — modern font feel */
.mobile-nav-link {
  font-family: var(--font-h) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: -.02em !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(110, 240, 122, .12) !important;
  transition: all .2s ease !important;
  border-radius: 0 !important;
}

.mobile-nav-link svg {
  opacity: .5;
  transition: opacity .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.mobile-nav-link:hover svg {
  opacity: 1;
  transform: translateX(3px);
}

/* Footer area with CTA buttons */
.mobile-menu-footer {
  border-top: 1px solid rgba(110, 240, 122, .2) !important;
  background: transparent !important;
  padding: 20px 0 0 !important;
  gap: 10px !important;
  flex-direction: column !important;
}

/* Social icons area */
.mm-social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(110, 240, 122, .1);
}

.mm-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(110, 240, 122, .1);
  border: 1px solid rgba(110, 240, 122, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt);
  text-decoration: none;
  transition: all .2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mm-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(110, 240, 122, .4);
}

.mm-social-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Stats bar glass */
.mm-stats-bar {
  background: rgba(110, 240, 122, .07) !important;
  border: 1px solid rgba(110, 240, 122, .18) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 12px !important;
  margin: 0 0 6px !important;
}

/* ─── 6. GOOGLE MAP IN CONTACT ─── */
.talb-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--bdr);
  box-shadow: var(--sh);
  position: relative;
}

.talb-map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding: 0 2px;
}

/* ─── 7. HERO SLIDES ADMIN — GRID LAYOUT ─── */
#heroSlidesList {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  max-height: 480px !important;
  overflow-y: auto !important;
  padding: 4px !important;
}

.hero-slide-item {
  position: relative !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  aspect-ratio: 16/9 !important;
  border: 2px solid rgba(110, 240, 122, .3) !important;
  transition: border-color .2s ease, transform .2s ease !important;
}

.hero-slide-item:hover {
  border-color: #6EF07A !important;
  transform: scale(1.02) !important;
}

.hero-slide-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.talb-remove-slide {
  position: absolute !important;
  top: 4px !important;
  right: 4px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, .7) !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  opacity: 0 !important;
  transition: opacity .2s ease !important;
}

.hero-slide-item:hover .talb-remove-slide {
  opacity: 1 !important;
}

.talb-slides-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(110, 240, 122, .15);
  border: 1px solid rgba(110, 240, 122, .35);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #6EF07A;
  margin-bottom: 14px;
}


/* ─── BOOK NOW — HERO ─── */
.talb-book-hero {
  background: linear-gradient(135deg, #080f1a 0%, #0f1f35 50%, #080f1a 100%);
  padding: calc(var(--header-h) + 90px) 0 70px;
  position: relative;
  overflow: hidden;
}

.talb-book-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(110, 240, 122, .09), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(37, 211, 102, .04), transparent 55%);
  pointer-events: none;
}

.talb-book-hero .talb-legal-breadcrumb a {
  color: rgba(255, 255, 255, .5) !important;
}

.talb-book-hero .talb-legal-breadcrumb span {
  color: rgba(255, 255, 255, .3) !important;
}

/* ─── BOOK NOW — HOW IT WORKS ─── */
.book-now-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 0;
  flex-wrap: wrap;
}

.book-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  position: relative;
  text-align: center;
}

.book-step+.book-step::before {
  content: '→';
  position: absolute;
  left: -6px;
  top: 14px;
  color: var(--gold);
  font-size: 16px;
  opacity: .5;
}

.book-step-icon {
  font-size: 28px;
  width: 60px;
  height: 60px;
  background: rgba(var(--gold-rgb), .1);
  border: 1.5px solid rgba(var(--gold-rgb), .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-step-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.book-step-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
}

@media (max-width: 600px) {
  .book-now-steps {
    gap: 4px;
  }

  .book-step {
    padding: 8px 14px;
  }

  .book-step+.book-step::before {
    display: none;
  }
}

/* ─── LEGAL CTA FOOTER ─── */
.talb-legal-cta {
  background: linear-gradient(135deg, rgba(var(--gold-rgb), .07) 0%, rgba(var(--gold-rgb), .03) 100%);
  border: 1.5px solid rgba(var(--gold-rgb), .2);
  border-radius: var(--r);
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
}

.talb-legal-cta-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.talb-legal-cta-title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 10px;
}

.talb-legal-cta-text {
  color: var(--txt-m);
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.talb-legal-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .talb-legal-cta {
    padding: 32px 20px;
  }

  .talb-legal-cta-btns {
    flex-direction: column;
  }

  .talb-legal-cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =================================================================
   ╔═══════════════════════════════════════════════════════════════╗
   ║  DELUXE STUDIOS L.L.C — FINAL FIXES PATCH                    ║
   ║  taxi-albert-theme-v1 | v1.0.0                                ║
   ╚═══════════════════════════════════════════════════════════════╝
   ================================================================= */

/* ─────────────────────────────────────────────────────────────
   1. HERO CONTENT — center, max-content width, show/hide
   ───────────────────────────────────────────────────────────── */
.hero-content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: max-content !important;
  max-width: min(860px, calc(100vw - 40px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.hero-content > * {
  width: max-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-title {
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
}

.hero-sub {
  text-align: center !important;
  width: 100% !important;
  max-width: 640px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-badge {
  margin-left: auto !important;
  margin-right: auto !important;
  width: max-content !important;
}

.hero-stats {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: max-content !important;
  max-width: 100% !important;
}

.hero-ctas {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: max-content !important;
  max-width: 100% !important;
  flex-wrap: wrap !important;
}

@media (max-width: 768px) {
  .hero-content {
    max-width: calc(100vw - 32px) !important;
    padding: 0 !important;
  }
  .hero-ctas {
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
    max-width: 320px !important;
  }
}

@media (max-width: 480px) {
  .hero-content {
    max-width: calc(100vw - 24px) !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   2. STICKY BUTTONS — Correctly sized at every breakpoint
   ───────────────────────────────────────────────────────────── */
.sticky-buttons {
  bottom: 22px !important;
  right: 18px !important;
  gap: 9px !important;
}

/* Desktop ≥ 1200px: 44px */
@media (min-width: 1200px) {
  .sticky-btn,
  .sticky-btn:hover {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
  .sticky-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
  .sticky-btn.back-to-top.visible {
    max-height: 44px !important;
  }
}

/* Tablet 768–1199px: 40px */
@media (min-width: 768px) and (max-width: 1199px) {
  .sticky-btn,
  .sticky-btn:hover {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
  .sticky-btn svg {
    width: 17px !important;
    height: 17px !important;
  }
  .sticky-btn.back-to-top.visible {
    max-height: 40px !important;
  }
}

/* Mobile 481–767px: 36px */
@media (min-width: 481px) and (max-width: 767px) {
  .sticky-buttons {
    bottom: 18px !important;
    right: 14px !important;
    gap: 8px !important;
  }
  .sticky-btn,
  .sticky-btn:hover {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }
  .sticky-btn svg {
    width: 15px !important;
    height: 15px !important;
  }
  .sticky-btn.back-to-top.visible {
    max-height: 36px !important;
  }
}

/* Small mobile ≤ 480px: 34px */
@media (max-width: 480px) {
  .sticky-buttons {
    bottom: 14px !important;
    right: 12px !important;
    gap: 7px !important;
  }
  .sticky-btn,
  .sticky-btn:hover {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }
  .sticky-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  .sticky-btn.back-to-top.visible {
    max-height: 34px !important;
  }
  .sticky-btn-tooltip {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   3. MOBILE MENU — Clean, responsive at all breakpoints
   ───────────────────────────────────────────────────────────── */
.mobile-menu {
  width: min(340px, 92vw) !important;
  max-width: 340px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.mobile-menu-body {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.mobile-menu-footer {
  flex-shrink: 0 !important;
  padding: 16px 16px 20px !important;
  gap: 10px !important;
  display: flex !important;
  flex-direction: column !important;
  border-top: 1px solid rgba(110, 240, 122, .2) !important;
  background: rgba(var(--gold-rgb), .03) !important;
}

.mobile-menu-footer > a.btn,
.mobile-menu-footer > div > a.btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 12px 16px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  border-radius: var(--r-s) !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.mobile-menu-footer > div {
  display: flex !important;
  gap: 10px !important;
  width: 100% !important;
}

.mobile-menu-footer > div > a.btn {
  flex: 1 !important;
  padding: 11px 10px !important;
  font-size: 13px !important;
  min-width: 0 !important;
}

.mm-social-row {
  display: flex !important;
  gap: 10px !important;
  justify-content: center !important;
  padding: 12px 0 0 !important;
  margin-top: 10px !important;
  border-top: 1px solid rgba(110, 240, 122, .12) !important;
}

.mm-social-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

/* Very small screens (≤ 360px) — compact menu */
@media (max-width: 360px) {
  .mobile-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    border-left: none !important;
    border-radius: 0 !important;
  }

  .mobile-nav-link {
    padding: 14px 18px !important;
    font-size: 14px !important;
  }

  .mobile-menu-footer {
    padding: 12px 12px 16px !important;
    gap: 8px !important;
  }

  .mobile-menu-footer > a.btn {
    padding: 11px 12px !important;
    font-size: 13px !important;
  }

  .mobile-menu-footer > div > a.btn {
    padding: 10px 8px !important;
    font-size: 12px !important;
  }

  .mm-social-btn {
    width: 34px !important;
    height: 34px !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   4. FLEET — Bigger images, solo layout boost
   ───────────────────────────────────────────────────────────── */

/* Standard fleet: image takes 55% */
.fleet-img-wrap {
  flex: 0 0 55% !important;
}

.fleet-card {
  min-height: 280px !important;
}

/* Solo fleet: full hero treatment */
.fleet-grid-solo {
  grid-template-columns: 1fr !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.fleet-grid-solo .fleet-card {
  min-height: 420px !important;
  max-height: 500px !important;
}

.fleet-grid-solo .fleet-img-wrap {
  flex: 0 0 60% !important;
}

.fleet-grid-solo .fleet-name {
  font-size: 28px !important;
}

.fleet-grid-solo .fleet-body {
  padding: 40px 40px 40px 36px !important;
  gap: 18px !important;
}

.fleet-grid-solo .fleet-excerpt {
  font-size: 15px !important;
  -webkit-line-clamp: 4 !important;
}

/* Placeholder for fleet with no image */
.fleet-img-placeholder {
  min-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: var(--bg4) !important;
}

.fleet-img-placeholder span {
  font-size: 52px !important;
}

/* Mobile fleet stacking */
@media (max-width: 700px) {
  .fleet-card {
    flex-direction: column !important;
    min-height: unset !important;
  }
  .fleet-img-wrap,
  .fleet-grid-solo .fleet-img-wrap {
    flex: none !important;
    width: 100% !important;
    height: 280px !important;
  }
  .fleet-grid-solo .fleet-card {
    max-height: unset !important;
    min-height: unset !important;
  }
  .fleet-grid-solo .fleet-body {
    padding: 24px 20px !important;
  }
  .fleet-img-placeholder {
    min-height: 240px !important;
  }
}

@media (max-width: 480px) {
  .fleet-img-wrap,
  .fleet-grid-solo .fleet-img-wrap {
    height: 240px !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   5. GALLERY — Bigger images on desktop and mobile
   ───────────────────────────────────────────────────────────── */

/* Desktop: taller rows for more visual impact */
.gallery-grid {
  grid-auto-rows: 280px !important;
  gap: 14px !important;
}

.gallery-preview-section .gallery-grid {
  grid-auto-rows: 260px !important;
}

/* Items that span multiple rows */
.gallery-item.tall {
  grid-row: span 2 !important;
}

.gallery-item.wide {
  grid-column: span 2 !important;
}

/* Tablet: 3 columns, still tall */
@media (min-width: 769px) and (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 260px !important;
  }
}

/* Mobile 481–768px: 2 columns, taller */
@media (min-width: 481px) and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 240px !important;
    gap: 10px !important;
  }
  .gallery-preview-section .gallery-grid {
    grid-auto-rows: 220px !important;
  }
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* Small mobile ≤ 480px: 2 columns, still big */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 180px !important;
    gap: 8px !important;
  }
  .gallery-preview-section .gallery-grid {
    grid-auto-rows: 160px !important;
  }
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* Tiny mobile ≤ 360px: 1 column */
@media (max-width: 360px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 200px !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   FIX: Legal & Book Now pages — make animate-on-scroll visible
   Content was rendering invisible (opacity:0) because the
   IntersectionObserver was not triggering on these pages.
   ───────────────────────────────────────────────────────────── */
.talb-legal-page .animate-on-scroll,
.contact-section .animate-on-scroll,
.talb-book-section .animate-on-scroll,
.page-book-now .animate-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ─────────────────────────────────────────────────────────────
   FIX: Button text wrapping on small screens
   Buttons with long labels were overflowing and not wrapping.
   ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .btn {
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    line-height: 1.3 !important;
    height: auto !important;
    min-height: 44px !important;
  }

  /* Mobile-menu footer buttons keep nowrap (already full-width) */
  .mobile-menu-footer .btn,
  .mobile-menu-footer > a.btn,
  .mobile-menu-footer > div > a.btn {
    white-space: nowrap !important;
    word-break: normal !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   6. HERO VIDEO — ensure video fills slide on all screens
   ───────────────────────────────────────────────────────────── */
.hero-slide-video {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
}

.hero-slide-video .hero-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none !important;
}

/* ─────────────────────────────────────────────────────────────
   END DELUXE STUDIOS FIXES PATCH
   ───────────────────────────────────────────────────────────── */


/* =================================================================
   CUSTOM IMPROVEMENTS — Quick Book Strip, WhatsApp, Fleet, Gallery
   ================================================================= */

/* ── Quick Book Strip: improved visual design ── */
.quick-book-strip {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 1px solid var(--bdr-g);
  border-bottom: 2px solid var(--bdr-g);
  box-shadow: 0 8px 40px rgba(0,0,0,.14), 0 2px 0 rgba(var(--gold-rgb),.15) inset;
}

.qbs-inner {
  padding: 24px 0;
  gap: 24px;
  border-radius: 0;
}

.qbs-label {
  padding-right: 24px;
  gap: 14px;
}

.qbs-label .qbs-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 6px rgba(var(--gold-rgb),.35));
}

.qbs-title {
  font-size: 16px;
  color: var(--txt);
  background: linear-gradient(135deg, var(--txt) 60%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qbs-field {
  background: var(--bg);
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  padding: 10px 14px;
  gap: 9px;
  transition: border-color .2s, box-shadow .2s;
}

.qbs-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),.12);
  background: var(--bg);
}

.qbs-field input,
.qbs-field select {
  font-size: 14px;
  font-weight: 500;
}

.qbs-submit {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(var(--gold-rgb),.35);
  transition: all .2s;
  gap: 8px;
}

.qbs-submit:hover {
  box-shadow: 0 6px 28px rgba(var(--gold-rgb),.5);
  transform: translateY(-2px);
}

/* ── WhatsApp button — Official brand colors ── */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1FB855 60%, #128C7E 100%) !important;
  color: #fff !important;
  border-color: #1FB855 !important;
  box-shadow: 0 4px 18px rgba(37,211,102,.38) !important;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #22c45c 0%, #1aab50 60%, #0f7a6e 100%) !important;
  border-color: #1aab50 !important;
  color: #fff !important;
  box-shadow: 0 6px 26px rgba(37,211,102,.55) !important;
  transform: translateY(-2px);
}

/* Sticky WhatsApp button — solid brand green */
.sticky-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  border-color: #1FB855 !important;
  box-shadow: 0 4px 14px rgba(37,211,102,.4) !important;
}

.sticky-btn.whatsapp:hover {
  background: linear-gradient(135deg, #22c45c, #0f7a6e) !important;
  box-shadow: 0 6px 22px rgba(37,211,102,.58) !important;
}

/* Contact info — WhatsApp item */
.ci-item-whatsapp {
  background: rgba(37,211,102,.07) !important;
  border-color: rgba(37,211,102,.2) !important;
}

/* ── Fleet: Solo (single vehicle) — larger, more prominent image ── */
.fleet-grid-solo {
  max-width: 1100px;
}

.fleet-grid-solo .fleet-card {
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
}

.fleet-grid-solo .fleet-img-wrap {
  flex: 0 0 62% !important;
  min-height: 460px;
}

.fleet-grid-solo .fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fleet-grid-solo .fleet-slideshow {
  height: 100%;
}

.fleet-grid-solo .fleet-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-grid-solo .fleet-name {
  font-size: 28px !important;
}

.fleet-grid-solo .fleet-body {
  padding: 40px 40px 40px 36px !important;
  gap: 18px !important;
  justify-content: center;
}

/* ── Fleet: Multiple vehicles — better cards ── */
.fleet-card {
  border-radius: 20px;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  min-height: 260px;
}

.fleet-img-wrap {
  flex: 0 0 50%;
  min-height: 260px;
}

.fleet-img-wrap img {
  object-position: center;
}

/* ── Gallery 'Journeys & Landscapes' — larger, fuller images ── */
.gallery-grid {
  grid-auto-rows: 260px !important;
  gap: 14px !important;
}

.gallery-item img,
.gallery-item video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* ── Gallery 'South Tyrol & Our Service' (Glimpse) — larger ── */
.gallery-preview-grid {
  grid-auto-rows: 260px !important;
  gap: 14px !important;
  grid-template-columns: repeat(4, 1fr) !important;
}

.gallery-preview-wide {
  grid-column: span 2;
}

.gallery-preview-grid .gallery-item img,
.gallery-preview-grid .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .gallery-grid {
    grid-auto-rows: 200px !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 200px !important;
  }

  .fleet-grid-solo .fleet-card {
    flex-direction: column;
    min-height: unset;
  }

  .fleet-grid-solo .fleet-img-wrap {
    flex: none !important;
    height: 320px;
    width: 100%;
    min-height: unset;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 160px !important;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 160px !important;
  }
}


/* =================================================================
   CUSTOM ADDITIONS — All changes applied below
   ================================================================= */

/* ── 1. HERO: Animated Typing Welcome Glass Card ── */
.hero-welcome-glass {
  position: absolute;
  /* Precisely 12px below the real header at every breakpoint.
     --header-h is 80px desktop / 72px at ≤1024px — the variable does the math. */
  top: calc(var(--header-h) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(110, 240, 122, 0.14);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid rgba(110, 240, 122, 0.35);
  border-radius: 50px;
  box-shadow: 0 0 18px rgba(110, 240, 122, 0.28), 0 4px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  /* Never wrap — content sizes the pill, max-width prevents overflow */
  white-space: nowrap;
  max-width: calc(100vw - 48px);
  overflow: hidden;
  animation: welcomeGlassFadeIn 0.7s ease forwards, welcomeGlassFadeOut 0.7s ease 29.3s forwards;
  pointer-events: none;
}

@keyframes welcomeGlassFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes welcomeGlassFadeOut {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(-12px); pointer-events: none; }
}

.hero-welcome-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* White with slight gold tint — readable on any hero background */
  color: rgba(255, 255, 255, 0.80);
  flex-shrink: 0;
}

.hero-welcome-typing {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
  /* Prevent the typed text from ever wrapping */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-welcome-cursor {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.90);
  animation: cursorBlink 0.7s step-end infinite;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── 2. HERO: Scroll Down Button — above dots with blink ── */
.hero-scroll {
  position: absolute !important;
  bottom: 80px !important; /* sit above the dots at bottom:36px */
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 21 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  opacity: 1 !important;
  animation: scrollBtnFadeIn 1s ease 2s both !important;
}

@keyframes scrollBtnFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-scroll-text--blink {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-family: var(--font-b);
  animation: scrollTextBlink 1.4s ease-in-out infinite;
}

@keyframes scrollTextBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-scroll-chevron {
  width: 26px;
  height: 26px;
  color: var(--gold);
  animation: scrollChevronBounce 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(110, 240, 122,0.6));
}

@keyframes scrollChevronBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(5px); opacity: 0.7; }
}

/* ── 3. MOBILE MENU — Padding, font, spacing improvements ── */
.mobile-menu {
  padding-bottom: env(safe-area-inset-bottom, 16px) !important;
}

.mobile-menu-header {
  padding: 20px 24px !important;
  gap: 14px !important;
}

.mobile-menu-body {
  padding: 4px 0 8px !important;
}

.mobile-nav-link {
  padding: 16px 28px !important;
  font-size: 17px !important;
  font-family: var(--font-h) !important;
  letter-spacing: 0.3px !important;
  gap: 16px !important;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  padding-left: 36px !important;
}

.mobile-menu-footer {
  padding: 20px 24px 28px !important;
  gap: 12px !important;
}

.mobile-menu-footer .btn {
  padding: 15px 22px !important;
  font-size: 14px !important;
  font-family: var(--font-b) !important;
  border-radius: 10px !important;
  min-height: 50px !important;
}

/* Ensure buttons in footer row don't touch */
.mobile-menu-footer > div {
  gap: 12px !important;
}

.mm-stats-bar {
  margin: 12px 20px 4px !important;
  border-radius: 14px !important;
  padding: 12px 16px !important;
}

.mm-stat-num {
  font-size: 18px !important;
  font-family: var(--font-h) !important;
}

.mm-stat-lbl {
  font-size: 11px !important;
  font-family: var(--font-b) !important;
}

.mm-social-row {
  margin-top: 4px !important;
  gap: 10px !important;
  justify-content: center !important;
}

.mm-social-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
}

/* ── 4. QUICK BOOK STRIP — WhatsApp button spacing ── */
.qbs-submit {
  margin-left: 4px;
}

/* ── 5. HERO CTAS — Prevent buttons from touching ── */
.hero-ctas {
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.hero-ctas .btn + .btn {
  margin-left: 0 !important;
}

/* ── 6. SERVICES grid CTA spacing ── */
.service-cta {
  margin-top: 12px !important;
}

/* ── 7. CONTACT form — spacing between submit and direct links ── */
.cf-direct-links {
  margin-top: 10px !important;
}

/* ── 8. FOOTER button spacing ── */
.mobile-menu-footer .btn {
  flex: 1 1 auto !important;
}

/* ── 9. General: Prevent any adjacent btn from touching ── */
.btn + .btn,
.btn + a.btn,
a.btn + .btn,
a.btn + a.btn {
  margin-left: 0 !important; /* managed by gap */
}

/* ── 10. HERO DOTS — move ~1rem lower on all screens ──────────────
   Desktop was 36px, move it to 20px (↓ 16px).
   The 768px override was 80px — bring it down to 64px.
   Use !important to beat every earlier declaration.
   ─────────────────────────────────────────────────────────────── */
.hero-dots {
  bottom: 20px !important;
}

@media (max-width: 768px) {
  .hero-dots {
    bottom: 64px !important;
  }
}

/* ── 11. HERO SCROLL BUTTON — correct bottom on every breakpoint ──
   Desktop:  80px → still 80px (60px clear above the 20px dots ✓)
   ≤ 768px:  dots are at 64px  → scroll must sit well above: 124px
   ≤ 480px:  same dots 64px    → scroll at 130px (tiny phone safe)
   The existing 600px override (72px) was placing the button BELOW
   the dots (which were at 80px on that breakpoint) — fixed here.
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-scroll {
    bottom: 124px !important;
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    bottom: 130px !important;
  }
}

/* ── 12. HERO WELCOME GLASS — responsive sizing ────────────────────
   top is handled globally via calc(var(--header-h) + 12px).
   We only adjust padding, font-size and clamp max-width here.
   white-space stays nowrap at ALL sizes — the pill clips via
   overflow:hidden instead of wrapping, keeping the design clean.
   ─────────────────────────────────────────────────────────────── */

/* ≤ 768px tablet */
@media (max-width: 768px) {
  .hero-welcome-glass {
    padding: 7px 15px !important;
    gap: 7px !important;
    max-width: calc(100vw - 40px) !important;
  }
  .hero-welcome-label {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
  }
  .hero-welcome-typing {
    font-size: 13px !important;
  }
  .hero-welcome-cursor {
    font-size: 13px !important;
  }
}

/* ≤ 480px phone */
@media (max-width: 480px) {
  .hero-welcome-glass {
    padding: 6px 13px !important;
    gap: 6px !important;
    max-width: calc(100vw - 32px) !important;
    /* Keep nowrap — pill clips cleanly via overflow:hidden */
    white-space: nowrap !important;
  }
  .hero-welcome-label {
    font-size: 8px !important;
    letter-spacing: 1.2px !important;
  }
  .hero-welcome-typing {
    font-size: 12px !important;
  }
  .hero-welcome-cursor {
    font-size: 12px !important;
  }
}

/* ≤ 360px very small phones */
@media (max-width: 360px) {
  .hero-welcome-glass {
    padding: 5px 11px !important;
    gap: 5px !important;
    max-width: calc(100vw - 24px) !important;
  }
  .hero-welcome-label {
    font-size: 7px !important;
    letter-spacing: 1px !important;
  }
  .hero-welcome-typing {
    font-size: 11px !important;
  }
  .hero-welcome-cursor {
    font-size: 11px !important;
  }
}

/* =================================================================
   FIX: POPULAR ROUTES — Responsive cards for all screen sizes
   The destinations-grid has several conflicting earlier rules.
   These !important overrides at the END of the stylesheet win.
   ================================================================= */

/* ≤ 900px — 3 columns */
@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
}

/* ≤ 650px — 2 columns */
@media (max-width: 650px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Card inner: keep horizontal but tighten */
  .destination-card {
    padding: 14px 12px !important;
    gap: 8px !important;
  }

  .dest-icon {
    font-size: 22px !important;
  }

  .dest-from {
    font-size: 9.5px !important;
    letter-spacing: 0.3px !important;
  }

  .dest-to {
    font-size: 13px !important;
  }

  .dest-book {
    font-size: 11px !important;
  }
}

/* ≤ 420px — 1 column, card switches to vertical stacked layout */
@media (max-width: 420px) {
  .destinations-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .destination-card {
    /* Override the horizontal grid layout for tiny phones */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 16px !important;
  }

  .dest-icon {
    font-size: 26px !important;
    flex-shrink: 0 !important;
  }

  .dest-route {
    flex: 1 !important;
    min-width: 0 !important;       /* allow text to truncate */
  }

  .dest-from,
  .dest-to {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }

  .dest-from {
    font-size: 10px !important;
  }

  .dest-to {
    font-size: 14px !important;
  }

  .dest-book {
    flex-shrink: 0 !important;
    font-size: 12px !important;
  }
}

/* =================================================================
   FIX: FLEET BOOK BUTTON — Official WhatsApp look with glass effect
   .fleet-book-btn uses btn-gold in HTML; override entirely here.
   ================================================================= */
.fleet-book-btn.btn-gold,
.fleet-book-btn.btn {
  background: linear-gradient(135deg, #25D366 0%, #20b958 100%) !important;
  border-color: #25D366 !important;
  color: #fff !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .35), inset 0 1px 0 rgba(255, 255, 255, .20) !important;
  position: relative !important;
  overflow: hidden !important;
}

.fleet-book-btn.btn-gold::before,
.fleet-book-btn.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .13) 0%, transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

.fleet-book-btn.btn-gold:hover,
.fleet-book-btn.btn:hover {
  background: linear-gradient(135deg, #20b958 0%, #128C7E 100%) !important;
  border-color: #128C7E !important;
  color: #fff !important;
  box-shadow: 0 6px 26px rgba(37, 211, 102, .50), inset 0 1px 0 rgba(255, 255, 255, .18) !important;
  transform: translateY(-2px) !important;
}

/* =================================================================
   FIX: MOBILE MENU FOOTER — WhatsApp button & button text colors
   ================================================================= */

/* WhatsApp button inside footer — fix glass render & border */
.mobile-menu-footer .btn-whatsapp,
.mobile-menu-footer > a.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20b958 100%) !important;
  border: 1px solid #25D366 !important;
  color: #fff !important;
  overflow: hidden !important;
  position: relative !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .35), inset 0 1px 0 rgba(255, 255, 255, .22) !important;
  border-radius: 10px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* Ensure the green fills edge-to-edge with no left-bleed */
  padding: 14px 20px !important;
  gap: 8px !important;
  font-weight: 700 !important;
}

.mobile-menu-footer .btn-whatsapp::before,
.mobile-menu-footer > a.btn-whatsapp::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(255,255,255,.13) 0%, transparent 55%) !important;
  pointer-events: none !important;
  border-radius: inherit !important;
}

.mobile-menu-footer .btn-whatsapp:hover,
.mobile-menu-footer > a.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20b958 0%, #128C7E 100%) !important;
  border-color: #128C7E !important;
}

/* Call Now (btn-gold) — force white text in both themes */
.mobile-menu-footer .btn-gold,
.mobile-menu-footer > div > a.btn-gold,
[data-theme="dark"] .mobile-menu-footer .btn-gold,
[data-theme="light"] .mobile-menu-footer .btn-gold {
  color: #fff !important;
}

/* Book Now button — solid, readable in both dark & light modes */
.mm-book-now-btn {
  /* dark mode: gold-bordered dark glass */
  color: #fff !important;
  background: rgba(30, 30, 30, 0.70) !important;
  border: 1.5px solid rgba(110, 240, 122, 0.55) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.10) !important;
}

[data-theme="light"] .mm-book-now-btn {
  /* light mode: dark solid — no backdrop tricks needed */
  color: #fff !important;
  background: #2c2c2c !important;
  border: 1.5px solid rgba(110, 240, 122, 0.60) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.30) !important;
}

.mm-book-now-btn:hover {
  background: rgba(50, 50, 50, 0.85) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

[data-theme="light"] .mm-book-now-btn:hover {
  background: #3d3d3d !important;
  border-color: var(--gold) !important;
}

/* =================================================================
   DELUXE STUDIOS — CUSTOM PATCH: LEFT STICKY, DEXP-CTA, MAP
   ================================================================= */

/* ── LEFT STICKY BUTTONS — Phone, WhatsApp, Instagram (bottom left) ── */
.sticky-buttons-left {
  position: fixed;
  bottom: 22px;
  left: 18px;
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}

.sticky-btn-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Default pill height matches sticky-btn desktop size */
  height: 44px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .28);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.sticky-btn-left:hover {
  transform: translateY(-3px);
  color: #fff;
  opacity: .92;
}

.sticky-btn-left svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.sticky-btn-left-label {
  line-height: 1;
}

/* Phone — light green */
.sticky-btn-left.phone {
  background: linear-gradient(135deg, #6EF07A 0%, #3DC44D 100%);
  color: #000;
  box-shadow: 0 0 14px rgba(110, 240, 122, 0.55), 0 0 28px rgba(110, 240, 122, 0.28), 0 3px 14px rgba(0,0,0,.22);
  animation: stickyBtnGlow 2.5s ease-in-out infinite;
}
.sticky-btn-left.phone:hover {
  color: #000;
  box-shadow: 0 0 22px rgba(110, 240, 122, 0.75), 0 0 44px rgba(110, 240, 122, 0.4), 0 6px 22px rgba(0,0,0,.25);
}

@keyframes stickyBtnGlow {
  0%, 100% { box-shadow: 0 0 14px rgba(110, 240, 122, 0.55), 0 0 28px rgba(110, 240, 122, 0.28), 0 3px 14px rgba(0,0,0,.22); }
  50% { box-shadow: 0 0 22px rgba(110, 240, 122, 0.75), 0 0 44px rgba(110, 240, 122, 0.42), 0 5px 18px rgba(0,0,0,.25); }
}

/* WhatsApp — official green */
.sticky-btn-left.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 3px 14px rgba(37, 211, 102, .38);
  color: #000;
}
.sticky-btn-left.whatsapp:hover {
  box-shadow: 0 6px 22px rgba(37, 211, 102, .55);
  color: #000;
}
.sticky-btn-left.whatsapp .sticky-btn-left-label {
  color: #000;
}

/* Instagram — brand gradient */
.sticky-btn-left.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 3px 14px rgba(188, 24, 136, .35);
  color: #000;
}
.sticky-btn-left.instagram:hover {
  box-shadow: 0 6px 22px rgba(188, 24, 136, .52);
  color: #000;
}
.sticky-btn-left.instagram .sticky-btn-left-label {
  color: #000;
}

/* ── RESPONSIVE: match .sticky-btn sizes at every breakpoint ── */

/* Tablet 768–1199px: 40px height */
@media (min-width: 768px) and (max-width: 1199px) {
  .sticky-buttons-left {
    bottom: 18px;
    left: 14px;
    gap: 8px;
  }
  .sticky-btn-left {
    height: 40px;
    font-size: 12.5px;
    padding: 0 13px 0 9px;
  }
  .sticky-btn-left svg {
    width: 17px;
    height: 17px;
  }
}

/* Mobile 481–767px: 36px height — phone keeps label, others icon-only */
@media (min-width: 481px) and (max-width: 767px) {
  .sticky-buttons-left {
    bottom: 18px;
    left: 14px;
    gap: 8px;
  }
  /* Phone: still show number, slightly compact */
  .sticky-btn-left.phone {
    height: 36px;
    font-size: 12px;
    padding: 0 12px 0 9px;
  }
  /* WhatsApp & Instagram: icon-only circle */
  .sticky-btn-left.whatsapp,
  .sticky-btn-left.instagram {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .sticky-btn-left.whatsapp .sticky-btn-left-label,
  .sticky-btn-left.instagram .sticky-btn-left-label {
    display: none;
  }
  .sticky-btn-left svg {
    width: 17px;
    height: 17px;
  }
}

/* Small mobile ≤ 480px: 34px height — phone always shows full number */
@media (max-width: 480px) {
  .sticky-buttons-left {
    bottom: 14px;
    left: 12px;
    gap: 7px;
  }
  /* Phone: ALWAYS show the full number */
  .sticky-btn-left.phone {
    height: 34px;
    font-size: 11.5px;
    padding: 0 11px 0 8px;
    border-radius: 999px;
  }
  .sticky-btn-left.phone .sticky-btn-left-label {
    display: inline !important;
  }
  /* WhatsApp & Instagram: icon-only circle */
  .sticky-btn-left.whatsapp,
  .sticky-btn-left.instagram {
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .sticky-btn-left.whatsapp .sticky-btn-left-label,
  .sticky-btn-left.instagram .sticky-btn-left-label {
    display: none;
  }
  .sticky-btn-left svg {
    width: 15px;
    height: 15px;
  }
}

/* ── DOLOMITES EXPERIENCE — Button spacing on mobile ── */
@media (max-width: 600px) {
  .dexp-cta .btn {
    display: block;
    width: 100%;
    margin: 0 0 10px 0 !important;
    text-align: center;
    justify-content: center;
  }
  .dexp-cta .btn:last-child {
    margin-bottom: 0 !important;
  }
}

/* ── GOOGLE MAP — Top margin on mobile ── */
@media (max-width: 768px) {
  .talb-map-label {
    margin-top: 28px;
  }
  .talb-map-wrap {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .talb-map-label {
    margin-top: 32px;
  }
}

/* =============================================================
   LIGHT MODE — TEXT READABILITY FIXES
   --gold (#6EF07A) has ~1.3:1 contrast on the cream/white page
   backgrounds. All text-bearing selectors that appear on light
   backgrounds (--bg, --bg2, --bg3, cards, dropdowns, popups)
   switch to --gold-text (#1a7a27) which achieves ~7:1 contrast.
   Dark mode keeps --gold-text = --gold so nothing changes there.
   ============================================================= */

/* ── General links in page body ── */
:root a {
  color: var(--gold-text);
}
:root a:hover {
  color: var(--gold-d);
}

/* ── Section headings & labels ── */
:root .section-label,
:root .section-title span,
:root .section-title em {
  color: var(--gold-text);
}
:root .section-label::before,
:root .section-label::after {
  background: var(--gold-text);
}

/* ── Outline-gold button (text + border) ── */
:root .btn-outline-gold {
  color: var(--gold-text);
  border-color: var(--gold-text);
}
:root .btn-outline-gold:hover {
  background: var(--gold-text);
  color: #fff;
  border-color: var(--gold-text);
}

/* ── Fleet cards ── */
:root .fleet-class-pill {
  color: var(--gold-text);
  border-color: rgba(26, 122, 39, .35);
  background: rgba(26, 122, 39, .08);
}
:root .fleet-feat-tag {
  color: var(--gold-text);
  border-color: rgba(26, 122, 39, .28);
  background: rgba(26, 122, 39, .07);
}

/* ── Language dropdown (white bg) ── */
:root .lang-opt.active {
  color: var(--gold-text);
  background: rgba(26, 122, 39, .09);
}
:root .lang-opt.active .lang-code {
  color: var(--gold-text);
  background: rgba(26, 122, 39, .1);
}

/* ── Gallery/glimpse admin bars ── */
:root .gallery-admin-bar .btn-outline,
:root .glimpse-admin-bar .btn-outline {
  color: var(--gold-text);
  border-color: var(--gold-text);
}
:root .gallery-admin-bar .btn-outline:hover,
:root .glimpse-admin-bar .btn-outline:hover {
  background: var(--gold-text);
  color: #fff;
}
:root .glimpse-picker-item.glimpse-picker-selected {
  border-color: var(--gold-text) !important;
  box-shadow: 0 0 0 2px rgba(26, 122, 39, .35);
}

/* ── Gallery tabs ── */
:root .gallery-tab:hover,
:root .gallery-tab.active {
  color: var(--gold-text);
  border-color: var(--gold-text);
}

/* ── How-it-works step numbers ── */
:root .how-step-num {
  color: var(--gold-text);
}

/* ── Service CTA links ── */
:root .service-cta {
  color: var(--gold-text);
}

/* ── Destinations ── */
:root .dest-arrow,
:root .dest-time,
:root .dest-book {
  color: var(--gold-text);
}

/* ── Testimonials & review stars ── */
:root .testimonial-stars span,
:root .t-stars,
:root .rs-score,
:root .rs-stars,
:root .talb-star-lbl.active,
:root .talb-star-rating input[value="5"]:checked ~ label ~ label {
  color: var(--gold-text);
}

/* ── About section feature icons ── */
:root .about-feat::before {
  color: var(--gold-text);
}

/* ── Contact section ── */
:root .ci-arrow,
:root .cpb-label,
:root .cpb-link,
:root .contact-item-val a:hover,
:root .talb-map-label {
  color: var(--gold-text);
}

/* ── Partner section (light bg area) ── */
:root .partner-link {
  color: var(--gold-text);
}

/* ── Book-now page step numbers ── */
:root .book-step-num,
:root .book-step + .book-step::before {
  color: var(--gold-text);
}

/* ── Review form toggle & stars ── */
:root .talb-rev-btn-toggle {
  color: var(--gold-text);
}

/* ── Legal pages ── */
:root .talb-legal-breadcrumb a,
:root .talb-legal-toc-title,
:root .talb-legal-toc-item:hover,
:root .talb-legal-content ul li::before,
:root .talb-legal-content a,
:root .talb-legal-content-body ul li::before,
:root .talb-legal-content-body a,
:root .talb-legal-content-body code,
:root .talb-legal-content-body h2,
:root .talb-legal-content-body h3 {
  color: var(--gold-text);
}

/* ── Cookie banner link ── */
:root .talb-cb-text a {
  color: var(--gold-text);
}

/* ── Cookie table functional badge ── */
:root .talb-badge-functional {
  color: var(--gold-text);
}

/* ── Social-proof popup timestamp ── */
:root .sp-time {
  color: var(--gold-text);
}

/* ── Mobile menu on light bg (in light mode the menu is cream) ── */
:root .mobile-nav-link:hover,
:root .mobile-nav-link:focus,
:root .mobile-nav-link::after,
:root .mobile-nav-link:hover::after {
  color: var(--gold-text) !important;
}
:root .mm-stat-num {
  color: var(--gold-text);
}
:root .mm-social-btn:hover {
  background: var(--gold-text);
  border-color: var(--gold-text);
  box-shadow: 0 4px 14px rgba(26, 122, 39, .4);
}
