@charset "utf-8";
/* CSS Document */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:   #0d0d0d;
      --gold:    #f0c040;
      --gold2:   #d4a017;
      --white:   #ffffff;
      --offwhite:#f7f5f0;
      --gray:    #6b6b6b;
      --lgray:   #e8e6e1;
      --section-pad: clamp(60px, 8vw, 110px);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ─── TOP BAR ─────────────────────────────────────────────── */
    .topbar {
      background: var(--gold);
      text-align: center;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      color: var(--black);
    }
    .topbar a { color: var(--black); text-decoration: none; }
    .topbar a:hover { text-decoration: underline; }

    /* ─── NAV ─────────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(16px, 4vw, 60px);
      height: 68px;
      box-shadow: 0 2px 20px rgba(0,0,0,.4);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 42px;
      height: 42px;
      background: var(--gold);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      color: var(--black);
      flex-shrink: 0;
    }
    .nav-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      color: var(--white);
      letter-spacing: .06em;
      line-height: 1.1;
    }
    .nav-logo-text span { color: var(--gold); }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
    }
    .nav-links a {
      color: rgba(255,255,255,.82);
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: .04em;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links .cta-nav {
      background: var(--gold);
      color: var(--black);
      padding: 9px 20px;
      border-radius: 4px;
      font-weight: 700;
    }
    .nav-links .cta-nav:hover { background: var(--gold2); color: var(--black); }

    /* hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 12px 0 20px;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block;
        padding: 13px 28px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        font-size: 15px;
      }
      .nav-links .cta-nav { margin: 12px 28px 0; text-align: center; border-radius: 4px; }
      .nav-toggle { display: flex; }
    }

    /* ─── HERO ────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--black);
    }

    /* crossfade slider */
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(.45);
    }

    /* diagonal gold accent */
    .hero::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--gold);
      clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 clamp(20px, 6vw, 100px);
      max-width: 820px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--black);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 18px;
      height: 2px;
      background: var(--black);
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      line-height: .95;
      color: var(--white);
      letter-spacing: .02em;
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }

    .hero-sub {
      font-size: clamp(15px, 1.8vw, 18px);
      color: rgba(255,255,255,.78);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .05em;
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      text-transform: uppercase;
      transition: background .2s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: .05em;
      padding: 13px 30px;
      border: 2px solid rgba(255,255,255,.45);
      border-radius: 4px;
      text-decoration: none;
      text-transform: uppercase;
      transition: border-color .2s, color .2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    .hero-dots {
      position: absolute;
      bottom: 110px;
      left: clamp(20px, 6vw, 100px);
      z-index: 3;
      display: flex;
      gap: 8px;
    }
    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.35);
      cursor: pointer;
      transition: background .3s, transform .3s;
      border: none;
    }
    .hero-dot.active {
      background: var(--gold);
      transform: scale(1.3);
    }

    /* ─── STATS RIBBON ────────────────────────────────────────── */
    .stats {
      background: var(--gold);
      padding: 28px clamp(20px, 5vw, 80px);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0;
    }
    .stat-item {
      flex: 1;
      min-width: 160px;
      text-align: center;
      padding: 12px 24px;
      border-right: 1px solid rgba(0,0,0,.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 44px;
      color: var(--black);
      line-height: 1;
      letter-spacing: .02em;
    }
    .stat-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(0,0,0,.65);
      margin-top: 4px;
    }
    @media (max-width: 540px) {
      .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.12); }
      .stat-item:last-child { border-bottom: none; }
    }

    /* ─── SECTION SHARED ──────────────────────────────────────── */
    section { padding: var(--section-pad) clamp(20px, 6vw, 100px); }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold2);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-eyebrow::after {
      content: '';
      flex: 1;
      max-width: 40px;
      height: 2px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.12;
      color: var(--black);
      margin-bottom: 20px;
    }
    .section-body {
      font-size: 16px;
      line-height: 1.75;
      color: #444;
      /* max-width: 640px; */
    }

    /* ─── ABOUT ───────────────────────────────────────────────── */
    #about {
      background: var(--offwhite);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
    }
    @media (max-width: 860px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%;
      /* height: 420px; */
      object-fit: cover;
      border-radius: 4px;
      display: block;
    }
    .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--black);
      color: var(--gold);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: .08em;
      padding: 18px 22px;
      border-radius: 4px;
      text-align: center;
      line-height: 1.2;
    }
    .about-badge strong {
      display: block;
      font-size: 40px;
      line-height: 1;
    }

    .mission-vision {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }
    @media (max-width: 540px) {
      .mission-vision { grid-template-columns: 1fr; }
    }
    .mv-card {
      border-left: 3px solid var(--gold);
      padding: 16px 18px;
      background: var(--white);
      border-radius: 0 4px 4px 0;
    }
    .mv-card h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--gold2);
      margin-bottom: 6px;
    }
    .mv-card p {
      font-size: 13.5px;
      color: #555;
      line-height: 1.65;
    }

    /* ─── WHY CHOOSE US ───────────────────────────────────────── */
    #why {
      background: var(--black);
    }
    #why .section-title { color: var(--white); }
    #why .section-eyebrow { color: var(--gold); }
    #why .section-eyebrow::after { background: rgba(255,255,255,.2); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 48px;
      /* max-width: 1200px; */
    }
    .why-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 6px;
      padding: 30px 26px;
      transition: background .25s, border-color .25s, transform .25s;
    }
    .why-card:hover {
      background: rgba(240,192,64,.08);
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .why-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: var(--gold);
      opacity: .35;
      line-height: 1;
      margin-bottom: 12px;
    }
    .why-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .why-card p {
      font-size: 14px;
      color: rgba(255,255,255,.55);
      line-height: 1.65;
    }
/* ─── SERVICES ────────────────────────────────────────────── */
#services {
  background: var(--white);
  padding: 100px 20px;
}

.services-intro {
  max-width: 1280px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }

  #services {
    padding: 70px 15px;
  }
}

.service-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.service-content {}

.service-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.service-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Airport Pills */
.airport-list,
.coverage-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.airport-pill,
.town-tag {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

/* Buttons */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all .3s ease;
}

.btn-dark:hover {
  background: var(--gold);
  color: #111;
}

    /* coverage towns */
    .coverage-towns {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 22px;
    }
    .town-tag {
      font-size: 12px;
      padding: 4px 10px;
      border: 1px solid var(--lgray);
      border-radius: 100px;
      color: #555;
    }

    /* ─── REVIEWS ─────────────────────────────────────────────── */
    #reviews {
      background: var(--offwhite);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      margin-top: 48px;
      /* max-width: 1200px; */
    }
    .review-card {
      background: var(--white);
      border-radius: 6px;
      padding: 28px 26px;
      box-shadow: 0 2px 16px rgba(0,0,0,.05);
      transition: transform .2s, box-shadow .2s;
    }
    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,.10);
    }
    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }
    .star {
      width: 16px;
      height: 16px;
      background: var(--gold);
      clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    }
    .review-text {
      font-size: 14.5px;
      color: #444;
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 20px;
    }
    .review-text::before { content: '\201C'; }
    .review-text::after  { content: '\201D'; }
    .reviewer {
      font-weight: 700;
      font-size: 14px;
      color: var(--black);
    }
    .review-date {
      font-size: 12px;
      color: var(--gray);
      margin-top: 2px;
    }

    /* ─── CTA BAND ────────────────────────────────────────────── */
    .cta-band {
      background: var(--gold);
      padding: 60px clamp(20px, 6vw, 100px);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .cta-band h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      color: var(--black);
      letter-spacing: .03em;
      max-width: 560px;
      line-height: 1.1;
    }
    .cta-band-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-black {
      background: var(--black);
      color: var(--white);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .05em;
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      text-transform: uppercase;
      display: inline-block;
      transition: background .2s;
    }
    .btn-black:hover { background: #222; }
    .btn-white {
      background: var(--white);
      color: var(--black);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .05em;
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      text-transform: uppercase;
      display: inline-block;
      transition: background .2s;
    }
    .btn-white:hover { background: #eee; }

    /* ─── CONTACT ─────────────────────────────────────────────── */
    #contact {
      background: var(--white);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      max-width: 1280px;
      margin: 0 auto;
      align-items: center;
    }
    @media (max-width: 860px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-info h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      margin-bottom: 18px;
    }
    .contact-info p {
      font-size: 15px;
      color: #555;
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
    }
    .contact-icon {
      width: 44px;
      height: 44px;
      background: var(--gold);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 20px; height: 20px; }
    .contact-item-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 3px;
    }
    .contact-item-val {
      font-size: 15px;
      font-weight: 600;
      color: var(--black);
    }
    .contact-item-val a { color: var(--black); text-decoration: none; }
    .contact-item-val a:hover { color: var(--gold2); }

    /* whatsapp badge */
    .wa-note {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #25D366;
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
      margin-top: 8px;
    }
    .wa-note svg { width: 14px; height: 14px; fill: #fff; }

    /* form */
    .booking-form {
      background: var(--offwhite);
      border-radius: 8px;
      padding: 36px;
    }
    .booking-form h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 24px;
      margin-bottom: 6px;
    }
    .form-note {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 24px;
    }
    .form-note svg {
      width: 15px;
      height: 15px;
      vertical-align: -3px;
      fill: #25D366;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 540px) {
      .form-row { grid-template-columns: 1fr; }
      .booking-form { padding: 24px 18px; }
    }

    .form-group {
      margin-bottom: 14px;
    }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: #555;
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--lgray);
      border-radius: 4px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--black);
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--gold2); }
    .form-group textarea { resize: vertical; min-height: 90px; }

    .btn-wa {
      width: 100%;
      background: #25D366;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: .04em;
      padding: 15px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
      transition: background .2s, transform .15s;
      text-transform: uppercase;
    }
    .btn-wa:hover { background: #1ebe5e; transform: translateY(-1px); }
    .btn-wa svg { width: 22px; height: 22px; fill: #fff; }

    /* ─── FOOTER ──────────────────────────────────────────────── */
    footer {
      background: var(--black);
      color: rgba(255,255,255,.55);
      padding: 10px clamp(20px, 6vw, 100px) 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 48px;
      margin-bottom: 48px;
      /* max-width: 1200px; */
    }
    @media (max-width: 860px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    }

    .footer-brand p {
      font-size: 13.5px;
      line-height: 1.7;
      margin-top: 14px;
      max-width: 280px;
    }
    .footer-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      color: var(--white);
      letter-spacing: .06em;
    }
    .footer-logo-text span { color: var(--gold); }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: 13.5px;
      transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--gold); }

    .footer-contact-item {
      font-size: 13.5px;
      margin-bottom: 10px;
    }
    .footer-contact-item a { color: rgba(255,255,255,.7); text-decoration: none; }
    .footer-contact-item a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      font-size: 12px;
    }
    .footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ─── FLOATING WA BUTTON ─────────────────────────────────── */
    .float-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.5);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }
    .float-wa:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,.65);
    }
    .float-wa svg { width: 28px; height: 28px; fill: #fff; }

    /* ─── SCROLL REVEAL ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; }
      .hero-slide { transition: none; }
      .btn-primary, .btn-dark, .why-card, .review-card { transition: none; }
    }

    /* ===== FULL WIDTH PARALLAX CTA ===== */

#ride-cta-section{
    position:relative;
    width:100%;
    min-height:550px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:100px 30px;
    overflow:hidden;

    background-image:url('img/cta-bg.jpg');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

#ride-cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:1;
}

#ride-cta-content{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
}

#ride-cta-content h2{

  font-family: 'Bebas Neue', sans-serif;

    color:#ffffff;
    font-size:clamp(32px,5vw,60px);
    line-height:1.15;
    margin:0 0 20px;
    font-weight:700;
}

#ride-cta-content p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.8;
    margin:0 auto 35px;
    max-width:750px;
}

#ride-cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

#ride-cta-book-btn{
    display:inline-block;
    padding:16px 34px;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

#ride-cta-book-btn:hover{
    transform:translateY(-3px);
}

#ride-cta-call-btn{
    display:inline-block;
    padding:16px 34px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

#ride-cta-call-btn:hover{
    background:#fff;
    color:#111;
}

@media (max-width:768px){

    #ride-cta-section{
        min-height:auto;
        padding:80px 20px;
        background-attachment:scroll;
    }

    #ride-cta-content h2{
        font-size:34px;
    }

    #ride-cta-content p{
        font-size:16px;
    }

    #ride-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    #ride-cta-book-btn,
    #ride-cta-call-btn{
        width:100%;
        max-width:320px;
    }
}