/* ============================================================
   styles.css — Aero Greet India v3
   Mobile-first responsive design
   Link this file from every page: <link rel="stylesheet" href="/styles.css">
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ──────────────────────────────────────────────────────────── */
:root {
  /* Gold palette */
  --gold:      #B8960C;
  --gl:        #D4AF37;
  --gb:        #F0C040;
  --gold-light:#F8E070;
  --gp:        rgba(212,175,55,.12);
  --gp2:       rgba(212,175,55,.22);
  --gborder:   rgba(212,175,55,.20);
  --gborder2:  rgba(212,175,55,.38);
  --gshadow:   rgba(212,175,55,.35);

  /* Dark backgrounds */
  --d:  #080C10;
  --d2: #0D1520;
  --d3: #131E2D;
  --d4: #1A2840;
  --d5: #213050;

  /* Text & surfaces */
  --sl: #8FA0B8;
  --li: #EEF2F7;
  --w:  #FFFFFF;
  --muted: rgba(238,242,247,.6);

  /* Borders */
  --br:  rgba(212,175,55,.20);
  --b2:  rgba(255,255,255,.07);
  --b3:  rgba(255,255,255,.12);

  /* Semantic */
  --success: #22c55e;
  --danger:  #ef4444;
  --warn:    #f59e0b;
  --info:    #3b82f6;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Transitions */
  --tr:  .3s cubic-bezier(.4,0,.2,1);
  --tr2: .25s ease;
  --tr-bounce: .4s cubic-bezier(.34,1.56,.64,1);

  /* Spacing scale */
  --space-xs:  .375rem;
  --space-sm:  .75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;

  /* Border radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-full: 9999px;

  /* Nav height */
  --nav-h: 74px;

  /* Section padding (mobile) */
  --section-py: 4rem;
  --section-px: 1.25rem;
}

/* ────────────────────────────────────────────────────────────
   2. RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background: var(--d);
  color: var(--li);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); line-height: 1.2; }
p { line-height: 1.7; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--d2); }
::-webkit-scrollbar-thumb { background: var(--gl); border-radius: 4px; }

/* Focus styles for keyboard nav */
:focus-visible {
  outline: 2px solid var(--gl);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ────────────────────────────────────────────────────────────
   3. CUSTOM CURSOR (desktop only)
   ──────────────────────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
}
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gb);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width .2s, height .2s, opacity .2s;
  display: none;
}
#cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(212,175,55,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: left .1s ease-out, top .1s ease-out, width .2s, height .2s;
  display: none;
}
@media (pointer: fine) {
  #cursor, #cursor-ring { display: block; }
}

/* ────────────────────────────────────────────────────────────
   4. ANNOUNCEMENT BANNER
   ──────────────────────────────────────────────────────────── */
#announcement-bar {
  width: 100%;
  padding: .6rem var(--section-px);
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  z-index: 1001;
  display: none; /* shown via JS when active announcement exists */
}
#announcement-bar a { text-decoration: underline; margin-left: .5rem; }
#announcement-bar .close-bar {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem; opacity: .7; cursor: pointer;
  background: none; border: none; color: inherit;
  line-height: 1;
}

/* ────────────────────────────────────────────────────────────
   5. NAVIGATION
   ──────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(5,8,14,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: var(--gborder);
  box-shadow: 0 6px 40px rgba(0,0,0,.4);
}
/* When announcement bar is present, offset nav */
#nav.has-banner { top: 0; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg,#F0D060,#B8960C);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 18px var(--gshadow);
  transition: transform .3s, box-shadow .3s;
}
.logo:hover .logo-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 8px 28px rgba(212,175,55,.55);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--w);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: .44rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gl);
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Desktop nav links */
.nav-ul {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-ul li a {
  position: relative;
  display: flex; align-items: center; gap: 7px;
  color: rgba(238,242,247,.68);
  font-size: .76rem;
  font-weight: 700;
  padding: 9px 15px;
  border-radius: var(--r-sm);
  transition: all .28s cubic-bezier(.4,0,.2,1);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-ul li a .ni { font-size: .9rem; transition: transform .28s cubic-bezier(.34,1.56,.64,1); }
.nav-ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gb), var(--gl));
  border-radius: 2px;
  transition: left .28s ease, right .28s ease;
  opacity: 0;
}
.nav-ul li a:hover {
  color: var(--w);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.nav-ul li a:hover .ni { transform: scale(1.25) rotate(-8deg); }
.nav-ul li a:hover::after { left: 20%; right: 20%; opacity: 1; }
.nav-ul li a.nav-active { color: var(--gl); }
.nav-ul li a.nav-active::after { left: 20%; right: 20%; opacity: 1; }

/* Book Now button in nav */
.nav-book {
  background: linear-gradient(135deg,#F0D060,#C8A010) !important;
  color: #0A0C0E !important;
  font-weight: 800 !important;
  padding: 10px 22px !important;
  border-radius: var(--r-md) !important;
  letter-spacing: .05em !important;
  box-shadow: 0 4px 20px var(--gshadow);
  transition: all .3s var(--tr-bounce) !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 10px 32px rgba(212,175,55,.55) !important;
}
.nav-book:hover .ni { transform: rotate(-12deg) scale(1.3) !important; }

/* Hamburger */
.hb {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background .2s;
}
.hb:hover { background: rgba(255,255,255,.1); }
.hb span {
  display: block;
  width: 20px; height: 1.5px;
  background: rgba(238,242,247,.85);
  border-radius: 2px;
  transition: all .3s;
}
.hb.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hb.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hb.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mob {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,7,12,.99);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 997;
  overflow-y: auto;
  flex-direction: column;
  overscroll-behavior: contain;
}
.mob.open { display: flex; }
.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.mob-logo { display: flex; align-items: center; gap: 10px; }
.mob-close {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(238,242,247,.8);
  font-size: 1rem;
  transition: all .2s;
}
.mob-close:hover {
  background: rgba(239,68,68,.15);
  border-color: rgba(239,68,68,.3);
  color: #f87171;
}
.mob-body {
  padding: 1.25rem 6% 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.mob-login {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(212,175,55,.06));
  border: 1px solid var(--gborder2);
  border-radius: var(--r-md);
  padding: 15px 18px;
  margin-bottom: .75rem;
  transition: all .25s;
}
.mob-login:hover {
  background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(212,175,55,.1));
  transform: translateY(-1px);
}
.mob-login-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #E8C84A, #B8960C);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px var(--gshadow);
}
.mob-login-label { font-size: .92rem; font-weight: 700; color: #E8C84A; }
.mob-login-sub { font-size: .71rem; color: rgba(212,175,55,.6); margin-top: 2px; }
.mob-link {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 10px;
  color: rgba(238,242,247,.75);
  font-size: .88rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all .22s;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.mob-link:last-of-type { border-bottom: none; }
.mli {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  transition: all .25s;
}
.mob-link:hover { color: var(--w); background: rgba(255,255,255,.05); padding-left: 16px; }
.mob-link:hover .mli {
  background: rgba(212,175,55,.15);
  border-color: rgba(212,175,55,.3);
  transform: scale(1.1);
}
.mob-bookbtn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #F0D060, #C8A010);
  color: #0A0C0E;
  font-weight: 800; font-size: .9rem;
  padding: 15px;
  border-radius: var(--r-md);
  margin-top: auto;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px var(--gshadow);
  transition: all .3s var(--tr-bounce);
}
.mob-bookbtn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(212,175,55,.5);
}

/* Desktop nav breakpoint */
@media (min-width: 960px) {
  .nav-ul { display: flex; }
  .hb { display: none; }
}
@media (max-width: 959px) {
  #nav { padding: 0 4%; }
}

/* ────────────────────────────────────────────────────────────
   6. HERO SECTION
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,6,10,.88) 0%,
    rgba(8,12,20,.72) 50%,
    rgba(4,6,10,.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem var(--section-px) 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gp2);
  border: 1px solid var(--gborder2);
  border-radius: var(--r-full);
  padding: .45rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gl);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--w);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title .gold { color: var(--gb); }
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(238,242,247,.72);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-stat {}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gb);
}
.hero-stat .lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .6;
  animation: bounce-y 2s infinite;
}
.hero-scroll span { font-size: .7rem; font-weight: 600; letter-spacing: .1em; color: var(--gl); text-transform: uppercase; }
.hero-scroll .arr { font-size: 1.1rem; color: var(--gl); }
@keyframes bounce-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-dots {
  position: absolute;
  bottom: 2rem; right: 5%;
  z-index: 2;
  display: flex; gap: .5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--gl);
  width: 24px;
  border-radius: 4px;
}

/* ────────────────────────────────────────────────────────────
   7. BUTTONS
   ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  transition: all .3s var(--tr-bounce);
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #F0D060, #C8A010);
  color: #09100A;
  box-shadow: 0 4px 20px var(--gshadow);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(212,175,55,.55);
}
.btn-outline {
  background: rgba(255,255,255,.06);
  color: var(--li);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gl);
  border: 1px solid var(--gborder2);
}
.btn-ghost:hover {
  background: var(--gp);
  transform: translateY(-2px);
}
.btn-sm { padding: .55rem 1.1rem; font-size: .8rem; border-radius: var(--r-sm); }
.btn-lg { padding: 1rem 2.25rem; font-size: .95rem; }
.btn-block { display: flex; width: 100%; }
.btn-icon { gap: .4rem; }
.btn[disabled], .btn.loading {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────
   8. SECTION LAYOUT HELPERS
   ──────────────────────────────────────────────────────────── */
.section {
  padding: var(--section-py) var(--section-px);
}
.section-alt { background: var(--d2); }
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gl);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gl);
  opacity: .5;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--w);
  margin-bottom: .75rem;
}
.section-title .gold { color: var(--gb); }
.section-sub {
  font-size: .95rem;
  color: var(--sl);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   9. BOOKING FORM / WIDGET
   ──────────────────────────────────────────────────────────── */
.booking-section {
  position: relative;
  z-index: 3;
  padding: 0 var(--section-px) 4rem;
  margin-top: -3rem;
}
.booking-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--d3);
  border: 1px solid var(--gborder);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.booking-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .6rem;
}
.booking-title .icon {
  width: 34px; height: 34px;
  background: var(--gp);
  border: 1px solid var(--gborder);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* Service Type tabs */
.service-tabs {
  display: flex;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-sm);
  padding: 4px;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.service-tab {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem .5rem;
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--sl);
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: none; border: none;
}
.service-tab.active {
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(212,175,55,.1));
  color: var(--gl);
  box-shadow: inset 0 0 0 1px var(--gborder2);
}
.service-tab:hover:not(.active) { background: rgba(255,255,255,.05); color: var(--li); }

/* Form grid */
.form-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
.form-group {}
.form-group label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 5px;
}
.form-group label .req { color: var(--danger); margin-left: 2px; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--b3);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  color: var(--li);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--gl);
  background: rgba(255,255,255,.08);
}
.form-input::placeholder { color: rgba(143,160,184,.5); }
.form-input.error { border-color: var(--danger); }
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA0B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.form-input option { background: var(--d3); color: var(--li); }
.form-row {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
.field-error {
  font-size: .72rem;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}
.field-error.show { display: block; }

/* Addons checkboxes */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: .5rem;
}
.addon-check {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--b2);
  border-radius: var(--r-sm);
  padding: .65rem .8rem;
  cursor: pointer;
  transition: all .2s;
}
.addon-check input { display: none; }
.addon-check.checked {
  background: var(--gp);
  border-color: var(--gborder2);
}
.addon-box {
  width: 16px; height: 16px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  color: var(--gl);
  flex-shrink: 0;
  transition: all .2s;
}
.addon-check.checked .addon-box { background: var(--gl); color: #000; }
.addon-label { font-size: .8rem; color: var(--sl); }
.addon-check.checked .addon-label { color: var(--li); }
.addon-price { font-size: .72rem; color: var(--gl); margin-left: auto; font-weight: 600; }

/* Price display */
.price-display {
  background: var(--gp);
  border: 1px solid var(--gborder2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb);
}
.price-label { font-size: .75rem; color: var(--sl); margin-top: 2px; }
.price-note { font-size: .75rem; color: var(--muted); }

/* Transit fields */
.transit-section {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--b2);
  border-radius: var(--r-md);
  padding: 1rem;
  margin-top: .5rem;
}
.transit-section-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gl);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .85rem;
  display: flex; align-items: center; gap: .4rem;
}

/* ────────────────────────────────────────────────────────────
   10. FEATURE / SERVICE CARDS
   ──────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.feature-card {
  background: var(--d3);
  border: 1px solid var(--b2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gl), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  border-color: var(--gborder);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.feature-card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  background: var(--gp);
  border: 1px solid var(--gborder);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--w);
  margin-bottom: .5rem;
}
.card-text {
  font-size: .875rem;
  color: var(--sl);
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gl);
  margin-top: 1rem;
  transition: gap .2s;
}
.card-link:hover { gap: .6rem; }

/* ────────────────────────────────────────────────────────────
   11. AIRPORTS GRID
   ──────────────────────────────────────────────────────────── */
.airports-search {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.airports-search input {
  width: 100%;
  background: var(--d3);
  border: 1px solid var(--gborder);
  border-radius: var(--r-full);
  padding: .95rem 1.25rem .95rem 3rem;
  color: var(--li);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.airports-search input:focus {
  border-color: var(--gl);
  box-shadow: 0 0 0 4px rgba(212,175,55,.1);
}
.airports-search .search-icon {
  position: absolute;
  left: 1.1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--sl);
  font-size: 1rem;
  pointer-events: none;
}
.airports-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.airport-card {
  background: var(--d3);
  border: 1px solid var(--b2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.airport-card:hover {
  border-color: var(--gborder);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.3);
}
.airport-card-img {
  height: 140px;
  background: var(--d4);
  background-size: cover;
  background-position: center;
  position: relative;
}
.airport-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,21,32,.8) 0%, transparent 60%);
}
.airport-card-body { padding: 1rem 1.1rem; }
.airport-card-city {
  font-size: .95rem;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 2px;
}
.airport-card-name {
  font-size: .75rem;
  color: var(--sl);
  margin-bottom: .75rem;
}
.airport-card-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gl);
}
.airport-card-code {
  font-size: .65rem;
  font-weight: 700;
  color: var(--gl);
  letter-spacing: .1em;
  background: var(--gp);
  border: 1px solid var(--gborder);
  border-radius: var(--r-full);
  padding: 2px 8px;
  position: absolute;
  top: .75rem; right: .75rem;
  z-index: 1;
}

/* ────────────────────────────────────────────────────────────
   12. STATS / COUNTERS SECTION
   ──────────────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--d3), var(--d4));
  border-top: 1px solid var(--gborder);
  border-bottom: 1px solid var(--gborder);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gborder);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--d3);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gb);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-lbl {
  font-size: .75rem;
  font-weight: 600;
  color: var(--sl);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────────
   13. PROCESS / HOW IT WORKS
   ──────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
}
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.process-num {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gb), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #09100A;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--gshadow);
}
.process-body {}
.process-title { font-size: 1rem; font-weight: 700; color: var(--w); margin-bottom: .35rem; }
.process-text { font-size: .875rem; color: var(--sl); line-height: 1.65; }

/* ────────────────────────────────────────────────────────────
   14. TESTIMONIALS
   ──────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.testimonial-card {
  background: var(--d3);
  border: 1px solid var(--b2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all .3s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--gborder);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.3);
}
.testimonial-stars {
  display: flex; gap: 3px;
  color: var(--gb);
  font-size: .85rem;
  margin-bottom: .85rem;
}
.testimonial-quote {
  font-size: .9rem;
  color: var(--li);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; font-size: 1.5rem; color: var(--gl); line-height: 0; vertical-align: -.3em; margin-right: 2px; }
.testimonial-quote::after  { content: '"'; font-size: 1.5rem; color: var(--gl); line-height: 0; vertical-align: -.3em; margin-left: 2px; }
.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gl), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  color: #09100A;
  flex-shrink: 0;
}
.testimonial-name { font-size: .88rem; font-weight: 700; color: var(--w); }
.testimonial-loc  { font-size: .75rem; color: var(--sl); }

/* ────────────────────────────────────────────────────────────
   15. FAQ ACCORDION
   ──────────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--b2);
  border-radius: var(--r-md);
  margin-bottom: .65rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--gborder); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--d3);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  color: var(--li);
  text-align: left;
  border: none;
  transition: background .2s, color .2s;
}
.faq-q:hover { background: var(--d4); color: var(--w); }
.faq-item.open .faq-q { color: var(--gl); }
.faq-icon {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gp);
  color: var(--gl);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: rgba(255,255,255,.02);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 1.25rem 1.1rem;
  font-size: .875rem;
  color: var(--sl);
  line-height: 1.75;
}

/* ────────────────────────────────────────────────────────────
   16. BLOG CARDS
   ──────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.blog-card {
  background: var(--d3);
  border: 1px solid var(--b2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s;
}
.blog-card:hover {
  border-color: var(--gborder);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.blog-card-img {
  height: 200px;
  background: var(--d4);
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 1.25rem; }
.blog-category {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gl);
  background: var(--gp);
  border: 1px solid var(--gborder);
  border-radius: var(--r-full);
  padding: 2px 9px;
  margin-bottom: .75rem;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--w);
  margin-bottom: .5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: .83rem;
  color: var(--sl);
  line-height: 1.6;
  margin-bottom: .85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex; align-items: center; gap: .75rem;
  font-size: .75rem;
  color: rgba(143,160,184,.65);
}
.blog-meta .sep { opacity: .4; }

/* ────────────────────────────────────────────────────────────
   17. CONTACT SECTION
   ──────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.contact-info {}
.contact-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--w);
  margin-bottom: .5rem;
}
.contact-info-sub { font-size: .9rem; color: var(--sl); margin-bottom: 1.75rem; line-height: 1.65; }
.contact-items { display: flex; flex-direction: column; gap: .85rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--gp);
  border: 1px solid var(--gborder);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: .72rem; font-weight: 700; color: var(--sl); text-transform: uppercase; letter-spacing: .06em; }
.contact-item-value { font-size: .92rem; color: var(--li); margin-top: 2px; }
.contact-item-value a:hover { color: var(--gl); }

.contact-form-card {
  background: var(--d3);
  border: 1px solid var(--gborder);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
}

/* ────────────────────────────────────────────────────────────
   18. PAGE HEADER (inner pages)
   ──────────────────────────────────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--d2) 0%, var(--d) 100%);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-tag { margin-bottom: .85rem; }
.page-header-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--w);
  margin-bottom: .75rem;
}
.page-header-sub {
  font-size: 1rem;
  color: var(--sl);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumbs {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--sl);
  margin-bottom: 1.25rem;
}
.breadcrumbs a:hover { color: var(--gl); }
.breadcrumbs .sep { opacity: .4; }

/* ────────────────────────────────────────────────────────────
   19. FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--d2);
  border-top: 1px solid var(--gborder);
  padding: 3.5rem var(--section-px) 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-brand-logo { margin-bottom: 1rem; }
.footer-brand-desc {
  font-size: .875rem;
  color: var(--sl);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 300px;
}
.footer-socials { display: flex; gap: .6rem; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--b2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--sl);
  transition: all .25s;
}
.footer-social:hover {
  background: var(--gp);
  border-color: var(--gborder2);
  color: var(--gl);
  transform: translateY(-2px);
}
.footer-col {}
.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gl);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .84rem;
  color: rgba(143,160,184,.8);
  transition: color .2s;
  display: flex; align-items: center; gap: .45rem;
}
.footer-links a:hover { color: var(--gl); }
.footer-links a .arrow { font-size: .7rem; opacity: 0; transition: opacity .2s, transform .2s; }
.footer-links a:hover .arrow { opacity: 1; transform: translateX(3px); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .65rem;
  margin-bottom: .75rem;
  font-size: .84rem;
  color: rgba(143,160,184,.8);
}
.footer-contact-item .icon { font-size: .95rem; color: var(--gl); flex-shrink: 0; margin-top: .1rem; }
.footer-contact-item a:hover { color: var(--gl); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
  text-align: center;
  font-size: .78rem;
  color: rgba(143,160,184,.55);
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.footer-bottom-links a { color: inherit; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gl); }

/* ────────────────────────────────────────────────────────────
   20. ABOUT PAGE
   ──────────────────────────────────────────────────────────── */
.about-banner {
  width: 100%;
  height: 260px;
  background: var(--d3);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-xl);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.about-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,12,16,.7), rgba(8,12,16,.4));
  border-radius: inherit;
}
.about-intro { max-width: 720px; margin: 0 auto; text-align: center; }
.about-intro p { font-size: 1rem; color: var(--sl); line-height: 1.8; margin-bottom: 1rem; }
.values-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.value-card {
  background: var(--d3);
  border: 1px solid var(--b2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all .3s;
}
.value-card:hover { border-color: var(--gborder); transform: translateY(-3px); }
.value-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.value-title { font-size: 1rem; font-weight: 700; color: var(--w); margin-bottom: .4rem; }
.value-text { font-size: .85rem; color: var(--sl); line-height: 1.65; }
.team-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.team-card {
  background: var(--d3);
  border: 1px solid var(--b2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all .3s;
}
.team-card:hover { border-color: var(--gborder); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gl), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px var(--gshadow);
}
.team-name { font-size: .95rem; font-weight: 700; color: var(--w); }
.team-role { font-size: .78rem; color: var(--sl); margin-top: 3px; }

/* ────────────────────────────────────────────────────────────
   21. AIRPORT PAGE TEMPLATE
   ──────────────────────────────────────────────────────────── */
.airport-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
  background: var(--d2);
  overflow: hidden;
}
.airport-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.airport-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.airport-code-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gp2);
  border: 1px solid var(--gborder2);
  border-radius: var(--r-full);
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gl);
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.airport-page-title {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  color: var(--w);
  margin-bottom: .75rem;
}
.airport-page-sub { font-size: .95rem; color: var(--sl); max-width: 580px; line-height: 1.7; }
.airport-pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
}
.airport-price-pill {
  background: var(--d3);
  border: 1px solid var(--gborder);
  border-radius: var(--r-full);
  padding: .5rem 1.1rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
}
.airport-price-pill .type { color: var(--sl); font-weight: 600; }
.airport-price-pill .price { color: var(--gb); font-weight: 700; font-size: .92rem; }
.airport-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.airport-main {}
.airport-sidebar {}
.airport-book-card {
  background: var(--d3);
  border: 1px solid var(--gborder);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.airport-book-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--w);
  margin-bottom: .25rem;
}
.airport-book-card-sub { font-size: .8rem; color: var(--sl); margin-bottom: 1.25rem; }

/* ────────────────────────────────────────────────────────────
   22. DASHBOARD (user-facing)
   ──────────────────────────────────────────────────────────── */
.dashboard-wrap {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
  max-width: 960px;
  margin: 0 auto;
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.dashboard-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gl), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #09100A;
  flex-shrink: 0;
}
.dashboard-greeting { font-size: 1.2rem; font-weight: 700; color: var(--w); }
.dashboard-sub { font-size: .82rem; color: var(--sl); }
.bookings-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bookings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .84rem;
}
.bookings-table th {
  padding: .75rem 1rem;
  text-align: left;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sl);
  border-bottom: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
  background: var(--d3);
}
.bookings-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
  white-space: nowrap;
}
.bookings-table tr:last-child td { border-bottom: none; }
.bookings-table tr:hover td { background: rgba(255,255,255,.02); }
.booking-ref {
  font-family: monospace;
  font-size: .82rem;
  color: var(--gl);
  background: var(--gp);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--gborder);
}

/* ────────────────────────────────────────────────────────────
   23. BADGES & PILLS
   ──────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-pending  { background: rgba(251,191,36,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.badge-queue    { background: rgba(99,102,241,.12);  color: #818cf8; border: 1px solid rgba(99,102,241,.25); }
.badge-confirmed{ background: rgba(34,197,94,.12);  color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.badge-paid     { background: rgba(212,175,55,.12); color: var(--gl); border: 1px solid var(--gborder); }
.badge-completed{ background: rgba(20,184,166,.12); color: #2dd4bf; border: 1px solid rgba(20,184,166,.25); }
.badge-cancelled{ background: rgba(239,68,68,.12);  color: #f87171; border: 1px solid rgba(239,68,68,.25); }
.badge-draft    { background: rgba(107,114,128,.12); color: #9ca3af; border: 1px solid rgba(107,114,128,.25); }
.badge-published{ background: rgba(34,197,94,.12);  color: #4ade80; border: 1px solid rgba(34,197,94,.25); }

/* ────────────────────────────────────────────────────────────
   24. TOAST NOTIFICATIONS
   ──────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem; right: 1rem;
  z-index: 9999;
  display: flex; flex-direction: column; gap: .6rem;
  pointer-events: none;
}
.toast {
  background: var(--d3);
  border: 1px solid var(--gborder);
  color: var(--li);
  padding: .85rem 1.1rem;
  border-radius: var(--r-md);
  font-size: .84rem;
  max-width: min(300px, calc(100vw - 2rem));
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(8px) scale(.96);
  transition: all .28s ease;
  pointer-events: all;
  display: flex; align-items: center; gap: .65rem;
}
.toast.show { opacity: 1; transform: translateY(0) scale(1); }
.toast.toast-success { border-color: rgba(34,197,94,.4); }
.toast.toast-success .t-icon { color: #4ade80; }
.toast.toast-error { border-color: rgba(239,68,68,.4); }
.toast.toast-error .t-icon { color: #f87171; }

/* ────────────────────────────────────────────────────────────
   25. MODAL / DIALOG
   ──────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--d3);
  border: 1px solid var(--gborder);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%;
  max-width: 600px;
  max-height: 92svh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,0,.67,0);
  overscroll-behavior: contain;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin: .75rem auto .25rem;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: 0;
  background: var(--d3);
  z-index: 1;
}
.modal-title { font-size: 1.05rem; font-weight: 700; color: var(--w); }
.modal-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--sl);
  transition: all .2s;
}
.modal-close:hover { background: rgba(239,68,68,.15); color: #f87171; }
.modal-body { padding: 1.5rem; }

/* ────────────────────────────────────────────────────────────
   26. LOADING STATES
   ──────────────────────────────────────────────────────────── */
.spinner {
  width: 22px; height: 22px;
  border: 2.5px solid rgba(255,255,255,.15);
  border-top-color: var(--gl);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}
.spinner-sm { width: 16px; height: 16px; border-width: 2px; }
.spinner-lg { width: 40px; height: 40px; border-width: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton {
  background: linear-gradient(90deg, var(--d3) 25%, var(--d4) 50%, var(--d3) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--r-sm);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.page-loader {
  position: fixed; inset: 0;
  background: var(--d);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity .4s, visibility .4s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader .logo-anim {
  font-size: 2.5rem;
  animation: float-logo 1.5s ease-in-out infinite;
}
@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ────────────────────────────────────────────────────────────
   27. LEGAL PAGES (Privacy, Terms, Refund)
   ──────────────────────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(238,242,247,.82);
}
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--w);
  margin: 2rem 0 .75rem;
  font-family: var(--font-sans);
  font-weight: 700;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: .85rem; }
.legal-content ul, .legal-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .85rem;
}
.legal-content li { margin-bottom: .35rem; }
.legal-content a { color: var(--gl); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--li); }
.legal-content .last-updated {
  font-size: .78rem;
  color: var(--sl);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ────────────────────────────────────────────────────────────
   28. UTILITY CLASSES
   ──────────────────────────────────────────────────────────── */
.text-gold  { color: var(--gl); }
.text-white { color: var(--w); }
.text-muted { color: var(--sl); }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.serif  { font-family: var(--font-serif); }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-sm { gap: .5rem; }
.flex-gap-md { gap: 1rem; }
.flex-wrap   { flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 2rem 0;
}
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gl), transparent);
  margin: 2rem 0;
  opacity: .4;
}
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ────────────────────────────────────────────────────────────
   29. ADMIN PANEL BASE (login screen shared)
   ──────────────────────────────────────────────────────────── */
.admin-body {
  font-family: var(--font-sans);
  background: var(--d2);
  color: var(--li);
  min-height: 100vh;
}
.login-screen {
  position: fixed; inset: 0;
  background: var(--d2);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.login-box {
  background: var(--d3);
  border: 1px solid var(--gborder2);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo .ico { font-size: 2.5rem; }
.login-logo h1 { font-size: 1.4rem; font-weight: 700; color: var(--w); margin: .4rem 0 .2rem; font-family: var(--font-sans); }
.login-logo p { font-size: .78rem; color: var(--sl); }
.login-form label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.login-form input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--gborder2);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  color: var(--w);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  margin-bottom: .85rem;
  transition: border-color .2s;
}
.login-form input:focus { border-color: var(--gl); }
.login-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gl), var(--gold));
  color: var(--d);
  padding: 12px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--tr2);
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--gshadow); }
.login-error {
  display: none;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #f87171;
  border-radius: 7px;
  padding: 9px 13px;
  font-size: .82rem;
  text-align: center;
  margin-bottom: .85rem;
}

/* ────────────────────────────────────────────────────────────
   30. RESPONSIVE BREAKPOINTS
   ──────────────────────────────────────────────────────────── */

/* Small phones (< 480px) — base styles above apply */

/* Phones landscape / large phones (≥ 480px) */
@media (min-width: 480px) {
  :root {
    --section-px: 1.5rem;
  }
  .form-row { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

/* Tablets (≥ 640px) */
@media (min-width: 640px) {
  :root {
    --section-py: 5rem;
    --section-px: 2rem;
  }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .modal { border-radius: var(--r-xl); }
  .modal-overlay { align-items: center; }
  .modal { transform: scale(.92); }
  .modal-overlay.open .modal { transform: scale(1); }
  .booking-card { padding: 2rem; }
  .hero-title { max-width: 640px; }
}

/* Tablets wide / small desktops (≥ 768px) */
@media (min-width: 768px) {
  :root {
    --section-px: 2.5rem;
  }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .about-banner { height: 360px; }
  .booking-section { margin-top: -4rem; }
}

/* Desktops (≥ 960px) */
@media (min-width: 960px) {
  :root {
    --section-py: 6rem;
    --section-px: 5%;
  }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .airport-layout { grid-template-columns: 1fr 380px; }
  .hero-ctas { flex-wrap: nowrap; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Large desktops (≥ 1280px) */
@media (min-width: 1280px) {
  :root { --section-px: 7%; }
  .booking-card { padding: 2.5rem; }
  .hero-stats { gap: 2.5rem; }
}

/* ────────────────────────────────────────────────────────────
   31. ANIMATIONS & TRANSITIONS
   ──────────────────────────────────────────────────────────── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
.animate-fiu   { animation: fade-in-up .6s ease both; }
.animate-fi    { animation: fade-in .5s ease both; }
.delay-100     { animation-delay: .1s; }
.delay-200     { animation-delay: .2s; }
.delay-300     { animation-delay: .3s; }
.delay-400     { animation-delay: .4s; }

/* Intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-slide { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ────────────────────────────────────────────────────────────
   32. PRINT STYLES
   ──────────────────────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  #nav, .mob, .footer, .hero-slides, .hero-overlay,
  #cursor, #cursor-ring, .toast-container, .modal-overlay,
  #announcement-bar { display: none !important; }
  .hero { min-height: auto; padding-top: 1cm; }
  .section { padding: .5cm 0; }
  a { color: #000; }
  .booking-card, .feature-card, .testimonial-card {
    border: 1px solid #ccc !important;
    background: #fff !important;
  }
  .section-title, .card-title, .hero-title { color: #000 !important; }
}
