/* ==========================================================================
   PHARAOH WANDERLUST GROUP (PWG) — CLEAN LIQUID GLASS DESIGN SYSTEM
   Base Navy: #0F172A | Deep Space: #070C18 | Refined Gold: #FFC94A | Soft Gray: #94A3B8
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Color Tokens */
  --bg-navy: #0F172A;
  --bg-navy-dark: #070C18;
  --bg-navy-light: #1E293B;
  --accent-gold: #FFC94A;
  --text-muted: #94A3B8;
  --text-heading: #F8FAFC;
  --text-dark: #0F172A;
  
  /* Liquid Glass Transparency Tokens */
  --card-glass-bg: rgba(255, 255, 255, 0.05);
  --dock-glass-bg: rgba(245, 247, 252, 0.42);
  --glass-blur: blur(40px) saturate(220%);
  --border-subtle: rgba(255, 255, 255, 0.14);
  --border-hover: rgba(255, 255, 255, 0.32);
  --border-gold-subtle: rgba(255, 201, 74, 0.35);
  
  /* Motion.dev Animation Physics Tokens */
  --ease-motion: cubic-bezier(0.25, 1, 0.5, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-navy);
  color: var(--text-heading);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% -20%, #1E293B 0%, #0F172A 60%, #070C18 100%);
  opacity: 1;
}

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

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

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

.phone-number, .nowrap {
  white-space: nowrap !important;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

/* --- SINGLE PAGE APPLICATION VIEW TRANSITIONS --- */
.page-view {
  display: none;
  opacity: 0;
  transform: scale(0.985) translateY(6px);
  transition: opacity 0.26s var(--ease-motion), transform 0.26s var(--ease-motion);
  will-change: opacity, transform;
}

.page-view.active-view {
  display: block;
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* --- Floating Ambient Orbs Canvas --- */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  animation: floatOrb 28s infinite alternate var(--ease-motion);
}

.orb-1 {
  top: -10%;
  left: 20%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 201, 74, 0.25) 0%, rgba(15, 23, 42, 0) 70%);
}

.orb-2 {
  bottom: -15%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(30, 41, 59, 0.8) 0%, rgba(255, 201, 74, 0.15) 100%);
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- Layout Container --- */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* --- macOS FLOATING LIQUID DOCK --- */
.dock-header {
  position: fixed;
  top: 1.25rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.dock-container {
  pointer-events: auto;
  background: var(--dock-glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.25), inset 0 1.5px 0.5px rgba(255, 255, 255, 0.85);
  height: 52px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dock-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.85rem;
  border-right: 1px solid rgba(15, 23, 42, 0.15);
}

.dock-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.dock-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}

/* Gliding Active Pill */
.dock-active-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #FFC94A;
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease-motion), width 0.3s var(--ease-motion), opacity 0.2s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.dock-item {
  padding: 0.45rem 1.05rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  border-radius: 9999px;
  transition: color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  text-decoration: none;
  background: transparent;
  border: none;
}

.dock-item:not(.active):hover {
  color: rgba(15, 23, 42, 0.65);
}

.dock-item.active {
  color: #0F172A;
  font-weight: 700;
}

.dock-item.active:hover {
  color: #0F172A !important;
  opacity: 1 !important;
}

/* SLEEK LIQUID GLASS DROPDOWN MENU (HOVER ONLY) */
.dock-dropdown-wrapper {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}

.dock-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 0.4rem;
  min-width: 185px;
  box-shadow: 0 12px 30px -6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s var(--ease-motion);
  z-index: 1100;
}

.dock-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.dock-dropdown-wrapper:hover .dock-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dock-dropdown-item {
  display: block;
  padding: 0.55rem 0.9rem;
  color: #0F172A;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.dock-dropdown-item:not(.active):hover {
  background: rgba(255, 201, 74, 0.25);
  color: #0F172A;
}

.dock-dropdown-item:active, .dock-dropdown-item.active {
  background: #FFC94A;
  color: #0F172A;
  font-weight: 700;
}

.dock-dropdown-item.active:hover {
  background: #FFC94A !important;
  color: #0F172A !important;
}

.dock-cta {
  display: flex;
  align-items: center;
}

.dock-cta .btn-gold {
  padding: 0.4rem 1.15rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* --- LIQUID GLASS CARDS (NO TILT / NO SPOTLIGHT) --- */
.glass-card {
  background: var(--card-glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  opacity: 0.6;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* --- BUTTON COMPONENTS --- */
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-glass:not(.active):hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--border-hover);
  color: #FFFFFF;
}

.btn-glass:active, .btn-glass.active {
  background: #FFC94A;
  color: #0F172A;
  border-color: #FFC94A;
  font-weight: 700;
}

.btn-glass.active:hover {
  background: #FFC94A !important;
  color: #0F172A !important;
  border-color: #FFC94A !important;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFC94A;
  color: #0F172A;
  border: 1px solid #FFC94A;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px -2px rgba(0, 0, 0, 0.18);
}

.btn-gold:not(.active):hover {
  background: #F5B82E;
  border-color: #F5B82E;
  color: #0F172A;
}

.btn-gold:active, .btn-gold.active {
  background: #FFC94A;
  color: #0F172A;
  border-color: #FFC94A;
}

.btn-gold.active:hover {
  background: #FFC94A !important;
  color: #0F172A !important;
  border-color: #FFC94A !important;
}

/* Hub Tabs & Filter Pills */
.hub-tab {
  padding: 0.55rem 1.35rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hub-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
}

.hub-tab:active, .hub-tab.active {
  background: #FFC94A;
  color: #0F172A;
  border-color: #FFC94A;
  font-weight: 700;
}

.hub-tab.active:hover {
  background: #FFC94A !important;
  color: #0F172A !important;
  border-color: #FFC94A !important;
}

/* --- Section Formatting --- */
.section {
  padding: 7rem 0 3.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.95rem;
  border-radius: 9999px;
  background: rgba(255, 201, 74, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  color: var(--accent-gold);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.section-title span {
  color: var(--accent-gold);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

/* --- Hero Section --- */
.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding-top: 7.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.hero-headline .accent {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

/* Hero Visual Showcase */
.hero-card-main {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
}

.hero-card-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(7, 12, 24, 0.95) 0%, rgba(7, 12, 24, 0.6) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

/* --- TOUR ITINERARY HERO BANNER (TOP FADE) --- */
.tour-hero-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  padding-top: 8.5rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.tour-hero-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0.8) 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0.8) 75%, transparent 100%);
  filter: brightness(0.75) contrast(1.05);
}

.tour-hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bg-navy-dark) 0%, rgba(15, 23, 42, 0.4) 30%, rgba(15, 23, 42, 0.75) 70%, var(--bg-navy) 100%);
  z-index: 1;
  pointer-events: none;
}

.tour-hero-banner-content {
  position: relative;
  z-index: 2;
}


.hero-card-meta h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hero-card-meta p {
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 600;
}

/* --- Bento Grids --- */
.bento-grid-4 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

.bento-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 201, 74, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-heading);
}

.bento-desc {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

/* Tour Bento Cards */
.tour-card-img-wrapper {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.tour-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-motion);
}

.tour-bento-card:hover .tour-card-img-wrapper img {
  transform: scale(1.03);
}

.tour-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(7, 12, 24, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--accent-gold);
  padding: 0.28rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.tour-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 1.1rem;
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.tour-price-label {
  font-size: 0.725rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tour-price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
}

/* --- MOTION.DEV/UI STAGGERED REVEALS & ENTRANCES --- */
.reveal-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease-motion), transform 0.4s var(--ease-motion);
  will-change: opacity, transform;
}

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

/* --- ACCORDIONS --- */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--card-glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.accordion-item.open {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.09);
}

.accordion-header {
  width: 100%;
  padding: 1.35rem 1.6rem;
  background: transparent;
  border: none;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.accordion-title-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.day-badge {
  background: #FFC94A;
  color: #0F172A;
  font-weight: 800;
  font-size: 0.775rem;
  padding: 0.32rem 0.8rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s var(--ease-motion), background 0.2s ease;
  color: var(--accent-gold);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
  background: #FFC94A;
  color: #0F172A;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease-motion), padding 0.32s var(--ease-motion);
  padding: 0 1.6rem;
}

.accordion-item.open .accordion-body {
  max-height: 1000px;
  padding: 0 1.6rem 1.6rem 1.6rem;
  border-top: 1px solid var(--border-subtle);
}

.accordion-content-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
  padding-top: 1.1rem;
}

.accordion-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.tag-pill {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  color: var(--text-heading);
  font-weight: 500;
}

/* --- Booking Widget & Modal --- */
.booking-widget {
  position: sticky;
  top: 6.5rem;
}

.booking-price-header {
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.booking-form-group {
  margin-bottom: 1.15rem;
}

.booking-label {
  display: block;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.booking-input, .booking-select {
  width: 100%;
  padding: 0.8rem 1.05rem;
  background: rgba(7, 12, 24, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-heading);
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.booking-input:focus, .booking-select:focus {
  border-color: var(--accent-gold);
}

/* Modal Engine */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 12, 24, 0.85);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-motion);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-glass-card {
  width: 90%;
  max-width: 500px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  transform: scale(0.97);
  transition: transform 0.22s var(--ease-motion);
  position: relative;
}

.modal-backdrop.active .modal-glass-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: #FFC94A;
  color: #0F172A;
}

/* --- Sleek Footer --- */
.footer {
  padding: 5.5rem 0 3rem 0;
  position: relative;
  z-index: 1;
}

.footer-glass {
  background: var(--card-glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 340px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.825rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  .dock-header {
    top: 0.75rem;
  }
  .dock-container {
    padding: 0.35rem 0.75rem;
    gap: 0.5rem;
    height: 48px;
  }
  .dock-item {
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
  }
  .section {
    padding: 5rem 0 2rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-glass {
    padding: 2rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   MAGIC UI INFINITE MARQUEE BANNER
   ========================================================================== */
.magic-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  user-select: none;
  gap: 2rem;
  padding: 1.25rem 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, transparent 100%);
}

.magic-marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marqueeTrack 32s linear infinite;
  white-space: nowrap;
  will-change: transform;
  align-items: center;
  flex-shrink: 0;
}

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

@keyframes marqueeTrack {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.magic-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.magic-marquee-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 201, 74, 0.5);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

