  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* ── LUXURY PALETTE — Deep Midnight Navy + Champagne Gold ── */
    --navy:        #0B1F3A;
    --navy-deep:   #071629;
    --navy-mid:    #122947;
    --navy-glass:  rgba(7,22,41,0.92);
    --gold:        #C9922A;
    --gold-bright: #E8AA3A;
    --gold-light:  #F0C06B;
    --gold-dim:    rgba(201,146,42,0.14);
    --gold-glow:   rgba(201,146,42,0.35);
    --white:       #FFFFFF;
    --off-white:   #F5F3EE;
    --cream:       #FAF8F3;
    --text-muted:  rgba(255,255,255,0.72);
    --text-dim:    rgba(255,255,255,0.45);
    --card-bg:     rgba(255,255,255,0.04);
    --card-hover:  rgba(201,146,42,0.07);
    --border:      rgba(201,146,42,0.22);
    --border-soft: rgba(255,255,255,0.09);
    --shadow-gold: 0 8px 40px rgba(201,146,42,0.25);
    --shadow-deep: 0 24px 72px rgba(0,0,0,0.6);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 72px;
    background: rgba(7,22,41,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 0.35rem;
    white-space: nowrap;
  }
  .logo-accent { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: #FFFFFF;
    padding: 0.6rem 1.4rem; border-radius: 6px;
    font-weight: 600; font-size: 0.875rem; text-decoration: none;
    transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.88; }
  .nav-right { display: flex; align-items: center; gap: 1.5rem; }
  .lang-switch { color: var(--text-muted); font-size: 0.8rem; cursor: pointer; display: flex; gap: 0.5rem; align-items: center; }
  .lang-switch span:hover, .lang-switch a:hover { color: var(--gold); }

  

  /* ── SHARED BUTTONS & PILLS ── */
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold-dim); border: 1px solid var(--border);
    padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.8rem; color: var(--gold-light); font-weight: 500;
  }
  h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
  }
  h1 em { font-style: normal; color: var(--gold); }
  .hero-sub { color: var(--text-muted); font-weight: 400; line-height: 1.7; }
  .hero-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .pill {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: rgba(201,146,42,0.10);
    border: 1px solid rgba(201,146,42,0.35);
    padding: 0.6rem 1rem; border-radius: 100px;
    font-size: 0.85rem; color: var(--white); font-weight: 500;
    text-align: center;
  }
  .pill-icon { color: var(--gold); font-size: 0.75rem; }
  .btn-primary {
    background: var(--gold); color: #FFFFFF;
    padding: 0.9rem 2rem; border-radius: 8px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(201,146,42,0.3); }
  .btn-outline {
    background: transparent; color: var(--white);
    padding: 0.9rem 2rem; border-radius: 8px;
    font-weight: 500; font-size: 0.95rem; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .btn-book {
    background: var(--gold); color: #FFFFFF;
    padding: 1rem 2.5rem; border-radius: 8px;
    font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
    transition: all 0.2s; letter-spacing: 0.02em;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .btn-book:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,146,42,0.35); }

  /* ── BOOKING HERO (new primary section) ── */
  .booking-hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    padding: 90px clamp(1.5rem, 4vw, 3rem) 0;
    overflow: hidden;
  }
  .booking-hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(7,22,41,0.94) 0%, rgba(11,31,58,0.85) 40%, rgba(7,22,41,0.95) 100%),
      url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80') center/cover no-repeat;
  }
  .booking-hero-bg::after {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at 15% 65%, rgba(201,146,42,0.08) 0%, transparent 55%), radial-gradient(ellipse at 85% 25%, rgba(201,146,42,0.05) 0%, transparent 50%);
  }
  .booking-hero-inner {
    position: relative; z-index: 2;
    width: 100%; max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding-bottom: 3rem;
  }
  /* brand side — visible as left column on desktop */
  .bh-brand {
    display: flex;
    flex-direction: column;
    order: 1;
  }
  .bh-form-card { order: 2; }
  .bh-stats {
    display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem;
    padding-top: 2rem; border-top: 1px solid var(--border);
  }
  .bh-stat { display: flex; flex-direction: column; gap: 0.2rem; }
  .bh-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-bright); font-weight: 700; text-shadow: 0 0 20px rgba(201,146,42,0.3); }
  .bh-lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

  /* form card */
  .bh-form-card {
    background: rgba(7,22,41,0.95);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  }
  .bh-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--white); margin-bottom: 1.25rem;
    padding-bottom: 1rem; border-bottom: 1px solid var(--border);
  }
  .bh-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
  .bh-tab {
    flex: 1; padding: 0.6rem 0; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600; cursor: pointer;
    border: 1px solid var(--border); background: transparent;
    color: var(--text-muted); transition: all 0.2s;
  }
  .bh-tab.active { background: var(--gold); color: #FFFFFF; border-color: var(--gold); }

  /* route block */
  .bh-route { position: relative; margin-bottom: 1rem; }
  .bh-route-row { display: flex; align-items: flex-start; gap: 0.75rem; }
  .bh-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.2rem; }
  .bh-icon-pin { color: var(--gold); }
  .bh-route-fields { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
  .bh-field-label { font-size: 0.72rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; }
  .bh-input {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 0.65rem 0.9rem;
    color: var(--white); font-size: 0.875rem; font-family: 'Inter', sans-serif;
    width: 100%; transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .bh-input::placeholder { color: rgba(255,255,255,0.3); }
  .bh-input:focus { outline: none; border-color: var(--gold); background: rgba(201,146,42,0.07); }
  .bh-input option { background: var(--navy-deep); }
  .bh-split { display: flex; gap: 0.5rem; }
  .bh-nr { max-width: 70px; }
  .bh-route-line {
    width: 2px; background: rgba(255,255,255,0.15);
    height: 20px; margin: 0.3rem 0 0.3rem 0.55rem;
  }
  .bh-stop-btn {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); border-radius: 20px; padding: 0.4rem 1rem;
    font-size: 0.8rem; font-weight: 600; cursor: pointer; margin: 0.4rem 0;
    transition: all 0.2s; display: inline-block;
  }
  .bh-stop-btn:hover { background: rgba(244,121,32,0.15); border-color: var(--gold); color: var(--gold); }
  .bh-stop-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
  .bh-swap {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); border-radius: 50%; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; flex-shrink: 0; transition: all 0.2s;
  }
  .bh-swap:hover { background: var(--gold); color: #FFFFFF; border-color: var(--gold); }
  .bh-row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; margin-bottom: 0.75rem; }
  .bh-row3 label, .bh-mini-group label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.3rem; }
  .bh-mini-group { display: flex; flex-direction: column; }
  .bh-retour-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; margin-bottom: 0.75rem; }
  .bh-stepper-row {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 0.7rem 1rem; margin-bottom: 0.75rem;
  }
  .bh-stepper-label { font-size: 0.85rem; color: var(--white); font-weight: 500; flex: 1; }
  .bh-stepper { display: flex; align-items: center; gap: 0.75rem; }
  .bh-step-btn {
    background: var(--gold); color: #FFFFFF;
    border: none; border-radius: 50%; width: 28px; height: 28px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .bh-step-btn:hover { background: var(--gold); color: #FFFFFF; }
  .bh-stepper span { font-size: 1rem; font-weight: 700; color: var(--white); min-width: 1.5rem; text-align: center; }
  .bh-vehicle-row { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
  .bh-veh {
    flex: 1; padding: 0.6rem; border-radius: 10px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
    background: transparent; border: 1px solid var(--border); color: var(--text-muted); transition: all 0.2s;
  }
  .bh-veh.active { background: var(--gold); color: #FFFFFF; border-color: var(--gold); }
  .bh-veh:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
  .bh-extras { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
  .bh-check { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-muted); cursor: pointer; }
  .bh-check input { accent-color: var(--gold); }
  .bh-cta {
    width: 100%; margin-top: 1rem;
    background: var(--gold); color: #FFFFFF;
    border: none; border-radius: 10px; padding: 1rem;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s; letter-spacing: 0.02em;
  }
  .bh-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,146,42,0.4); }
  .bh-price-out {
    margin-top: 0.75rem; padding: 1rem;
    background: rgba(201,146,42,0.08); border: 1px solid var(--border); border-radius: 10px;
    display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
    font-size: 0.85rem; color: var(--text-muted);
  }
  .bh-price-out strong { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); }

  /* stats strip below hero */
  .hero-stats {
    background: var(--navy-deep);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1.75rem clamp(1rem, 4vw, 3rem);
  }
  .stat {
    text-align: center;
    padding: 0.5rem 0.75rem;
    position: relative;
  }
  .stat:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 15%; bottom: 15%;
    width: 1px; background: var(--border);
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700; color: var(--gold);
    display: block;
    text-shadow: 0 0 20px rgba(201,146,42,0.4);
  }
  .stat-label {
    font-size: clamp(0.6rem, 1vw, 0.72rem);
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    display: block;
  }

  /* ── 25 YEARS ANNIVERSARY ── */
  .anniversary-section {
    display: block;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 50%, var(--navy-deep) 100%);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
    overflow: hidden;
    position: relative;
  }
  .anniversary-section::before {
    content: '25';
    position: absolute;
    right: -1rem; top: 50%; transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(12rem, 25vw, 22rem);
    font-weight: 700;
    color: rgba(201,146,42,0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .anniversary-inner {
    position: relative; z-index: 1;
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr;
    gap: clamp(2rem, 5vw, 5rem); align-items: center;
  }
  .anniversary-left {
    display: flex; align-items: center; gap: 2.5rem; flex-shrink: 0;
  }
  .anniversary-number {
    display: flex; flex-direction: column; align-items: center; line-height: 1;
  }
  .ann-25 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 700; color: var(--gold);
    text-shadow: 0 0 60px rgba(201,146,42,0.35);
    letter-spacing: -0.04em; line-height: 0.9; display: block;
  }
  .ann-jaar {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 400;
    color: var(--gold-light); letter-spacing: 0.25em;
    text-transform: uppercase; display: block; margin-top: 0.25rem;
  }
  .ann-divider {
    width: 1px; height: clamp(100px, 15vw, 160px);
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    flex-shrink: 0;
  }
  .ann-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    font-weight: 700 !important; line-height: 1.2 !important;
    margin-bottom: 1.25rem !important;
    color: #FFFFFF !important;
  }
  .ann-body {
    font-size: 1.05rem;
    color: #FFFFFF;
    line-height: 1.85;
    max-width: 560px;
  }
  @media (max-width: 700px) {
    .anniversary-inner { grid-template-columns: 1fr; }
    .anniversary-left { justify-content: flex-start; }
    .ann-divider { display: none; }
  }

  /* ── VEHICLES SECTION ── */
  .vehicles-section {
    background: var(--navy-deep);
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--border);
  }
  .vehicles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .vehicle-img-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .vehicle-img-card .wagen-title{
    background: #C9922A;
    border-color: #C9922A;
    box-shadow: 0 10px 24px rgba(201, 146, 42, 0.3);
    text-align: center;
    color: #fff;
    padding: 15px 0;

  }
  .vehicle-img-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .vehicle-full-img {
    width: 100%; height: auto;
    display: block;
  }
  @media (max-width: 700px) {
    .vehicles-grid { grid-template-columns: 1fr; }
  }

  .brand-strip { display: none; /* hidden — bh-brand now handles this */ 
    background: var(--navy-deep);
    padding: 4rem clamp(1.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .brand-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(244,121,32,0.06) 0%, transparent 65%);
  }
  .brand-strip-inner {
    position: relative; z-index: 1;
    max-width: 800px;
  }
  .brand-strip-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700; line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--white);
  }
  .brand-strip-h em { font-style: normal; color: var(--gold); }
  .brand-strip-sub {
    font-size: 1.05rem; color: var(--text-muted);
    line-height: 1.75; margin-bottom: 2rem; max-width: 580px;
  }

  @media (max-width: 900px) {
    .bh-row3, .bh-retour-row { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .booking-hero-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .bh-form-card { order: 1; }
    .bh-brand { order: 2; }
    .hero-stats .stat:nth-child(3)::after { display: none; }
  }
  @media (max-width: 500px) {
    .bh-row3, .bh-retour-row { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .hero-stats .stat:nth-child(2)::after,
    .hero-stats .stat:nth-child(4)::after { display: none; }
  }

  /* ── SECTION SHARED ── */
  section { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem); }
  .section-eyebrow {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-intro { color: var(--text-muted); max-width: 520px; line-height: 1.75; margin-bottom: 3rem; }

  /* ── WHY US ── */
  .why-section { background: var(--cream); color: var(--navy-deep); }
  .why-section .section-eyebrow { color: var(--gold); }
  .why-section h2 { color: var(--navy-deep); }
  .why-section .section-intro { color: #1A3255; }
  .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
  .feature-card {
    background: var(--white); border-radius: 14px;
    padding: 1.5rem; border: 1px solid rgba(91,163,224,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(11,31,58,0.12); border-color: var(--gold); }
  .feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .feature-title { font-weight: 700; font-size: 0.95rem; color: var(--navy-deep); margin-bottom: 0.35rem; }
  .feature-desc { font-size: 0.82rem; color: #3A5A7A; line-height: 1.6; }

  /* ── ROUTES ── */
  .routes-section { background: var(--navy-deep); }
  .routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
  .route-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.25rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.2s; cursor: pointer;
  }
  .route-card:hover { background: rgba(201,146,42,0.07); border-color: var(--gold); transform: translateX(3px); box-shadow: 0 0 24px rgba(201,146,42,0.12); }
  .route-info { flex: 1; }
  .route-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
  .route-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); }
  .route-price { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--gold); font-weight: 700; }
  .route-arrow { color: var(--gold); font-size: 0.85rem; margin-left: 1rem; transition: transform 0.2s; }
  .route-card:hover .route-arrow { transform: translateX(3px); }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: linear-gradient(135deg, #0B1F3A 0%, #071629 50%, #0B1F3A 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 3rem clamp(1.5rem, 5vw, 4rem);
    display: flex; justify-content: center; gap: clamp(2rem, 6vw, 6rem); flex-wrap: wrap;
  }
  .trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
  .trust-icon { font-size: 2rem; }
  .trust-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
  .trust-label { font-size: 0.78rem; font-weight: 600; color: var(--gold-light); text-align: center; text-transform: uppercase; letter-spacing: 0.05em; }

  .vehicle-cards {
    display: flex; flex-direction: column; gap: 1.25rem;
  }
  .vehicle-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,146,42,0.18);
    border-radius: 16px; padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .vehicle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    border-color: var(--gold);
  }
  .vehicle-img {
    width: 100%; height: 160px;
    object-fit: cover; border-radius: 10px;
    margin-bottom: 1rem;
    display: block;
  }
  .vehicle-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: #FFFFFF; margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  /* ── BUSINESS ── */
  .business-section {
    background: var(--navy);
    display: block;
  }
  .biz-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .biz-feature {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; border-radius: 10px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  }
  .biz-icon { font-size: 1.5rem; flex-shrink: 0; }
  .biz-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
  .biz-text p { font-size: 0.8rem; color: var(--text-muted); }

  /* ── REVIEWS ── */
  .reviews-section { background: var(--navy-mid); overflow: hidden; }
  .reviews-track { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.75rem;
    min-width: 300px; max-width: 340px;
    scroll-snap-align: start; flex-shrink: 0;
  }
  .review-stars { color: var(--gold-bright); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
  .review-text { font-size: 0.9rem; color: var(--off-white); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 0.75rem; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #071629);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: #FFFFFF;
    flex-shrink: 0;
  }
  .author-name { font-size: 0.875rem; font-weight: 600; }
  .author-meta { font-size: 0.75rem; color: var(--text-muted); }

  /* ── FAQ ── */
  .faq-section { background: var(--navy); }
  .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1rem; }
  .faq-item {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
  }
  .faq-q {
    padding: 1.25rem 1.5rem; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; color: var(--white);
    background: none; border: none; width: 100%; text-align: left;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
  .faq-a { padding: 0 1.5rem 1.25rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-deep); border-top: 1px solid var(--border);
    padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand .logo { font-size: 1.3rem; margin-bottom: 1rem; display: inline-flex; }
  .footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
  .footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 1.75rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
  .footer-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
  .badge {
    background: var(--gold-dim); border: 1px solid var(--border);
    padding: 0.35rem 0.9rem; border-radius: 100px;
    font-size: 0.72rem; color: var(--gold-light); font-weight: 600; letter-spacing: 0.04em;
  }
  .social-links { display: flex; gap: 1rem; margin-top: 1.25rem; }
  .social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--card-bg); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none; color: var(--text-muted);
    transition: all 0.2s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
  .social-link img.emoji { width: 1em; height: 1em; margin: 0; vertical-align: middle; }

  /* ── FLOATING ELEMENTS ── */
 .whatsapp-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  animation: wa-ring 2.5s ease-in-out infinite;
}
.whatsapp-btn:hover { animation-play-state: paused; transform: scale(1.1); }
.whatsapp-icon { width: 61px; height: 61px; }

@keyframes wa-ring {
  0%, 100% { transform: rotate(0deg); }
  4%  { transform: rotate(-18deg); }
  8%  { transform: rotate(14deg); }
  12% { transform: rotate(-10deg); }
  16% { transform: rotate(6deg); }
  20% { transform: rotate(0deg); }
  60% { transform: scale(1); }
  62% { transform: scale(1.08); }
  64% { transform: scale(1); }
}

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .business-section { grid-template-columns: 1fr; }
    .business-section .visual { min-height: 220px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .trust-strip { gap: 1.5rem; }
    h1 { font-size: 2.1rem; }
    .form-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── FOOTER ACCORDION (mobile only) ──
     Each .footer-col's <h4> becomes a tap target that reveals/hides
     everything else in that column (list links, widget content, etc). */
@media (min-width: 768px) {
	.mobile-form {
		display:none !important
	}
}
  @media (max-width: 768px) {
	   .mobile-form {
    padding-top: 80px !important;
  }
	    .bh-form-card, .nav-cta, .et-drawer-inner .lang-switch {
    display: none !important;
  }
    .footer-col > h4 {
      cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 0; padding: 1rem 0;
      border-bottom: 1px solid var(--border);
    }
    .footer-col > h4::after {
      content: '+';
      color: var(--gold); font-size: 1.2rem; font-weight: 400; line-height: 1;
      transition: transform 0.25s ease;
    }
    .footer-col.et-open > h4::after { content: '\2212'; }
    .footer-col > *:not(h4) { display: none; }
    .footer-col.et-open > *:not(h4) { display: block; }
    .footer-col.et-open > ul { display: flex; padding-top: 1rem; }
  }

<style>
  /* ── LUXURY OVERRIDES & ENHANCEMENTS ── */

  /* Golden line accent at top of page */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
    z-index: 1000;
  }

  /* Nav refinement */
  nav {
    background: rgba(7,22,41,0.94) !important;
    border-bottom: 1px solid rgba(201,146,42,0.18) !important;
    box-shadow: 0 1px 40px rgba(0,0,0,0.4);
  }

  /* Logo italic gold accent */
  .logo { letter-spacing: -0.01em; }

  /* Booking hero radial light effect */
  .booking-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(7,22,41,1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
  .booking-hero-inner { z-index: 3 !important; }
  /* Ensure left column text is properly styled on desktop */
  @media (min-width: 769px) {
    .bh-brand .hero-pills {
      grid-template-columns: 1fr 1fr;
      max-width: 420px;
    }
    .bh-stats {
      padding-top: 1.75rem;
      border-top: 1px solid var(--border);
    }
  }

  /* Form card luxury glow */
  .bh-form-card {
    background: rgba(7,22,41,0.97) !important;
    border: 1px solid rgba(201,146,42,0.28) !important;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(201,146,42,0.15) !important;
  }

  /* Tabs luxury */
  .bh-tab.active {
    background: var(--gold) !important;
    box-shadow: 0 4px 20px rgba(201,146,42,0.35);
  }

  /* Input focus glow */
  .bh-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201,146,42,0.12);
    background: rgba(201,146,42,0.05) !important;
  }

  /* CTA button luxury */
  .bh-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 24px rgba(201,146,42,0.3);
  }
  .bh-cta:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(201,146,42,0.45) !important;
  }

  /* Primary CTA buttons */
  .btn-primary, .btn-book, .nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    box-shadow: 0 4px 20px rgba(201,146,42,0.3);
    letter-spacing: 0.03em;
  }
  .btn-primary:hover, .btn-book:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,146,42,0.45) !important;
  }

  /* Section eyebrow luxury */
  .section-eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.7rem !important;
  }

  /* Hero stat numbers */
  .stat-num { color: var(--gold) !important; }

  /* Feature cards */
  .feature-card {
    background: var(--white);
    transition: all 0.3s ease;
  }
  .feature-title { color: var(--navy-deep) !important; }
  .feature-desc { color: #2A4060 !important; }

  /* Route cards dark gold border */
  .route-card {
    border: 1px solid rgba(201,146,42,0.18) !important;
    background: rgba(255,255,255,0.03) !important;
    transition: all 0.3s ease;
  }

  /* Trust strip text */
  .trust-item .trust-num { color: var(--gold) !important; }

  /* Vehicle card gold border on hover */
  .vehicle-card:hover { border-color: var(--gold) !important; }
  .vehicle-name { color: var(--gold-light) !important; }

  /* Review cards */
  .review-card {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(201,146,42,0.15) !important;
    transition: all 0.3s ease;
  }
  .review-card:hover {
    border-color: rgba(201,146,42,0.35) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  /* FAQ item */
  .faq-item {
    border: 1px solid rgba(201,146,42,0.18) !important;
    background: rgba(255,255,255,0.03) !important;
  }
  .faq-item.open { border-color: var(--gold) !important; }

  /* BIZ features */
  .biz-feature {
    border: 1px solid rgba(201,146,42,0.15) !important;
    background: rgba(255,255,255,0.03) !important;
    transition: all 0.3s ease;
  }
  .biz-feature:hover { border-color: var(--gold) !important; }

  /* Footer brand description */
  footer { background: var(--navy-deep) !important; }

  /* Social links */
  .social-link:hover { border-color: var(--gold) !important; color: var(--gold) !important; background: rgba(201,146,42,0.08) !important; }

  /* WhatsApp */
  .whatsapp-btn { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }

  /* Scroll reveal */
  .reveal.visible { opacity: 1; transform: none; }

  /* Hero badge luxury */
  .hero-badge {
    background: rgba(201,146,42,0.1);
    border-color: rgba(201,146,42,0.3);
    letter-spacing: 0.05em;
  }

  /* Swap button */
  .bh-swap:hover { background: var(--gold) !important; border-color: var(--gold) !important; }

  /* Stop button */
  .bh-stop-btn:hover { background: rgba(201,146,42,0.12) !important; border-color: var(--gold) !important; color: var(--gold) !important; }

  /* Vehicle selector */
  .bh-veh.active { background: var(--gold) !important; border-color: var(--gold) !important; box-shadow: 0 4px 16px rgba(201,146,42,0.3); }
  .bh-veh:hover:not(.active) { border-color: var(--gold) !important; color: var(--gold) !important; }

  /* Footer col headings */
  .footer-col h4 { color: var(--gold) !important; }

  /* Price out */
  .bh-price-out { background: rgba(201,146,42,0.07) !important; border-color: var(--border) !important; }
  .bh-price-out strong { color: var(--gold) !important; }

  /* Anniversary section bg */
  .anniversary-section {
    background: linear-gradient(160deg, var(--navy-deep) 0%, #0E2440 60%, var(--navy-deep) 100%) !important;
    position: relative;
  }
  .anniversary-section::before {
    content: '25';
    position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(12rem, 25vw, 22rem);
    font-weight: 700;
    color: rgba(201,146,42,0.06);
    line-height: 1; pointer-events: none; user-select: none;
  }

  /* ── LINE ACCENT on section eyebrow ── */
  .section-eyebrow::before { background: var(--gold) !important; }

  /* ── SMOOTH SCROLL & selection color ── */
  ::selection { background: rgba(201,146,42,0.35); color: white; }

  /* ── BRAND STRIP (mobile hero) ── */
  .brand-strip { display: none; /* hidden — bh-brand now handles this */ 
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%) !important;
  }

  /* Step btn gold on hover */
  .bh-step-btn:hover { background: var(--gold) !important; color: white !important; }

/* ── TRANSPOSH LANGUAGE SWITCHER — match nav lang-switch styling ── */
.et-transposh-switch, .et-transposh-switch * { font-family: 'Inter', sans-serif !important; }
.et-transposh-switch { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.et-transposh-switch a,
.et-transposh-switch .tp_flags a {
  color: var(--text-muted, rgba(255,255,255,0.6)) !important;
  text-decoration: none !important;
  font-size: 0.8rem !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  transition: color 0.2s;
}
.et-transposh-switch a:hover,
.et-transposh-switch a.tp_selected_lang,
.et-transposh-switch .tp_current {
  color: var(--gold, #C9922A) !important;
}
.et-transposh-switch img { display: none !important; } /* hide flag icons to match minimal text style */
.et-transposh-switch select {
  background: transparent !important;
  color: var(--text-muted, rgba(255,255,255,0.6)) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 6px !important;
  font-size: 0.78rem !important;
  padding: 0.2rem 0.5rem !important;
}

/* ════════════════════════════════════════════
   MOBILE NAVIGATION — Hamburger + Slide-in Drawer
   ════════════════════════════════════════════ */

.et-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.et-hamburger:hover { background: rgba(255,255,255,0.08); }
.et-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.et-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.et-hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.et-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .et-hamburger { display: flex; }
}

.et-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s;
}
.et-overlay--show {
  display: block;
  opacity: 1;
}

.et-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--navy-deep, #071629);
  border-left: 1px solid rgba(201,146,42,0.2);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.et-drawer--open { transform: translateX(0); }

.et-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2.5rem;
  min-height: 100%;
}

.et-drawer-close {
  align-self: flex-end;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.et-drawer-close:hover {
  border-color: var(--gold, #C9922A);
  color: var(--gold, #C9922A);
}

.et-drawer-logo {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  display: inline-flex;
}

.et-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.et-drawer-links li a {
  display: block;
  padding: 1rem 0;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.et-drawer-links li a:hover {
  color: var(--gold, #C9922A);
  padding-left: 0.5rem;
}

.et-drawer-lang {
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  gap: 0.6rem;
}

.et-drawer-cta {
  display: block;
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  margin-top: auto;
}
