/* ============================================================
   AquaForce — Parking Spot Pressure Washing
   Design system + layout + responsive
   ============================================================ */

:root {
  --navy:      #0B2545;
  --navy-700:  #143a66;
  --cyan:      #13A8C9;
  --cyan-300:  #2DD4DA;
  --orange:    #FF7A1A;
  --orange-600:#e96a0c;
  --white:     #FFFFFF;
  --slate:     #5B6B7B;
  --slate-100: #f4f7fa;
  --slate-200: #e6edf3;
  --whatsapp:  #25D366;
  --whatsapp-d:#1da851;
  --telegram:  #229ED9;
  --telegram-d:#1b86ba;
  --gold:      #E6C25A;
  --gold-d:    #c9a227;
  --call:      #1f7aec;
  --call-d:    #1660c8;

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.18);
  --container: 1140px;
  --ease:      cubic-bezier(.22,.61,.36,1);

  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); }

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.accent { color: var(--cyan-300); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--cyan-300);
  margin-bottom: 14px;
}
.eyebrow-dark { color: var(--cyan); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  color: #fff;
}
.btn:hover  { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.24); }
.btn:active { transform: translateY(-1px); }
.btn svg { flex: none; }

.btn-whatsapp { background: var(--whatsapp); }
.btn-whatsapp:hover { background: var(--whatsapp-d); }
.btn-telegram { background: var(--telegram); }
.btn-telegram:hover { background: var(--telegram-d); }
.btn-accent   { background: var(--orange); }
.btn-accent:hover { background: var(--orange-600); }
.btn-call     { background: var(--call); }
.btn-call:hover { background: var(--call-d); }
.btn-sm { font-size: .9rem; padding: 11px 18px; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 37, 69, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.brand strong { color: var(--cyan-300); font-weight: 800; }
.brand-icon { color: var(--cyan-300); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
  transition: color .15s;
}
.main-nav a:hover { color: #fff; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: var(--orange-600); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-start;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11,37,69,.92) 0%, rgba(19,168,201,.78) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=70') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(45,212,218,.25), transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; padding: 36px 22px 70px; max-width: 760px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  color: rgba(255,255,255,.92);
  max-width: 580px;
  margin-bottom: 32px;
}
.cta-group { display: flex; flex-wrap: wrap; gap: 16px; }
.cta-group-center { justify-content: center; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin-top: 34px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: #fff;
}
.hero-badges li {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(45, 212, 218, .55);
  padding: 11px 20px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--navy-700); color: #fff; padding: 26px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cyan-300);
}
.trust-label { font-size: .82rem; color: rgba(255,255,255,.8); letter-spacing: .03em; }

/* ============ SECTIONS ============ */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--slate-100); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--slate); font-size: 1.05rem; }

/* ============ SERVICE CARDS ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-300));
  color: #fff;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: .95rem; }

/* ============ BEFORE / AFTER SLIDER ============ */
/* Layout that holds one or more comparison sliders */
.ba-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.ba-item { width: 100%; max-width: 880px; margin: 0; }
.ba-caption {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.ba-slider {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
/* Portrait variant (e.g. interior shots) */
.ba-slider.ba-portrait {
  max-width: 430px;
  aspect-ratio: 96 / 164;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap {
  position: absolute; inset: 0;
  width: 100%;
  overflow: hidden;
  /* clip the "before" image from the right; updated by JS. Keeps both
     images at the exact same scale so they line up on any screen size. */
  clip-path: inset(0 50% 0 0);
}
.ba-before-wrap .ba-img { width: 100%; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}
.ba-handle-line { position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; }
.ba-handle-grip {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.ba-tag {
  position: absolute;
  bottom: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(11,37,69,.75);
  backdrop-filter: blur(4px);
}
.ba-tag-before { left: 14px; }
.ba-tag-after  { right: 14px; }

/* ============ STEPS / WHY ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.step { text-align: center; padding: 12px; }
.step-num {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan-300);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--slate); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.why-item {
  background: var(--slate-100);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .98rem;
  color: var(--navy);
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--cyan) 130%);
  color: #fff;
  padding: clamp(56px, 8vw, 90px) 0;
  text-align: center;
}
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 30px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding-block: 44px;
}
.footer-brand .brand { font-size: 1.15rem; margin-bottom: 8px; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.7); }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: rgba(255,255,255,.82); font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: var(--cyan-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 18px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-credit { margin-top: 4px; }
.footer-credit a {
  color: var(--cyan-300);
  font-weight: 600;
  transition: color .15s;
}
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* ============ FLOATING CONTACT ============ */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
  transition: transform .18s var(--ease);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: var(--whatsapp); }
.float-call { background: var(--call); animation-delay: .4s; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(0,0,0,.28); }
  50%      { box-shadow: 0 8px 22px rgba(0,0,0,.28), 0 0 0 8px rgba(255,255,255,.06); }
}

/* ============ CAR WASH PACKAGES ============ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-head { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--slate-200); margin-bottom: 22px; }
.pkg-name { font-size: 1.5rem; font-weight: 800; }
.pkg-tagline { color: var(--slate); font-size: .92rem; margin-top: 4px; }
.pkg-price {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pkg-currency { font-size: 1.25rem; vertical-align: super; color: var(--cyan); margin-left: 5px; }
.pkg-amount   { font-size: 3rem; }

.pkg-list { list-style: none; margin: 0 0 26px; flex: 1; }
.pkg-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: .95rem;
  color: var(--navy);
  border-bottom: 1px dashed var(--slate-200);
}
.pkg-list li:last-child { border-bottom: 0; }
.pkg-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  /* white check mark via mask-free SVG background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.pkg-btn {
  width: 100%;
  justify-content: center;
  background: var(--navy);
}
.pkg-btn:hover { background: var(--navy-700); }

/* Featured (King Wash) — luxury dark card with gold accents */
.pkg-featured {
  background: linear-gradient(160deg, #0d2a4f 0%, #0B2545 60%, #08182e 100%);
  border: 1px solid rgba(230,194,90,.45);
  box-shadow: 0 24px 60px rgba(11,37,69,.4);
}
.pkg-featured:hover { transform: translateY(-10px); }
.pkg-featured .pkg-name { color: #fff; }
.pkg-featured .pkg-tagline { color: rgba(255,255,255,.7); }
.pkg-featured .pkg-head { border-bottom-color: rgba(255,255,255,.15); }
.pkg-featured .pkg-price { color: #fff; }
.pkg-featured .pkg-currency { color: var(--gold); }
.pkg-featured .pkg-list li { color: rgba(255,255,255,.92); border-bottom-color: rgba(255,255,255,.1); }
.pkg-featured .pkg-list li strong { color: var(--gold); font-weight: 600; }
.pkg-featured .pkg-list li::before {
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230B2545' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
.pkg-featured .pkg-btn { background: var(--gold); color: var(--navy); }
.pkg-featured .pkg-btn:hover { background: var(--gold-d); }

.pkg-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(90deg, var(--gold), var(--gold-d));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .03em;
  padding: 7px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(201,162,39,.45);
}

/* ============ BOOKING FORM ============ */
.booking-wrap { max-width: 860px; }
.booking-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
}

/* Banner that shows the selected package */
.booking-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--cyan) 140%);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  margin-bottom: 26px;
}
.banner-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.banner-pkg {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}
/* Highlight state once a real package is chosen */
.booking-banner.is-set { box-shadow: inset 0 0 0 2px var(--gold); }
.booking-banner.is-set .banner-pkg { color: var(--gold); }

/* Make the Selected Package field stand out from the rest */
#package { border-color: var(--cyan); background: #fff; font-weight: 600; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field .req { color: var(--orange); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--slate-100);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(19,168,201,.15);
}
.field input:invalid:not(:placeholder-shown) { border-color: #e2574c; }
.booking-submit { width: 100%; justify-content: center; margin-top: 24px; }

/* Success message */
.booking-success { text-align: center; padding: 24px 10px; }
.success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 2.2rem;
  animation: popIn .4s var(--ease);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.booking-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.booking-success p { color: var(--slate); max-width: 420px; margin: 0 auto 14px; }
.success-pkg { font-size: 1rem; }
.success-pkg strong { color: var(--navy); }
.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* Direct contact buttons under the form */
.booking-contact {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
  text-align: center;
}
.booking-or { display: block; color: var(--slate); font-size: .9rem; margin-bottom: 14px; }
.booking-contact-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  /* Packages: stack to 1 column and let the featured card flow naturally */
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pkg-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 22px 22px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-cta { width: 100%; text-align: center; margin-top: 12px; padding: 13px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-inner { padding: 28px 22px 60px; }
  .btn { width: 100%; justify-content: center; }
  .cta-group { width: 100%; }
  /* Stack the hero badges under each other on phones */
  .hero-badges { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-badges li { width: auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-btn { animation: none; }
}

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
  flex: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.lang-toggle:hover { background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .5); }
@media (max-width: 768px) { .lang-toggle { margin-inline-start: auto; margin-inline-end: 8px; } }

/* ============ RTL / ARABIC ============ */
/* Keep prices reading left-to-right ("8 KD") in both languages */
.pkg-price { direction: ltr; }

[dir="rtl"] body { font-family: 'Cairo', system-ui, -apple-system, 'Segoe UI', sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] .brand, [dir="rtl"] .btn, [dir="rtl"] .eyebrow,
[dir="rtl"] .nav-cta, [dir="rtl"] .lang-toggle, [dir="rtl"] .pkg-name,
[dir="rtl"] .banner-pkg, [dir="rtl"] .ba-caption, [dir="rtl"] .trust-num,
[dir="rtl"] .step-num, [dir="rtl"] input, [dir="rtl"] select, [dir="rtl"] textarea {
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
}

/* Right-align the hero text in Arabic */
[dir="rtl"] .hero-inner { text-align: right; }

/* Flip the check-mark bullets to the right side */
[dir="rtl"] .pkg-list li { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .pkg-list li::before { left: auto; right: 0; }

/* Move the floating contact buttons to the left in Arabic */
[dir="rtl"] .floating-contact { right: auto; left: 18px; }

/* Field labels and helper text align to the right */
[dir="rtl"] .field label,
[dir="rtl"] .booking-or { text-align: right; }
