/* ==========================================================================
   CSS Design Tokens & Core Theme
   ========================================================================== */
:root {
  /* Colors */
  --bg-space-dark: #060813;
  --bg-space-deep: #0a0e23;
  --bg-panel: rgba(13, 18, 43, 0.55);
  --bg-panel-solid: #0d122b;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 176, 58, 0.15);
  
  /* Text Colors */
  --text-primary: #f0f3ff;
  --text-secondary: #a0aed0;
  --text-muted: #6f7c9e;
  
  /* Accent Colors */
  --color-accent: #ffb03a;        /* Sun Corona Gold */
  --color-accent-light: #ffd56b;  /* Bright Amber */
  --color-accent-glow: rgba(255, 176, 58, 0.4);
  --color-dark-gold: #c38421;
  --color-alert: #ff5e5e;         /* Error/Important Alert red */
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px var(--color-accent-glow);
}

/* ==========================================================================
   Base Elements & Background Animations
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-space-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Starfield Background Effect */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background-image: 
    radial-gradient(1.5px 1.5px at 10% 20%, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 30% 50%, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 50% 80%, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1.5px 1.5px at 80% 40%, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90% 10%, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 70% 60%, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0));
  background-size: 550px 550px;
  opacity: 0.4;
}

/* Nebula Lighting Effects */
.nebula {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -2;
  opacity: 0.15;
  pointer-events: none;
}

.nebula-1 {
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--color-accent) 0%, rgba(0, 0, 0, 0) 70%);
}

.nebula-2 {
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #5b3aff 0%, rgba(0, 0, 0, 0) 70%);
}

/* Reusable Glassmorphism Panel */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Main Content Container */
.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 100px;
}

/* ==========================================================================
   Hero & Eclipse Header
   ========================================================================== */
.hero-section {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Totality Eclipse Animation */
.hero-eclipse-graphic {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eclipse-sun {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 40%, var(--color-accent-light) 70%, var(--color-accent) 100%);
  box-shadow: 0 0 20px var(--color-accent);
}

.eclipse-moon {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #060813;
  left: 17px; /* Partial overlap alignment */
  top: 20px;
  z-index: 2;
  box-shadow: inset -5px -5px 10px rgba(255, 255, 255, 0.05);
  animation: eclipse-align 8s infinite ease-in-out alternate;
}

.eclipse-corona {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 35px 12px rgba(255, 213, 107, 0.4);
  z-index: 1;
  animation: corona-flare 4s infinite alternate ease-in-out;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 32px;
}

/* Stats Cards Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 960px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 176, 58, 0.3);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

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

.stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.text-accent {
  color: var(--color-accent) !important;
}

/* Live Countdown Banner */
.countdown-container {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 176, 58, 0.05);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.countdown-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-light);
  margin-bottom: 12px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 65px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

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

.countdown-divider {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.8;
  padding-bottom: 16px;
  animation: pulse 1.5s infinite;
}

/* ==========================================================================
   Welcome & Booking Policy Section
   ========================================================================== */
.welcome-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  margin-bottom: 40px;
}

.welcome-content {
  max-width: 800px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.section-title-icon {
  color: var(--color-accent);
  margin-right: 12px;
}

.welcome-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.policy-divider {
  height: 1px;
  background: var(--border-color);
  width: 100%;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.payment-deadline-banner {
  background: rgba(255, 176, 58, 0.08);
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
}

.banner-text {
  font-size: 1rem;
  color: var(--text-primary);
}

.policy-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Horizontal Refund Cards Container */
.refund-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.refund-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.refund-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.refund-val-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.refund-percent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
}

.refund-status {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.refund-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.refund-date-range {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.refund-notes {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Themed card highlights */
.refund-full .refund-percent {
  color: #4ade80; /* green */
}
.refund-full .refund-status {
  color: rgba(74, 222, 128, 0.8);
}
.refund-full {
  border-left: 4px solid #4ade80;
}

.refund-half .refund-percent {
  color: var(--color-accent); /* gold */
}
.refund-half .refund-status {
  color: rgba(255, 176, 58, 0.8);
}
.refund-half {
  border-left: 4px solid var(--color-accent);
}

.refund-none .refund-percent {
  color: var(--color-alert); /* red */
}
.refund-none .refund-status {
  color: rgba(255, 94, 94, 0.8);
}
.refund-none {
  border-left: 4px solid var(--color-alert);
}

/* ==========================================================================
   Sticky Stay Duration Switcher Controls Bar
   ========================================================================== */
.sticky-controls-bar {
  position: sticky;
  top: 15px;
  z-index: 100; /* Stays above carousels and images */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  margin-bottom: 40px;
  border-radius: var(--radius-pill);
  background: rgba(10, 14, 35, 0.94);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 176, 58, 0.05);
}

.controls-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.mobile-text {
  display: none;
}

.desktop-text {
  display: inline;
}

/* Radio Switch Styles */
.duration-toggle-container {
  display: flex;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: var(--radius-pill);
}

.duration-toggle-container input[type="radio"] {
  display: none;
}

.duration-toggle-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  z-index: 2;
  transition: color var(--transition-normal);
  user-select: none;
}

/* Slide Slider indicator logic */
.duration-toggle-slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--color-accent);
  box-shadow: var(--shadow-sm), 0 0 12px rgba(255, 176, 58, 0.3);
  border-radius: var(--radius-pill);
  z-index: 1;
  transition: transform var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
}

#toggle-4:checked ~ .duration-toggle-slider {
  transform: translateX(0);
}

#toggle-6:checked ~ .duration-toggle-slider {
  transform: translateX(100%);
}

#toggle-4:checked + label,
#toggle-6:checked + label {
  color: #060813;
}

/* ==========================================================================
   Venues & Hotels Cards Listing
   ========================================================================== */
.venues-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.venue-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Upper layout splits left gallery, right desc */
.venue-details-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid var(--border-color);
}

/* Carousel Gallery Module */
.venue-gallery {
  position: relative;
  overflow: hidden;
  background: #000;
  height: 100%;
  min-height: 350px;
}

.carousel-viewport {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow) ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel Arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 18, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.carousel-btn:hover {
  background: rgba(255, 176, 58, 0.8);
  border-color: var(--color-accent-light);
  color: #060813;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn-prev {
  left: 16px;
}

.carousel-btn-next {
  right: 16px;
}

/* Dot Navigation indicators */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-accent);
  transform: scale(1.25);
  box-shadow: 0 0 8px var(--color-accent);
}

/* Hotel Description Panel */
.venue-description-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.venue-header {
  margin-bottom: 20px;
}

.venue-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.venue-tagline {
  color: var(--color-accent-light);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.venue-body {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.venue-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.feature-icon {
  color: var(--color-accent);
}

/* ==========================================================================
   Room List Table/Cards
   ========================================================================== */
.venue-rooms-container {
  padding: 40px;
  background: rgba(0, 0, 0, 0.15);
}

.rooms-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

/* Room Items Table Layout */
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-row-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  align-items: center;
  gap: 20px;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.room-row-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 176, 58, 0.2);
  transform: scale(1.005);
}

.room-row-item.room-booked {
  opacity: 0.55;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.1);
}

.room-row-item.room-booked:hover {
  transform: none;
  background: rgba(0, 0, 0, 0.1);
  border-color: var(--border-color);
}

/* Room Details (Title + Description) */
.room-meta {
  display: flex;
  flex-direction: column;
}

.room-title-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.room-desc-small {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Badges for counts */
.room-avail-col {
  display: flex;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.badge-info {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.badge-booked {
  background: rgba(255, 94, 94, 0.1);
  color: var(--color-alert);
  border: 1px solid rgba(255, 94, 94, 0.2);
}

/* Pricing Display column */
.room-price-col {
  display: flex;
  flex-direction: column;
}

.room-price-usd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-accent-light);
  line-height: 1;
  transition: opacity var(--transition-fast);
}

.room-price-calculation-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Booking CTA Buttons */
.room-cta-col {
  display: flex;
  justify-content: flex-end;
}

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--color-accent);
  color: #060813;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 176, 58, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-book-room {
  width: 100%;
  max-width: 160px;
}

/* Loading state styles */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  text-align: center;
  color: var(--text-secondary);
}

.loading-spinner {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

/* ==========================================================================
   Booking Inquiry Modal / Dialog System
   ========================================================================== */
.booking-dialog {
  margin: auto;
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 90%;
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  color: var(--text-primary);
  background: var(--bg-panel-solid);
}

.booking-dialog::backdrop {
  background: rgba(4, 5, 13, 0.85);
  backdrop-filter: blur(8px);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dialog-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dialog-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.dialog-close-btn:hover {
  color: var(--color-alert);
}

.dialog-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Booking Specs Details Card inside modal */
.booking-summary-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.booking-summary-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: #fff;
}

.modal-room-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.modal-details-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  gap: 16px;
}

.modal-detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.detail-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.price-highlight {
  color: var(--color-accent-light) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
}

/* Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-label .required {
  color: var(--color-alert);
}

.form-input,
.form-textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 10px 14px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), outline var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.info-alert {
  background: rgba(255, 176, 58, 0.05);
  border: 1px solid var(--border-glow);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.info-alert-icon {
  color: var(--color-accent);
  margin-top: 2px;
}

.dialog-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.dialog-actions-grid .btn {
  padding: 12px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes eclipse-align {
  0% {
    transform: translate(25px, -5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes corona-flare {
  0% {
    box-shadow: 0 0 30px 10px rgba(255, 213, 107, 0.35);
  }
  100% {
    box-shadow: 0 0 45px 15px rgba(255, 213, 107, 0.55);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .welcome-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .venue-details-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .venue-gallery {
    min-height: 300px;
  }
  
  .venue-description-panel {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .sticky-controls-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    top: 8px;
  }
  
  .room-row-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  
  .room-cta-col {
    justify-content: flex-start;
  }
  
  .btn-book-room {
    max-width: none;
  }
  
  .dialog-actions-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-dialog {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .countdown-num {
    font-size: 1.8rem;
  }
  
  .countdown-item {
    min-width: 50px;
  }
  
  .venue-rooms-container {
    padding: 20px;
  }
}

/* ==========================================================================
   Overflow Lock Banner
   ========================================================================== */
.overflow-lock-banner {
  background: rgba(13, 18, 43, 0.4);
  border: 1px dashed rgba(255, 176, 58, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 20px auto 0;
  box-shadow: var(--shadow-md);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.overflow-lock-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.8;
  animation: pulse 2.5s infinite ease-in-out;
}

.overflow-lock-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.overflow-lock-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.5;
}

/* Overflow Venue Reveal/Hide States */
.venue-card.overflow-hidden {
  display: none !important;
}

.venue-card.overflow-visible {
  animation: fade-in-scale var(--transition-slow) forwards;
}

@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   Organizer Tools Preview Switch Panel
   ========================================================================== */
.admin-preview-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(10, 14, 35, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 176, 58, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
  user-select: none;
}

.admin-panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

.admin-panel-controls {
  display: flex;
  align-items: center;
}

.admin-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.admin-switch input {
  display: none;
}

.admin-switch-slider {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast);
}

.admin-switch-slider::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.admin-switch input:checked + .admin-switch-slider {
  background-color: var(--color-accent);
}

.admin-switch input:checked + .admin-switch-slider::before {
  transform: translateX(20px);
  background-color: #060813;
}

.admin-switch-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Responsiveness for mobile screen sizes */
@media (max-width: 576px) {
  .admin-preview-panel {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }
  .admin-panel-title {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .refund-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .desktop-text {
    display: none;
  }
  
  .mobile-text {
    display: inline;
  }

  .controls-label {
    font-size: 0.9rem;
  }

  .duration-toggle-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Room Features Row & Badges
   ========================================================================== */
.room-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.room-capacity-badge,
.room-bathroom-badge {
  font-size: 0.76rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  width: fit-content;
  line-height: 1.4;
}

.room-capacity-badge i {
  color: var(--color-accent-light);
  font-size: 0.8rem;
}

.room-bathroom-badge i {
  font-size: 0.8rem;
}

/* Bathroom specific theme variants */
.room-bathroom-badge.bath-ensuite {
  border-color: rgba(74, 222, 128, 0.15);
  background: rgba(74, 222, 128, 0.02);
}
.room-bathroom-badge.bath-ensuite i {
  color: #4ade80; /* Green shower icon */
}

.room-bathroom-badge.bath-shared {
  border-color: rgba(56, 189, 248, 0.15);
  background: rgba(56, 189, 248, 0.02);
}
.room-bathroom-badge.bath-shared i {
  color: #38bdf8; /* Blue shared icon */
}

/* ==========================================================================
   FAQ Navigation & Header Flex Styles
   ========================================================================== */
.welcome-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.faq-nav-container {
  flex-shrink: 0;
}

.faq-nav-btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
}

@media (max-width: 768px) {
  .welcome-header-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .faq-nav-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FAQ Page Styles
   ========================================================================== */
.faq-page .app-container {
  padding-bottom: 80px;
}

.faq-header-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 40px;
  width: 100%;
}

.faq-header-navigation .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.95rem;
}

.header-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.header-logo-text .logo-icon {
  color: var(--color-accent);
}

.faq-hero-section {
  text-align: center;
  margin-bottom: 48px;
}

.faq-title {
  font-size: 3rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 30%, #ffd085 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-subtitle {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Controls section: search and category chips */
.faq-controls-section {
  padding: 32px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-search-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.faq-search-wrapper .search-icon {
  position: absolute;
  left: 20px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  pointer-events: none;
}

#faq-search {
  width: 100%;
  padding: 16px 20px 16px 52px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

#faq-search:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 16px rgba(199, 142, 63, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-search-wrapper .clear-btn {
  position: absolute;
  right: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-search-wrapper .clear-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.faq-categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-chip:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.category-chip.active {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: #060813;
  border-color: var(--color-accent-light);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(199, 142, 63, 0.3);
}

.faq-expand-actions {
  display: flex;
  gap: 20px;
  margin-top: -4px;
}

.btn-text-action {
  background: none;
  border: none;
  color: var(--color-accent-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.btn-text-action:hover {
  color: #fff;
  text-decoration: underline;
}

/* Category Headers & Accordion Grid */
.faq-category-header {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-category-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-category-header h3 i {
  color: var(--color-accent);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(199, 142, 63, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.faq-item-expanded {
  border-color: rgba(199, 142, 63, 0.4);
  box-shadow: 0 0 24px rgba(199, 142, 63, 0.1), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-question-btn {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.5;
}

.faq-question-btn:hover .faq-question-text {
  color: var(--color-accent-light);
}

.faq-icon-indicator {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.faq-item-expanded .faq-icon-indicator {
  background: rgba(199, 142, 63, 0.15);
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
}

.faq-answer-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-answer-content p {
  margin: 0;
}

/* Visibility Helper Classes */
.hidden-search,
.hidden-category {
  display: none !important;
}

/* Empty State Styles */
.faq-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  margin-top: 30px;
}

.search-empty-icon {
  font-size: 3rem;
  color: var(--text-secondary);
  opacity: 0.4;
  margin-bottom: 20px;
}

.faq-empty-state h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.faq-empty-state p {
  color: var(--text-secondary);
  max-width: 400px;
}

/* Footer Section */
.app-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-link {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-controls-section {
    padding: 20px;
  }
  .faq-categories {
    gap: 8px;
  }
  .category-chip {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .faq-question-btn {
    padding: 20px;
  }
  .faq-question-text {
    font-size: 1.05rem;
  }
  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }
  .faq-title {
    font-size: 2.2rem;
  }
}



