:root {
  /* Deep Backgrounds & Shading (Derived from the deep ocean blues in the globe) */
  --deep-navy: #0d2852;       /* Deepest blue in the globe's oceans */
  --midnight: #061329;        /* Near-black dark blue for main dark backgrounds */
  
  /* Primary Branding Greens (Sampled from the "PRESTIGE" text and airplane) */
  --forest-green: #11531b;    /* Deep, rich shadow green from the text base */
  --emerald: #1e7d32;         /* Vibrant mid-tone green from the airplane trail */
  --emerald-bright: #39b54a;  /* Bright, luminous green from the airplane and highlights */
  
  /* Earthy Accents (Replacing the golds with the soft earth/gold tones from the continents) */
  --gold: #bca061;            /* Warm, muted continent tan/gold */
  --gold-light: #dfcfa5;      /* Light, sandy continent highlight */
  
  /* Light Neutrals & Whites (Sampled from the clouds and background) */
  --white: #f5f9fc;           /* Crisp, white with a faint blue sky undertone */
  --white-pure: #ffffff;      /* Pure white */
  
  /* Grays & Supporting Interface Tones (Blended blues/greens for UI depth) */
  --silver: #97b1ca;          /* Soft, atmospheric sky blue-gray */
  --gray-dark: #142236;       /* Deep interface gray with a strong blue undertone */
  --gray-mid: #253b59;        /* Medium interface slate blue */
  
  /* Glassmorphism Utilities (Updated to look clean over the new blue/green backgrounds) */
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--midnight);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── UTILITIES ─── */
.serif { font-family: 'Playfair Display', serif; }
.gold { color: var(--gold); }
.emerald { color: var(--emerald-bright); }

.section-label {
  font-size: 0.875rem;     /* text-sm */
  letter-spacing: 0.1em;   /* tracking-widest */
  text-transform: uppercase;
  margin-bottom: 1rem;     /* mb-4 */
  display: block;
  color: var(--gold);
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  color: var(--white-pure);
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 40px rgba(61, 170, 110, 0.4); 
  color: var(--midnight);
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 7px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 9, 17, 0.4);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.scrolled {
  background: rgba(6, 9, 17, 0.85);
  backdrop-filter: blur(25px);
  padding: 6px 4vw;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo img {
  height: 75px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(61,170,110,0.3));
  transition: all 0.5s ease;
}

#navbar.scrolled .nav-logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: rgba(248, 246, 240, 0.7);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald-bright), var(--gold));
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links > li:hover > a {
  color: var(--white-pure);
}

.nav-links > li:hover > a::after {
  right: 0;
}

/* Dropdown Arrows */
.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.35s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--gold-light);
  opacity: 1;
}

/* Desktop Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.99);
  width: 280px;
  background: rgba(10, 14, 26, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(25px);
  padding: 1rem 0.5rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dropdown-menu-support {
  width: 320px;
}

/* Invisible cursor bridge to make transition smooth and user-friendly */
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -15px; /* Bridges any potential gap between nav bar and menu */
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
  pointer-events: auto;
  z-index: -1;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(248, 246, 240, 0.7);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.dropdown-menu a:hover {
  background: rgba(45, 122, 79, 0.08);
  color: var(--white-pure);
}

.dropdown-icon {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-top: 0.15rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover .dropdown-icon {
  transform: scale(1.15) rotate(-3deg);
  color: var(--emerald-bright);
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.2;
}

.dropdown-desc {
  font-size: 0.65rem;
  color: rgba(248, 246, 240, 0.45);
  line-height: 1.3;
}

/* Nav Actions Section */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  color: var(--white-pure) !important;
  padding: 0.65rem 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.2);
}

.btn-nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-nav-cta:hover::before {
  opacity: 1;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-nav-cta span {
  position: relative;
  z-index: 1;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
  z-index: 1010;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--gold-light);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--gold-light);
}

/* ─── MOBILE DRAWER ─── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  z-index: 1005;
  background: rgba(6, 9, 17, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-logo-img {
  height: 48px;
  width: auto;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.3s ease;
}

.drawer-close:hover {
  color: var(--gold);
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-link {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.8);
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}

.drawer-link:hover {
  color: var(--gold-light);
}

/* Mobile Accordions */
.drawer-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.drawer-accordion-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.8);
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.drawer-accordion-btn:hover {
  color: var(--gold-light);
}

.accordion-arrow {
  font-size: 0.8rem;
  transition: transform 0.4s ease;
}

.drawer-accordion.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--gold-light);
}

.drawer-sublinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1rem;
  margin-top: 0.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-accordion.active .drawer-sublinks {
  max-height: 250px; /* Expands dynamically */
}

.drawer-sublink {
  font-size: 0.8rem;
  color: rgba(248, 246, 240, 0.5);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.drawer-sublink:hover {
  color: var(--white-pure);
}

/* Drawer Footer */
.drawer-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.drawer-btn-cta {
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  color: var(--white-pure);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.9rem;
  text-align: center;
  border-radius: 0;
  transition: all 0.3s ease;
}

.drawer-btn-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}

.drawer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-contact-item {
  color: rgba(248, 246, 240, 0.5);
  font-size: 0.72rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease;
}

.drawer-contact-item:hover {
  color: var(--gold-light);
}

.drawer-contact-item i {
  color: var(--gold);
}


/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(45,122,79,0.03) 1px, transparent 0.5px), linear-gradient(90deg, rgba(45,122,79,0.03) 1px, transparent 0.5px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 20%);
}

.hero-plane {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.07;
  filter: blur(0.5px);
  z-index: 1;
}

.hero-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  padding-top: 100px;

  align-items: center;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.hero-text { max-width: 800px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}



.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subhead {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(248,246,240,0.65);
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.3rem;
}

/* ─── BOOKING WIDGET ─── */
#booking {
  padding: 5rem 4vw;
  position: relative;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--gray-dark) 100%);
}

.booking-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(30px);
  padding: 3rem 3.5rem;
  position: relative;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--emerald-bright) 70%, transparent 100%);
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking-tabs {
  display: flex;
  gap: 0;
}

.booking-tab {
  padding: 0.5rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  background: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.booking-tab.active {
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  color: var(--white-pure);
  border-color: transparent;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.booking-field {
  background: rgba(10,14,26,0.8);
  padding: 1.2rem 1.5rem;
  position: relative;
}

.booking-field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.booking-field input,
.booking-field select {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  cursor: pointer;
}

.booking-field input::placeholder {
  color: rgba(248,246,240,0.3);
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.booking-field select option {
  background: var(--deep-navy);
  color: var(--white);
}

.booking-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  opacity: 0.6;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.booking-field:focus-within .booking-icon {
  opacity: 1;
  color: var(--emerald-bright);
}

.booking-search-btn {
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  border: none;
  color: var(--white-pure);
  padding: 0 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.booking-search-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}

.booking-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  color: rgba(248,246,240,0.5);
  letter-spacing: 0.08em;
}

.booking-feature::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--emerald-bright);
  font-size: 0.7rem;
  margin-right: 0.5rem;
}

/* ─── ABOUT ─── */
#about {
  padding: 8rem 4vw;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.about-bg-accent {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text { position: relative; }

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.7;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.about-body {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(248,246,240,0.6);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(45,122,79,0.15), rgba(26,74,46,0.15));
  border: 1px solid rgba(45,122,79,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar:hover .pillar-icon {
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  border-color: transparent;
  color: var(--white-pure);
  box-shadow: 0 4px 12px rgba(30, 125, 50, 0.25);
  transform: translateY(-2px);
}

.pillar-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.pillar-desc {
  font-size: 0.75rem;
  color: rgba(248,246,240,0.5);
  line-height: 1.5;
}


/* ─── DESTINATIONS ─── */
#destinations {
  padding: 8rem 4vw;
  background: var(--gray-dark);
  position: relative;
}

.section-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.dest-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--deep-navy);
}

.dest-card:first-child {
  grid-row: 1 / 3;
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  filter: brightness(0.55);
}

.dest-card:hover .dest-card-bg {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,17,0.9) 0%, transparent 60%);
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.dest-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.dest-card-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--white-pure);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dest-card-info {
  font-size: 0.7rem;
  color: rgba(248, 246, 240, 0.55);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.dest-card-info span::before {
  content: '✈';
  margin-right: 0.4rem;
  color: var(--emerald-bright);
}

.dest-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.dest-card-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}

.dest-card:hover .dest-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.dest-card-cta:hover::after { transform: translateX(4px); }

/* Destination backgrounds using CSS gradients as placeholders */
.dest-bahamas .dest-card-bg { 
    background-color: #0d4a6e; 
    background-image: url('../images/cap-haitien.png'); 
}
.dest-jamaica .dest-card-bg { 
    background-color: #1a5c2a; 
    background-image: url('../images/montego-bay.jpg'); 
}

.dest-cayman .dest-card-bg { 
    background-color: #1a3d5c; 
    background-image: url('../images/cayman.jpg'); 
}
.dest-aruba .dest-card-bg { 
    background-color: #c4740f; 
    background-image: url('../images/abc-island.jpg'); 
}
.dest-turks .dest-card-bg { 
    background-color: #0a5a7a; 
    background-image: url('../images/turks-and-caicos.jpg'); 
}

/* ─── WHY US ─── */
#why {
  padding: 8rem 4vw;
  background: var(--midnight);
  position: relative;
}

.why-grid {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.04);
}

.why-card {
  background: var(--midnight);
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transition: right 0.5s ease;
}

.why-card:hover::after { right: 0; }

.why-card:hover {
  background: var(--gray-dark);
}

.why-icon {
  font-size: 2.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover .why-icon {
  color: var(--gold-light);
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 8px rgba(232, 201, 122, 0.4));
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.why-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.5);
  font-weight: 300;
}

/* ─── FLEET ─── */
#fleet {
  padding: 8rem 4vw;
  background: var(--gray-dark);
  position: relative;
  overflow: hidden;
}

.fleet-showcase {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.fleet-specs {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

.spec-item {
  flex: 1;
  background: rgba(6,9,17,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.8rem;
  text-align: center;
}

.spec-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
}

.spec-key {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.4);
  margin-top: 0.2rem;
  display: block;
}

.fleet-aircraft {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aircraft-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.aircraft-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--emerald), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aircraft-item.active,
.aircraft-item:hover {
  background: rgba(45,122,79,0.06);
  border-color: rgba(45,122,79,0.25);
}

.aircraft-item.active::before,
.aircraft-item:hover::before { opacity: 1; }

.aircraft-icon {
  font-size: 1.4rem;
  color: var(--gold-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.aircraft-item:hover .aircraft-icon,
.aircraft-item.active .aircraft-icon {
  color: var(--white-pure);
  opacity: 1;
}

.aircraft-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}

.aircraft-type {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-top: 0.2rem;
}

.aircraft-range {
  margin-left: auto;
  text-align: right;
}

.range-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
}

.range-label {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,246,240,0.35);
  display: block;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: 8rem 4vw;
  background: linear-gradient(135deg, var(--midnight), var(--gray-dark), var(--midnight));
  position: relative;
}

.testimonial-slider-container {
  max-width: 1400px;
  margin: 4rem auto 0;
  position: relative;
  padding: 0 4.5rem;
}

.testimonial-swiper {
  width: 100%;
  padding: 1.5rem 0.5rem 4.5rem !important;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(201, 168, 76, 0.05);
}

/* Custom Premium Navigation Buttons */
.custom-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-swiper-nav i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.custom-swiper-nav:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--midnight);
  box-shadow: 0 0 20px rgba(188, 160, 97, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.swiper-button-prev.custom-swiper-nav:hover i {
  transform: translateX(-2px);
}

.swiper-button-next.custom-swiper-nav:hover i {
  transform: translateX(2px);
}

/* Position arrows correctly */
.swiper-button-prev.custom-swiper-nav {
  left: 0.5rem;
}

.swiper-button-next.custom-swiper-nav {
  right: 0.5rem;
}

/* Remove swiper default navigation arrow fonts */
.custom-swiper-nav::after {
  display: none !important;
}

/* Elegant Glowing Pagination Bullets */
.testimonial-swiper .swiper-pagination-bullets {
  bottom: 1rem !important;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--silver);
  opacity: 0.25;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  margin: 0 6px !important;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(188, 160, 97, 0.6);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.star {
  color: var(--gold);
  font-size: 0.8rem;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 246, 240, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white-pure);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.author-title {
  font-size: 0.68rem;
  color: rgba(248, 246, 240, 0.4);
  margin-top: 0.2rem;
}

.author-route {
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-bright);
}

/* ─── LUXURY EXPERIENCE ─── */
#experience {
  padding: 8rem 4vw;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.exp-bg {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,79,0.05) 0%, transparent 70%);
}

.experience-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.exp-feature {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.exp-feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exp-feature:hover::after { opacity: 1; }

.exp-feature:hover {
  background: rgba(45,122,79,0.04);
  border-color: rgba(45,122,79,0.2);
}

.exp-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-feature:hover .exp-icon {
  color: var(--gold-light);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(232, 201, 122, 0.3));
}

.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.exp-desc {
  font-size: 0.76rem;
  line-height: 1.7;
  color: rgba(248, 246, 240, 0.5);
  font-weight: 300;
}

.experience-visual {
  position: relative;
}


/* ─── CTA BANNER ─── */
#cta {
  padding: 8rem 4vw;
  background: linear-gradient(135deg, rgba(17, 83, 27, 0.85) 0%, rgba(6, 19, 41, 0.85) 50%, rgba(17, 83, 27, 0.85) 100%), url('../images/airline-3.jpg');
  background-size: cover;
  background-position: center;
  animation: gradientShift 8s ease-in-out infinite;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.8);
  margin-bottom: 1.5rem;
  display: block;
}

.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white-pure);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-headline em { color: var(--gold-light); font-style: italic; }

.cta-subtext {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-phone-link:hover { color: var(--white-pure); }

.cta-phone-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,240,0.4);
}


/* ─── FOOTER ─── */
footer {
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 4vw 2rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(61,170,110,0.2));
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 1rem;
}

.footer-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  outline: none;
}

.footer-input::placeholder { color: var(--text-muted); }
.footer-input:focus { border-color: rgba(45,122,79,0.4); }

.footer-sub-btn {
  background: linear-gradient(135deg, var(--emerald), var(--forest-green));
  border: none;
  color: var(--white-pure);
  padding: 0 1.2rem;
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-sub-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact-text strong {
  color: var(--text-primary);
  display: block;
  font-weight: 500;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { display: none !important; }
  .btn-nav-cta { display: none !important; }
  .hamburger { display: flex !important; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-row: auto; grid-column: span 2; height: 300px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .fleet-showcase { grid-template-columns: 1fr; }
  .experience-layout { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-search-btn { padding: 1rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-counters { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .experience-features { grid-template-columns: 1fr; }
}

/* ─── PREMIUM BOOKING FORM REDESIGN STYLE ADDITIONS ─── */
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

#booking-success i {
  animation: scaleUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleUp {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.booking-field.error-border {
  border-color: rgba(239, 68, 68, 0.5) !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

/* ─── GLOBAL BOOKING MODAL STYLES ─── */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4vw;
  background: rgba(6, 19, 41, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.booking-modal-card-container {
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  padding: 3.5rem 4rem;
}

.booking-modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-close-btn:hover {
  color: var(--white-pure);
  transform: rotate(90deg) scale(1.1);
}

/* Custom scrollbar for modal card */
.booking-modal-card-container::-webkit-scrollbar {
  width: 6px;
}
.booking-modal-card-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.booking-modal-card-container::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* Body lock behavior to prevent page scroll when modal is active */
body.booking-modal-open {
  overflow: hidden !important;
}

/* ─── RESPONSIVE WIDGET & MODAL IMPROVEMENTS ─── */
@media (max-width: 768px) {
  .booking-modal-backdrop {
    padding: 1rem 0.5rem !important;
    align-items: flex-end !important; /* Mobile bottom sheet style */
  }

  .booking-modal-card-container {
    padding: 2.5rem 1.25rem 1.5rem 1.25rem !important;
    max-height: 94vh !important;
    border-radius: 1.5rem 1.5rem 0 0 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5) !important;
    width: 100% !important;
  }

  .booking-modal-close-btn {
    top: 1rem !important;
    right: 1.25rem !important;
    font-size: 1.4rem !important;
  }

  .booking-header {
    margin-bottom: 1.75rem !important;
  }

  .booking-header h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    margin-top: 0.25rem !important;
    max-width: calc(100% - 30px) !important;
  }

  /* Compact progress bar */
  #std-booking-form > div:first-child {
    margin-bottom: 1.25rem !important;
  }

  #std-booking-form #step-badge-1,
  #std-booking-form #step-badge-2 {
    width: 1.75rem !important;
    height: 1.75rem !important;
    font-size: 0.8rem !important;
  }

  #std-booking-form #step-label-1,
  #std-booking-form #step-label-2 {
    font-size: 0.65rem !important;
  }

  #step-line {
    width: 2.5rem !important;
  }

  /* Horizontally scrollable premium tabs on mobile */
  .booking-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important; /* Firefox */
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }

  .booking-tabs::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
  }

  .booking-tab {
    flex: 1 0 auto !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.65rem !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    background: none !important;
    border-radius: 0 !important;
  }

  .booking-tab.active {
    background: none !important;
    border-bottom: 2px solid var(--emerald-bright) !important;
    color: var(--emerald-bright) !important;
  }

  /* Compact fields */
  .booking-field {
    padding: 0.85rem 1.1rem !important;
  }

  .booking-field label {
    font-size: 0.55rem !important;
    margin-bottom: 0.3rem !important;
  }

  .booking-field input, 
  .booking-field select {
    font-size: 0.82rem !important;
  }

  .booking-features {
    gap: 0.75rem 1.25rem !important;
    margin-top: 1rem !important;
    justify-content: center !important;
  }

  .booking-feature {
    font-size: 0.62rem !important;
  }
}

/* Extra small viewport optimizations */
@media (max-width: 380px) {
  .booking-modal-backdrop {
    padding: 0.5rem 0.25rem !important;
  }
  .booking-modal-card-container {
    padding: 2.25rem 1rem 1.25rem 1rem !important;
    max-height: 96vh !important;
  }
  .booking-tab {
    padding: 0.5rem 0.9rem !important;
  }
}