/* ============================================
   JETERA — Complete Stylesheet
   Luxury Private Jet Booking Experience
   GPU-accelerated / Mobile-optimized
   ============================================ */

/* ===== 1. CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --bg-primary: #050508;
  --bg-surface: #0a0a10;
  --bg-elevated: #111118;
  --bg-card: #0d0d14;
  --bg-card-hover: #141420;

  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #8a7340;
  --gold-glow: rgba(201, 169, 98, 0.35);
  --gold-subtle: rgba(201, 169, 98, 0.08);

  --white: #f0ebe3;
  --white-soft: #c8c3ba;
  --text-secondary: #6b6b78;
  --text-muted: #44444f;
  --border: rgba(201, 169, 98, 0.12);
  --border-hover: rgba(201, 169, 98, 0.3);

  --green: #2ed47a;
  --green-glow: rgba(46, 212, 122, 0.3);
  --red: #e74c3c;
  --red-glow: rgba(231, 76, 60, 0.3);

  /* Typography */
  --font-display: 'Italiana', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Sora', sans-serif;
  --font-mono: 'Bebas Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1320px, 92vw);
  --gap: clamp(16px, 2vw, 32px);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.5s;
  --duration-fast: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-primary);
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-primary); }
html::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-soft);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}
a:hover { color: var(--gold-light); }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}
input::placeholder { color: var(--text-muted); }

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.price {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

.price-old {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ===== 4. LAYOUT ===== */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .label {
  margin-bottom: 12px;
  display: block;
}

.section-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-secondary);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* ===== 5. NOISE OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ===== 6. LOADING SCREEN ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 40px;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

/* ===== 7. NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 20px 0;
  transition: background var(--duration) var(--ease), padding var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease);
}
.nav.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary) !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
  overflow: hidden;
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: var(--bg-primary) !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease), opacity var(--duration-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(30px);
  z-index: 8999;
  padding: 40px;
  flex-direction: column;
  gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
}

/* ===== 8. HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5,5,8,0.4) 0%,
    rgba(5,5,8,0.6) 40%,
    rgba(5,5,8,0.95) 85%,
    var(--bg-primary) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent {
  font-family: var(--font-display);
  color: var(--gold);
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* Hero Search Bar */
.hero-search {
  display: flex;
  align-items: stretch;
  background: rgba(10, 10, 16, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  max-width: 780px;
  margin: 0 auto;
}
.hero-search-field {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.hero-search-field:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.hero-search-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-search-field input,
.hero-search-field select {
  background: transparent;
  border: none;
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--white);
}
.hero-search-field input:focus,
.hero-search-field select:focus {
  box-shadow: none;
}
.hero-search-field select {
  -webkit-appearance: none;
}
.hero-search-field select option {
  background: var(--bg-elevated);
  color: var(--white);
}
.hero-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.hero-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--gold-glow);
}

/* ===== 9. GLOBE SECTION ===== */
.globe-section {
  position: relative;
  overflow: hidden;
}
.globe-container {
  width: 100%;
  height: clamp(400px, 60vw, 700px);
  position: relative;
  cursor: grab;
}
.globe-container:active { cursor: grabbing; }
.globe-container canvas {
  width: 100% !important;
  height: 100% !important;
}
.globe-info {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 16, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: none;
  align-items: center;
  gap: 24px;
  min-width: 400px;
  z-index: 10;
}
.globe-info.active { display: flex; }
.globe-info-route {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
}
.globe-info-details {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.globe-info-price {
  margin-left: auto;
}
.globe-hint {
  text-align: center;
  padding-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== 10. FEATURE CARDS ===== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-subtle);
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== 11. FLEET CAROUSEL ===== */
.fleet-scroll {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 20px 0;
}
.fleet-scroll::-webkit-scrollbar { display: none; }

.jet-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.jet-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
}
.jet-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.jet-card:hover .jet-card-img {
  transform: scale(1.08);
}
.jet-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.jet-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.jet-card-body {
  padding: 24px;
}
.jet-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.jet-card-model {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.jet-card-specs {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.jet-card-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.jet-card-price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--gold);
}
.jet-card-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* ===== 12. PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, rgba(201,169,98,0.08) 0%, rgba(201,169,98,0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,98,0.06), transparent);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-33%); }
  100% { transform: translateX(33%); }
}
.promo-code {
  display: inline-block;
  padding: 12px 32px;
  background: var(--bg-primary);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin: 20px 0;
  position: relative;
  user-select: all;
}
.promo-discount {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--green);
  text-shadow: 0 0 40px var(--green-glow);
  line-height: 1;
}

/* ===== 13. REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-primary);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}
.review-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--white-soft);
  margin-bottom: 14px;
}
.review-flight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--gold-subtle);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--green);
  margin-left: 8px;
}

/* ===== 14. DESTINATIONS / FLIGHT CARDS ===== */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--gap);
}
.flight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.flight-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.flight-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.flight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.flight-card:hover .flight-card-img img {
  transform: scale(1.1);
}
.flight-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.flight-card-viewers {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 12px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
  animation: pulse-soft 2s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.flight-card-body {
  padding: 24px;
}
.flight-route {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.flight-details {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.flight-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.flight-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.flight-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: var(--bg-primary);
}

/* Selected states for booking options */
.booking-flight-option {
  cursor: pointer;
  position: relative;
}
.booking-flight-option.selected {
  border-color: var(--gold) !important;
  background: var(--gold-subtle);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 30px rgba(201, 169, 98, 0.12);
}
.booking-flight-option.selected::after {
  content: '✓ SÉLECTIONNÉ';
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.booking-jet-option {
  cursor: pointer;
  position: relative;
}
.booking-jet-option.selected {
  border-color: var(--gold) !important;
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 30px rgba(201, 169, 98, 0.12);
}
.booking-jet-option.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ===== 15. BOOKING FORM ===== */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all var(--duration-fast) var(--ease);
}
.booking-step.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-subtle);
}
.booking-step.done {
  color: var(--green);
  border-color: rgba(46, 212, 122, 0.3);
}
.booking-step-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  font-size: 0.75rem;
  font-weight: 700;
}
.booking-step.active .booking-step-num {
  background: var(--gold);
  color: var(--bg-primary);
}
.booking-step.done .booking-step-num {
  background: var(--green);
  color: var(--bg-primary);
}

.booking-panel {
  display: none;
  animation: fadeSlideUp 0.5s var(--ease) forwards;
}
.booking-panel.active { display: block; }

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group.full { grid-column: 1 / -1; }

/* Extras toggles */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
}
.extra-item:hover {
  border-color: var(--border-hover);
}
.extra-item.selected {
  border-color: var(--gold);
  background: var(--gold-subtle);
}
.extra-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.extra-info {
  flex: 1;
}
.extra-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
}
.extra-price {
  font-size: 0.78rem;
  color: var(--gold);
}
.extra-toggle {
  width: 44px;
  height: 24px;
  background: var(--bg-elevated);
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  transition: background var(--duration-fast) var(--ease);
}
.extra-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
}
.extra-item.selected .extra-toggle {
  background: var(--gold);
}
.extra-item.selected .extra-toggle::after {
  transform: translateX(20px);
  background: var(--bg-primary);
}

/* Booking summary sidebar */
.booking-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.booking-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.summary-row .value {
  color: var(--gold-light);
  font-weight: 600;
}
.summary-discount {
  color: var(--green) !important;
}

/* Promo code input */
.promo-input-wrap {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow: hidden;
}
.promo-input-wrap input {
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 12px 14px;
}
.promo-apply-btn {
  padding: 12px 16px;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease);
}
.promo-apply-btn:hover { transform: translateY(-1px); }
.promo-success {
  display: none;
  padding: 12px 16px;
  background: rgba(46, 212, 122, 0.1);
  border: 1px solid rgba(46, 212, 122, 0.3);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  align-items: center;
  gap: 8px;
}
.promo-success.show { display: flex; }

/* Next step button */
.booking-next-btn {
  display: inline-block;
  padding: 16px 32px;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.booking-next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

/* Final confirm button */
.booking-final-confirm {
  display: block;
  width: 100%;
  padding: 18px;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.booking-final-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

/* Booking confirmation overlay */
.booking-confirmation {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 40px;
}
.booking-confirmation.show { display: flex; }
.booking-confirmation .check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.booking-confirmation h2 {
  font-size: 2.2rem;
}
.booking-confirmation .ref {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ===== 16. FLEET / PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(201, 169, 98, 0.15);
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}
.pricing-card-featured-tag {
  background: var(--gold);
  color: var(--bg-primary);
  text-align: center;
  padding: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.pricing-card-body {
  padding: 28px;
}
.pricing-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.pricing-card-category {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--white-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
  color: var(--gold);
  font-size: 0.9rem;
}
.pricing-card-price {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.pricing-card-price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.pricing-card-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-top: 20px;
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.pricing-card-btn:hover, .pricing-card.featured .pricing-card-btn {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ===== 17. ABOUT ===== */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-primary));
}
.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--border));
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 1rem;
  color: var(--white-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-primary);
  margin: 0 auto 18px;
}
.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats counter */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
  text-align: center;
  padding: 48px 0;
}
.stat-item .stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== 18. FOOTER ===== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-contact {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 2;
}
.footer-contact a { color: var(--gold); }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: border-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== 19. COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(580px, 92vw);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 8000;
  backdrop-filter: blur(20px);
  transition: transform 0.6s var(--ease);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex: 1;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-accept {
  padding: 10px 20px;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.78rem;
  border-radius: var(--radius);
  transition: transform var(--duration-fast) var(--ease);
}
.cookie-accept:hover { transform: translateY(-1px); }
.cookie-decline {
  padding: 10px 20px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.78rem;
  border-radius: var(--radius);
  transition: border-color var(--duration-fast) var(--ease);
}
.cookie-decline:hover { border-color: var(--gold); }

/* ===== 20. CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 7000;
}
.chat-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px var(--gold-glow);
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
  font-size: 1.3rem;
}
.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px var(--gold-glow);
}
.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: none;
  animation: fadeSlideUp 0.3s var(--ease) forwards;
}
.chat-window.open { display: block; }
.chat-window-header {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-window-header .status {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-soft 2s infinite;
}
.chat-window-header span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bg-primary);
}
.chat-messages {
  padding: 20px;
  min-height: 180px;
}
.chat-message {
  background: var(--bg-card);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--white-soft);
  line-height: 1.6;
  margin-bottom: 10px;
}
.chat-message .sender {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 4px;
}
.chat-input-wrap {
  display: flex;
  border-top: 1px solid var(--border);
}
.chat-input-wrap input {
  flex: 1;
  border: none;
  border-radius: 0;
  background: var(--bg-surface);
  padding: 14px 16px;
  font-size: 0.85rem;
}
.chat-input-wrap input:focus { box-shadow: none; }
.chat-send-btn {
  padding: 14px 18px;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== 21. NOTIFICATION TOASTS ===== */
.toast-container {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 7500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--white-soft);
  backdrop-filter: blur(16px);
  transform: translateX(-120%);
  animation: toastIn 0.5s var(--ease) forwards, toastOut 0.5s var(--ease) 4.5s forwards;
  max-width: 360px;
}
.toast-icon {
  font-size: 1.2rem;
}
@keyframes toastIn {
  to { transform: translateX(0); }
}
@keyframes toastOut {
  to { transform: translateX(-120%); opacity: 0; }
}

/* ===== 22. VISITORS COUNTER ===== */
.visitors-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(46, 212, 122, 0.08);
  border: 1px solid rgba(46, 212, 122, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
}
.visitors-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-soft 1.5s infinite;
}

/* ===== 23. CONFETTI ===== */
.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
}
.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
}

/* ===== 24. MAP SECTION ===== */
.map-container {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  position: relative;
}

/* ===== 25. PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,98,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== 26. ANIMATIONS & KEYFRAMES ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 40px var(--gold-glow), 0 0 60px rgba(201,169,98,0.15); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Reveal animations (triggered by JS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Count up animation */
.count-up {
  display: inline-block;
}

/* ===== 27. RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  .hero-search {
    flex-direction: column;
    max-width: 100%;
  }
  .hero-search-field::after { display: none; }

  .features { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .flights-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }

  .booking-steps {
    flex-wrap: wrap;
    gap: 6px;
  }
  .booking-step span:not(.booking-step-num) { display: none; }

  .globe-container { height: 350px; }
  .globe-info {
    min-width: unset;
    width: 90vw;
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 12px;
    width: 95vw;
  }

  .chat-window { width: 90vw; right: -12px; }

  .toast { max-width: 85vw; }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 60px;
  }
  .hero { min-height: 90vh; }
  .hero-sub { font-size: 0.9rem; }
  .jet-card { flex: 0 0 280px; }
}

/* ===== 28. REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== 29. UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.gap-sm { gap: 12px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
}

/* Booking layout */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}
