/* ==========================================================================
   HAIRPORT — CSS Design System
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* --- Core Variables --- */
:root {
  /* Colors */
  --bg-darkest: #070708;
  --bg-darker: #0d0d0f;
  --bg-card: rgba(18, 18, 20, 0.6);
  --gold-primary: #D4AF37;
  /* Premium Gold */
  --gold-accent: #e5c158;
  /* Soft Golden Light */
  --gold-champagne: #C5A880;
  /* Metallic Champagne */
  --gold-dark: #8A6D3B;
  /* Dark Rich Gold */
  --gold-glow: rgba(212, 175, 55, 0.2);
  --gold-glow-strong: rgba(212, 175, 55, 0.4);

  --text-light: #F5F5F7;
  /* Off-white */
  --text-muted: #9E9EAF;
  /* Muted Gray */
  --text-dark: #121214;

  --white: #ffffff;
  --success: #2ec4b6;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-gold: rgba(212, 175, 55, 0.25);
  --glass-blur: blur(14px);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Base Reset & Defaults --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-darkest);
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* --- Common Layout Elements --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button,
input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold-champagne);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--gold-primary);
  font-style: italic;
  font-family: var(--font-serif);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 4rem;
}

/* --- Animated Airport Elements --- */
/* Runway Line (Scroll Linked / CSS Animated) */
.runway-line-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.15) 10%, rgba(212, 175, 55, 0.15) 90%, rgba(212, 175, 55, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.runway-line-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  box-shadow: 0 0 15px var(--gold-primary);
  animation: runwayFlow 6s linear infinite;
}

@keyframes runwayFlow {
  0% {
    top: -10%;
  }

  100% {
    top: 110%;
  }
}

/* Ambient Spots */
.ambient-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--gold-glow) 0%, rgba(7, 7, 8, 0) 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.ambient-left {
  top: 10%;
  left: -20%;
}

.ambient-right {
  bottom: 10%;
  right: -20%;
}

/* --- Interactive Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--bg-darkest);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  animation: shine 4s infinite linear;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--bg-darkest);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

@keyframes shine {
  0% {
    left: -100%;
  }

  25% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

/* --- Sticky Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  background: rgba(7, 7, 8, 0.1);
  backdrop-filter: blur(0px);
}

header.scrolled {
  background: rgba(7, 7, 8, 0.85);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

header.scrolled .navbar {
  padding: 0.75rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text span {
  color: var(--gold-primary);
}

.logo-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-champagne);
  border: 1px solid var(--gold-glow-strong);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  margin-left: 1.5rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0;
  z-index: 10;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-darkest);
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7) contrast(1.1);
  transform: scale(1.05);
  animation: slowZoom 30s ease-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(7, 7, 8, 0.9) 80%),
    linear-gradient(to bottom, rgba(7, 7, 8, 0.5) 0%, var(--bg-darkest) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-flight-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-flight-tag i {
  animation: planeFloat 3s ease-in-out infinite alternate;
}

@keyframes planeFloat {
  0% {
    transform: translateY(-2px) rotate(45deg);
  }

  100% {
    transform: translateY(2px) rotate(45deg);
  }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: linear-gradient(to bottom, var(--white) 30%, #a0a0a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--gold-champagne);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-details {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Floating Particles (Hero) */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0.2;
  animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-10vh) translateX(50px) scale(0.5);
    opacity: 0;
  }
}

/* Runway center line inside Hero bottom */
.hero-runway-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.runway-dash {
  width: 2px;
  height: 40px;
  background: repeating-linear-gradient(to bottom, var(--gold-primary) 0, var(--gold-primary) 10px, transparent 10px, transparent 20px);
  animation: runwayScroll 1.5s infinite linear;
}

@keyframes runwayScroll {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 20px;
  }
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 9rem;
  align-items: center;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 2rem;
  border-left: 2px solid var(--gold-primary);
  padding-left: 1.5rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 0.95rem;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.stat-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}

.stat-num span {
  font-size: 2rem;
  margin-left: 0.1rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-image-wrapper {
  position: relative;
}

.about-img-container {
  position: relative;
  z-index: 1;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-img-container img,
.about-img-container iframe {
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
  border: none;
}

.about-img-container img {
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-container:hover img {
  transform: scale(1.03);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--gold-primary);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 2;
  background: rgba(13, 13, 15, 0.85);
  border: 1px solid var(--gold-primary);
  backdrop-filter: var(--glass-blur);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
}

.about-badge .gate {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.about-badge .title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

/* --- Services Section --- */
.services-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.services-tabs {
  display: flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 0.35rem;
  gap: 0.5rem;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  background: var(--gold-primary);
  color: var(--bg-darkest);
}

.services-grid-wrapper {
  position: relative;
}

.services-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.services-pane.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
}

.service-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-glow-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.service-card:hover::before {
  transform: translateX(100%);
  transition: all 0.8s ease;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--gold-glow-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gold-primary);
  color: var(--bg-darkest);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.service-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-price span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-left: 0.25rem;
}

.service-tag-code {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-champagne);
  opacity: 0.8;
}



/* --- Packages Section --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

/* Boarding Pass Aesthetic Card */
.boarding-pass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.boarding-pass-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 160px;
  /* Aligned near the perforated divider */
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  z-index: 3;
}

/* Perforated Cuts */
.boarding-pass-card::before {
  content: '';
  position: absolute;
  bottom: 150px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: var(--bg-darkest);
  border-radius: 50%;
  z-index: 4;
  box-shadow: inset -3px 0 3px rgba(0, 0, 0, 0.5), 1px 0 0 rgba(255, 255, 255, 0.08);
}

.boarding-pass-notch-right {
  position: absolute;
  bottom: 150px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--bg-darkest);
  border-radius: 50%;
  z-index: 4;
  box-shadow: inset 3px 0 3px rgba(0, 0, 0, 0.5), -1px 0 0 rgba(255, 255, 255, 0.08);
}

.boarding-pass-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-glow-strong);
  box-shadow: var(--shadow-premium), 0 0 30px rgba(212, 175, 55, 0.05);
}

.boarding-pass-card.highlighted {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.03);
  box-shadow: var(--shadow-premium), 0 0 40px rgba(212, 175, 55, 0.1);
}

.boarding-pass-card.highlighted::before,
.boarding-pass-card.highlighted .boarding-pass-notch-right {
  box-shadow: inset 0 0 0 transparent, 0 0 0 transparent;
  border: 1px solid var(--gold-primary);
  /* Gives nice visual accent */
}

/* Boarding Pass Header (Ticket details) */
.pass-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pass-flight {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-champagne);
  letter-spacing: 0.1em;
}

.pass-gate {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.boarding-pass-card.highlighted .pass-flight {
  color: var(--gold-primary);
  font-weight: 700;
}

/* Boarding Pass Body */
.pass-body {
  padding: 2.5rem 2rem;
  flex-grow: 1;
}

.pass-class {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pass-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.boarding-pass-card.highlighted .pass-title {
  color: var(--gold-primary);
}

.pass-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.pass-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pass-features li i {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

/* Tear-Off Ticket Stub */
.pass-stub {
  padding: 2rem;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.01);
}

.pass-stub-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stub-price-wrapper {
  display: flex;
  flex-direction: column;
}

.stub-price-lbl {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.stub-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.stub-duration {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: right;
}

/* SVG simulated barcode */
.pass-barcode {
  width: 100%;
  height: 45px;
  background-image: repeating-linear-gradient(90deg,
      var(--white) 0px, var(--white) 2px,
      transparent 2px, transparent 6px,
      var(--white) 6px, var(--white) 10px,
      transparent 10px, transparent 12px,
      var(--white) 12px, var(--white) 13px,
      transparent 13px, transparent 17px,
      var(--white) 17px, var(--white) 21px,
      transparent 21px, transparent 24px);
  opacity: 0.35;
  margin-top: auto;
  transition: var(--transition-smooth);
}

.boarding-pass-card:hover .pass-barcode {
  opacity: 0.6;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.why-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-glow-strong);
  transform: translateY(-5px);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.03);
  border: 1px dashed var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-card-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: var(--bg-darkest);
  border-style: solid;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.team-card {
  position: relative;
  border: 1px solid var(--glass-border);
  background: var(--bg-darker);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.team-card:hover {
  border-color: var(--gold-glow-strong);
  box-shadow: var(--shadow-premium);
}

.team-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-img-box img {
  transform: scale(1.05);
}

.team-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(7, 7, 8, 0.95) 100%);
  z-index: 1;
}

.team-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.team-gate {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.team-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
}

.team-desig {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-champagne);
  margin-bottom: 0.75rem;
}

.team-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* --- Reviews Section --- */
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  text-align: center;
}

.rating-huge {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--gold-primary);
  line-height: 1;
  font-weight: 700;
}

.rating-stars {
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin: 0.5rem 0;
  display: flex;
  gap: 0.25rem;
}

.rating-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Infinite Scroll Carousel Track */
.reviews-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.reviews-carousel-wrapper::before,
.reviews-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-darkest), transparent);
}

.reviews-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-darkest), transparent);
}

.reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  width: 380px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-glow-strong);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.review-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.review-source {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.review-g-logo {
  color: #4285F4;
  font-size: 1.25rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-card-stars {
  color: var(--gold-primary);
  font-size: 0.75rem;
  display: flex;
  gap: 0.15rem;
}

/* --- FAQ Section --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--gold-glow-strong);
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-header {
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  color: var(--bg-darkest);
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  padding: 0 2rem 2.2rem 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Contact & Booking --- */
.contact-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.contact-detail-item:hover .contact-detail-icon {
  background: var(--gold-primary);
  color: var(--bg-darkest);
  border-color: var(--gold-primary);
}

.contact-detail-content h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.map-container {
  width: 100%;
  height: 380px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2);
}

/* --- Booking Section --- */
.booking-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 40px 40px 0;
  border-style: solid;
  border-color: var(--bg-darkest) var(--bg-darkest) var(--gold-primary) var(--gold-primary);
  display: block;
  width: 0;
  z-index: 10;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: var(--transition-fast);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.02);
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

/* Custom select arrow overlay */
.form-group-select::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  color: var(--gold-champagne);
  font-size: 0.7rem;
  pointer-events: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.booking-submit-btn {
  margin-top: 1rem;
  width: 100%;
}

/* Success Ticket overlay */
.booking-success-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 8, 0.98);
  z-index: 100;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.booking-success-container.active {
  display: flex;
  opacity: 1;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.1);
  border: 1px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-ticket {
  width: 100%;
  max-width: 400px;
  background: var(--bg-darker);
  border: 1px solid var(--gold-primary);
  margin-top: 2rem;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  position: relative;
}

.success-ticket::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100%;
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.success-ticket-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
}

.success-ticket-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  text-align: left;
}

.ticket-data-group {
  display: flex;
  flex-direction: column;
}

.ticket-data-lbl {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.ticket-data-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.ticket-data-val.gold {
  color: var(--gold-primary);
}

.success-ticket-stub {
  padding: 1.5rem 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-barcode {
  width: 100%;
  height: 40px;
  background-image: repeating-linear-gradient(90deg,
      var(--gold-primary) 0px, var(--gold-primary) 2px,
      transparent 2px, transparent 5px,
      var(--gold-primary) 5px, var(--gold-primary) 9px,
      transparent 9px, transparent 11px,
      var(--gold-primary) 11px, var(--gold-primary) 12px,
      transparent 12px, transparent 15px,
      var(--gold-primary) 15px, var(--gold-primary) 18px,
      transparent 18px, transparent 20px);
  opacity: 0.75;
}

/* --- Floating Widgets --- */
.floating-widgets {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(13, 13, 15, 0.75);
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.float-whatsapp {
  color: #25D366;
}

.float-whatsapp:hover {
  color: #25D366;
  border-color: #25D366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

.float-call {
  color: var(--gold-champagne);
}

.float-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-darker);
  padding: 2rem 0 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--gold-primary);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--gold-primary);
  color: var(--white);
  background: rgba(212, 175, 55, 0.05);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-baggage-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--gold-primary);
  padding: 1.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tag-serial {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}

.tag-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}


/* --- Instagram Runway Section --- */
#instagram-runway {
  background-color: var(--bg-darkest);
  position: relative;
  z-index: 10;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.instagram-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 8, 0.8);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 1.5rem;
  text-align: center;
  gap: 0.75rem;
}

.instagram-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  transform: translateY(-10px);
  transition: var(--transition-smooth);
}

.instagram-stats {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-light);
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.instagram-stats span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.instagram-stats i {
  color: var(--gold-champagne);
}

.instagram-view-btn {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 1rem;
  border-bottom: 1px solid var(--gold-primary);
  padding-bottom: 2px;
  opacity: 0;
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

/* Hover States */
.instagram-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.instagram-card:hover img {
  transform: scale(1.05);
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.instagram-card:hover .instagram-icon,
.instagram-card:hover .instagram-stats {
  transform: translateY(0);
}

.instagram-card:hover .instagram-view-btn {
  opacity: 1;
}

.instagram-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-instagram-follow {
  padding: 1.2rem 2.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.btn-instagram-follow:hover {
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}


/* ==========================================================================
   Responsive Breakpoints & Adjustments
   ========================================================================== */

@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }

  .about-grid {
    gap: 3rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto 3rem auto;
  }

  .boarding-pass-card::before,
  .boarding-pass-notch-right,
  .boarding-pass-card::after {
    bottom: 140px;
  }

  .pass-stub {
    height: 140px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-booking-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .navbar {
    padding: 1.25rem 0;
  }

  .mobile-nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 7, 8, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-btn {
    margin-left: 0;
    width: 100%;
    margin-top: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image-wrapper {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .about-badge {
    bottom: -15px;
    left: -15px;
    padding: 1rem 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }



  .instagram-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto 2.5rem auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
  }

  .footer-col:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .booking-card {
    padding: 2.5rem 1.5rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .floating-widgets {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* ==========================================================================
   CSS Native Reveal Animations & Keyframes
   ========================================================================== */

/* JS Scroll Reveal Base */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-enabled .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggers for cascading elements */
.reveal-stagger-1 {
  transition-delay: 0.1s;
}

.reveal-stagger-2 {
  transition-delay: 0.2s;
}

.reveal-stagger-3 {
  transition-delay: 0.3s;
}

.reveal-stagger-4 {
  transition-delay: 0.4s;
}

.reveal-stagger-5 {
  transition-delay: 0.5s;
}

.reveal-stagger-6 {
  transition-delay: 0.6s;
}

/* Hero Entrance Transitions */
.hero-flight-tag {
  opacity: 0;
  animation: slideDownFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title {
  opacity: 0;
  animation: titleExpandFade 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-tagline {
  opacity: 0;
  animation: slideUpFade 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-details {
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.hero-actions .btn {
  opacity: 0;
}

.hero-actions .btn:first-child {
  animation: scalePopIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

.hero-actions .btn:last-child {
  animation: scalePopIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.15s forwards;
}

.hero-runway-indicator {
  opacity: 0;
  animation: fadeIn 0.8s ease 1.4s forwards;
}

/* Keyframes */
@keyframes slideDownFade {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleExpandFade {
  0% {
    opacity: 0;
    letter-spacing: 0.3em;
    transform: scale(0.97);
  }

  100% {
    opacity: 1;
    letter-spacing: 0.15em;
    transform: scale(1);
  }
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scalePopIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}