/* ==========================================================================
   Gajanan Resort - Components Stylesheet (Mobile-First & Gen-Z Aesthetics)
   Cards, Navigation, Mobile Bottom Dock, Buttons, Modals, Forms & Footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Navbar & Header
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--trans-normal);
  background: rgba(4, 9, 6, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar.scrolled {
  background: rgba(4, 9, 6, 0.96);
  box-shadow: var(--shadow-md), 0 1px 0 var(--border-emerald);
  height: 68px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 245, 160, 0.25));
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-text .veg-tagline {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
  position: relative;
  padding: 6px 0;
  transition: var(--trans-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  transition: width var(--trans-normal);
  border-radius: var(--radius-full);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--trans-normal);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Fullscreen Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  background: rgba(4, 10, 7, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 1200;
  padding: 88px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border-emerald);
  transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-link:hover, .drawer-link.active {
  color: var(--primary);
  padding-left: 8px;
}

.drawer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 24px;
}

/* --------------------------------------------------------------------------
   2. Native Mobile Bottom Navigation Dock (App Feel)
   -------------------------------------------------------------------------- */
.mobile-bottom-dock {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* prevent bottom bar overlap */
  }

  .mobile-bottom-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(4, 10, 7, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 245, 160, 0.2);
    z-index: 1100;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.7);
  }

  .dock-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    flex: 1;
    padding: 6px 0;
    transition: var(--trans-fast);
  }

  .dock-tab .dock-icon {
    font-size: 1.25rem;
    line-height: 1;
  }

  .dock-tab.active, .dock-tab:hover {
    color: var(--primary);
  }

  .dock-tab.active .dock-icon {
    filter: drop-shadow(0 0 8px var(--primary));
  }

  .dock-tab-highlight {
    color: var(--gold-light);
  }
}

/* --------------------------------------------------------------------------
   3. Buttons & Calls to Action
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--trans-fast);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 120%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--neon-gradient);
  color: #040a07;
  border: 1px solid rgba(0, 245, 160, 0.6);
  box-shadow: 0 4px 20px rgba(0, 245, 160, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0, 245, 160, 0.6);
  filter: brightness(1.08);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #040a07;
  font-weight: 800;
  border: 1px solid rgba(251, 191, 36, 0.7);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.55);
  filter: brightness(1.08);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(14px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #040a07;
  box-shadow: 0 4px 18px rgba(0, 245, 160, 0.4);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.02rem;
}

/* --------------------------------------------------------------------------
   4. Badges & Labels (With Animated Live Radar Ping)
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge-veg {
  background: rgba(0, 245, 160, 0.12);
  border: 1px solid rgba(0, 245, 160, 0.4);
  color: #00f5a0;
  box-shadow: 0 0 12px rgba(0, 245, 160, 0.2);
}

.badge-veg .dot, .radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f5a0;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 8px #00f5a0;
}

.badge-veg .dot::after, .radar-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #00f5a0;
  animation: radarPing 1.8s infinite cubic-bezier(0, 0, 0.2, 1);
}

@keyframes radarPing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.badge-coming-soon {
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid var(--border-gold);
  color: #fbbf24;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.badge-cinema {
  background: rgba(6, 182, 212, 0.16);
  border: 1px solid rgba(6, 182, 212, 0.45);
  color: #38bdf8;
}

/* --------------------------------------------------------------------------
   5. Glass Cards & Surface Panels
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: transform var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.glass-card:hover {
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-lg), var(--shadow-glow-emerald);
}

/* --------------------------------------------------------------------------
   6. Hero Section & Booking Bar
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 24px);
  padding-bottom: 64px;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(4, 9, 6, 0.72) 0%, 
    rgba(4, 9, 6, 0.5) 40%, 
    rgba(4, 9, 6, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.3rem, 5.8vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: #e5e7eb;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Hero Quick Booking Bar */
.booking-bar {
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 245, 160, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.booking-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 6px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.booking-item:last-of-type {
  border-right: none;
}

.booking-item label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-item select, .booking-item input {
  background: transparent;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  width: 100%;
}

.booking-item select option {
  background-color: #081710;
  color: #ffffff;
}

/* Slide Indicator Dots */
.hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 5px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  transition: var(--trans-normal);
  cursor: pointer;
}

.hero-dot.active {
  width: 28px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

/* --------------------------------------------------------------------------
   7. Fluid Responsive Amenities Grid
   -------------------------------------------------------------------------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  width: 100%;
}

.amenity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  transition: all var(--trans-normal);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-lg), var(--shadow-glow-emerald);
}

.amenity-img-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.amenity-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-card:hover .amenity-img-wrapper img {
  transform: scale(1.07);
}

.amenity-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.amenity-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.amenity-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amenity-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.6;
}

.amenity-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.amenity-pill {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #d1d5db;
}

/* --------------------------------------------------------------------------
   8. Theme Park Mega Banner (Coming Soon)
   -------------------------------------------------------------------------- */
.themepark-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
  background: linear-gradient(135deg, rgba(25, 20, 6, 0.88) 0%, rgba(9, 23, 16, 0.94) 100%);
  padding: 48px 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
  max-width: 460px;
  width: 100%;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown-number {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gold-light);
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. Modals (Responsive Desktop Center & Mobile Bottom-Sheet)
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), var(--shadow-glow-emerald);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  transition: var(--trans-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

@media (max-width: 640px) {
  .modal {
    align-items: flex-end;
    padding: 0;
  }
  .modal-card {
    border-radius: 24px 24px 0 0;
    max-height: 85vh;
    padding: 24px 18px 36px;
    transform: translateY(100%);
  }
  .modal.active .modal-card {
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   10. Forms & Inputs
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  width: 100%;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #d1d5db;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #ffffff;
  font-size: 0.92rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(0, 245, 160, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --------------------------------------------------------------------------
   11. Floating Action Dock (Desktop Only)
   -------------------------------------------------------------------------- */
.floating-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: all var(--trans-fast);
  color: #ffffff;
  font-size: 1.4rem;
  position: relative;
}

.dock-btn:hover {
  transform: scale(1.1);
}

.dock-whatsapp {
  background: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.dock-call {
  background: #0ea5e9;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45);
}

.dock-book {
  background: var(--gold-gradient);
  color: #040906;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.dock-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(4, 10, 7, 0.94);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid var(--border-glass);
}

.dock-btn:hover .tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-dock {
    display: none; /* replaced by native mobile-bottom-dock */
  }
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #020604;
  border-top: 1px solid var(--border-emerald);
  padding: 72px 0 28px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
}

.social-icon-btn:hover {
  background: var(--primary);
  color: #040906;
  transform: translateY(-3px);
}

.social-icon-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--trans-fast);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints Overhaul (Zero Horizontal Overflow)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .booking-bar {
    grid-template-columns: 1fr 1fr;
  }
  .booking-bar .btn {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .themepark-banner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
}

@media (max-width: 768px) {
  .nav-actions .btn-desktop-cta {
    display: none; /* hide from top bar to keep brand uncluttered */
  }
  .booking-bar {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .booking-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px 0;
  }
  .booking-bar .btn {
    grid-column: span 1;
    width: 100%;
    margin-top: 6px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
