/* ============================================
   HOTEL DETAIL PAGE STYLES
   Combines immersive hero with content layout
   ============================================ */

/* ===========================================
   HEADER OVERRIDES (Transparent to White)
   Same pattern as hotels-index.css
   =========================================== */
body:has(.hotel-hero) .header {
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  backdrop-filter: none;
}

body:has(.hotel-hero) .header .logo {
  color: white;
}

body:has(.hotel-hero) .header .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

body:has(.hotel-hero) .header .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

body:has(.hotel-hero) .header .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
}

body:has(.hotel-hero) .header .btn-primary {
  background: white;
  color: var(--disney-blue);
}

body:has(.hotel-hero) .header .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Scrolled state - white header */
body:has(.hotel-hero) .header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border-color);
}

body:has(.hotel-hero) .header.scrolled .logo {
  color: var(--disney-blue);
}

body:has(.hotel-hero) .header.scrolled .nav-link {
  color: var(--text-primary);
}

body:has(.hotel-hero) .header.scrolled .nav-link:hover {
  background: var(--magic-gradient-soft);
  color: var(--disney-blue);
}

body:has(.hotel-hero) .header.scrolled .nav-link.active {
  background: var(--magic-gradient-soft);
  color: var(--disney-blue);
}

body:has(.hotel-hero) .header.scrolled .btn-primary {
  background: var(--magic-gradient);
  color: white;
}

/* Mobile header buttons - transparent state */
body:has(.hotel-hero) .header .booking-toggle-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

body:has(.hotel-hero) .header .booking-toggle-btn:hover,
body:has(.hotel-hero) .header .booking-toggle-btn.active {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

body:has(.hotel-hero) .header .mobile-menu-btn span {
  background: white;
}

/* Mobile header buttons - scrolled state */
body:has(.hotel-hero) .header.scrolled .booking-toggle-btn {
  background: var(--magic-gradient-soft);
  color: #6a11cb;
}

body:has(.hotel-hero) .header.scrolled .booking-toggle-btn:hover,
body:has(.hotel-hero) .header.scrolled .booking-toggle-btn.active {
  background: var(--magic-gradient);
  color: white;
}

body:has(.hotel-hero) .header.scrolled .mobile-menu-btn span {
  background: var(--text-primary);
}

/* Dropdown menu styling adjustments for transparent header */
body:has(.hotel-hero) .header .dropdown-menu,
body:has(.hotel-hero) .header .mega-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}

body:has(.hotel-hero) .header .dropdown-link,
body:has(.hotel-hero) .header .mega-menu-link {
  color: var(--text-primary);
}

body:has(.hotel-hero) .header .mega-menu h4 {
  color: var(--text-primary);
}

/* ===========================================
   IMMERSIVE HERO SECTION
   =========================================== */

/* Dark backdrop behind the fixed booking bar area - desktop only */
body:has(.hotel-hero)::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--header-height) + 80px); /* Header + booking bar height */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: calc(var(--z-fixed) - 2);
  pointer-events: none;
  transition: opacity var(--transition-base);
}

/* Hide the backdrop when scrolled (booking bar becomes solid) */
body:has(.hotel-hero):has(.booking-bar.scrolled)::before {
  opacity: 0;
}

/* Hide backdrop on mobile - booking bar is hidden by default */
@media (max-width: 768px) {
  body:has(.hotel-hero)::before {
    display: none;
  }

  /* Show backdrop only when booking bar is visible on mobile */
  body:has(.hotel-hero):has(.booking-bar.mobile-visible)::before {
    display: block;
  }
}

.hotel-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--spacing-10);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

/* Floating particles animation */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--disney-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

/* Hero Content Grid */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-5);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--spacing-10);
  align-items: end;
}

.hero-text {
  color: white;
}

/* Breadcrumb */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-bottom: var(--spacing-5);
}

.hero-breadcrumb a {
  transition: opacity var(--transition-fast);
}

.hero-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero-breadcrumb i {
  font-size: 0.625rem;
}

/* Hotel Badge */
.hotel-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--disney-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-4);
}

/* Hotel Name */
.hotel-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-4);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/* Hotel Stars */
.hotel-stars {
  display: flex;
  gap: 6px;
  color: var(--disney-gold);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-5);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hotel Tagline */
.hotel-tagline {
  font-size: var(--font-size-xl);
  font-style: italic;
  opacity: 0.9;
  margin-bottom: var(--spacing-6);
  max-width: 500px;
  line-height: var(--line-height-relaxed);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: var(--spacing-4);
  flex-wrap: wrap;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--spacing-8);
  margin-top: var(--spacing-8);
  padding-top: var(--spacing-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--spacing-2);
}

/* ===========================================
   HERO BOOKING CARD
   =========================================== */
.hero-booking-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-6);
  box-shadow: var(--shadow-xl);
  color: var(--text-primary);
}

.booking-card-header {
  text-align: center;
  margin-bottom: var(--spacing-5);
  padding-bottom: var(--spacing-5);
  border-bottom: 1px solid var(--border-color);
}

.booking-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--spacing-2);
}

.price-from {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  background: var(--magic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-per {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.price-duration {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3);
}

/* Booking Card Features */
.booking-card-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
  margin-top: var(--spacing-5);
  padding-top: var(--spacing-5);
  border-top: 1px solid var(--border-color);
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.booking-feature i {
  width: 20px;
  color: var(--disney-pink);
}

/* ===========================================
   PAGE CONTENT SECTION
   =========================================== */
/* Override default .page-content padding for hotel detail pages */
body:has(.hotel-hero) .page-content {
  padding-top: 80px;
  padding-bottom: var(--spacing-10);
  background: var(--background-color);
}

.content-grid {
  display: grid;
  grid-template-columns: 280px 1fr!important;
  gap: var(--spacing-8);
  align-items: start;
}

/* ===========================================
   HOTELS NAVIGATION SIDEBAR
   =========================================== */
.hotels-nav {
  position: sticky;
  top: calc(var(--header-height) + var(--spacing-6));
}

.hotels-nav-title {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-4);
  padding-bottom: var(--spacing-3);
  border-bottom: 2px solid var(--disney-pink);
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.hotels-nav-title i {
  color: var(--disney-pink);
}

.hotels-nav-section {
  margin-bottom: var(--spacing-5);
}

.hotels-nav-section h4 {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-3);
}

.hotels-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  padding-left: 0;
  margin-bottom: 0;
}

.hotels-nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-3) var(--spacing-4);
  background: white;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.hotels-nav-link:hover {
  border-color: var(--disney-pink);
  color: var(--disney-pink);
  transform: translateX(4px);
}

.hotels-nav-link.active {
  background: var(--magic-gradient);
  color: white;
  border-color: transparent;
}

.hotels-nav-link .stars {
  margin-left: auto;
  color: var(--disney-gold);
  font-size: var(--font-size-xs);
}

.hotels-nav-link.active .stars {
  color: white;
}

/* ===========================================
   MAIN CONTENT
   =========================================== */
.main-content {
  min-width: 0;
}

/* Content Card */
.content-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: var(--spacing-6);
}

.content-card:last-child {
  margin-bottom: 0;
}

.content-card-header {
  background: var(--magic-gradient-soft);
  padding: var(--spacing-4) var(--spacing-5);
  border-bottom: 1px solid var(--border-color);
}

.content-card-header h1,
.content-card-header h2,
.content-card-header h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--disney-blue);
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin: 0;
}

.content-card-header h1 i,
.content-card-header h2 i,
.content-card-header h3 i {
  color: var(--disney-pink);
}

.content-card-body {
  padding: var(--spacing-5);
}

.content-card-body p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-4);
}

.content-card-body p:last-child {
  margin-bottom: 0;
}

.content-card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.content-card-body ul li {
  position: relative;
  padding-left: var(--spacing-6);
  padding-bottom: var(--spacing-3);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.content-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--disney-pink);
  border-radius: 50%;
}

.content-card-body ul li:last-child {
  padding-bottom: 0;
}

/* ===========================================
   FEATURES GRID
   =========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-4);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
  padding: var(--spacing-4);
  background: var(--background-color);
  border-radius: var(--radius-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--magic-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: var(--font-size-lg);
}

.feature-text h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0 !important;
}

/* ===========================================
   ROOM CARDS
   =========================================== */
.room-card {
  display: flex;
  gap: var(--spacing-5);
  padding: var(--spacing-5);
  background: var(--background-color);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-4);
}

.room-card:last-child {
  margin-bottom: 0;
}

.room-image {
  width: 200px;
  height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.room-image img,
.room-image .placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-content {
  flex: 1;
}

.room-name {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-2);
}

.room-description {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-3);
  line-height: var(--line-height-relaxed);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
}

.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: var(--spacing-1) var(--spacing-3);
  background: white;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}

.room-amenity i {
  color: var(--disney-pink);
  font-size: 0.625rem;
}

/* ===========================================
   GALLERY SECTION & GALLERY CARD
   =========================================== */
.gallery-section {
  padding: var(--spacing-12) 0;
  background: white;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--spacing-6);
}

/* Gallery Card Header - nav inside content-card */
.gallery-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-card-header h3 {
  margin: 0;
}

.gallery-card-header .gallery-nav {
  display: flex;
  gap: var(--spacing-2);
}

.gallery-card-header .gallery-nav-btn {
  width: 36px;
  height: 36px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
}

.gallery-nav {
  display: flex;
  gap: var(--spacing-2);
}

.gallery-nav-btn {
  width: 48px;
  height: 48px;
  background: var(--background-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.gallery-nav-btn:hover {
  background: var(--magic-gradient);
  color: white;
}

/* Gallery Card Layout - Main image with thumbnail slider */
.gallery-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-main:hover img {
  transform: scale(1.02);
}

.gallery-main-label {
  position: absolute;
  bottom: var(--spacing-4);
  left: var(--spacing-4);
  color: white;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.gallery-thumbnails-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
}

.gallery-thumbnails {
  display: flex;
  gap: var(--spacing-3);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: var(--spacing-1) 0;
}

.gallery-thumbnails::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex: 0 0 120px;
  height: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
}

.gallery-thumb.active {
  border-color: var(--disney-pink);
}

.gallery-thumb:hover {
  border-color: var(--disney-blue);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-1) var(--spacing-2);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-thumb:hover .gallery-thumb-label {
  opacity: 1;
}

.gallery-scroll-btn {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.gallery-scroll-btn:hover {
  background: var(--magic-gradient);
  color: white;
  border-color: transparent;
}

/* Old gallery grid - keep for backward compatibility */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: var(--spacing-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item .placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-image {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item-label {
  position: absolute;
  bottom: var(--spacing-4);
  left: var(--spacing-4);
  color: white;
  font-weight: var(--font-weight-semibold);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 1;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
  padding: var(--spacing-12) 0;
  background: var(--magic-gradient);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-5);
  text-align: center;
  position: relative;
  z-index: 1;
  color: white;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-4);
  color: white;
}

.cta-subtitle {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  margin-bottom: var(--spacing-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact {
  display: flex;
  gap: var(--spacing-8);
  justify-content: center;
  margin-top: var(--spacing-8);
  padding-top: var(--spacing-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  font-size: var(--font-size-base);
}

.cta-contact-item i {
  font-size: var(--font-size-xl);
}

/* Button overrides for CTA section */
.cta-section .btn-white {
  background: white;
  color: #6a11cb;
}

.cta-section .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hotels-nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
  }

  .hero-booking-card {
    max-width: 450px;
  }
}

@media (max-width: 900px) {
  .hotel-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--spacing-10));
    padding-bottom: var(--spacing-8);
  }

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

  .room-card {
    flex-direction: column;
  }

  .room-image {
    width: 100%;
    height: 200px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-thumb {
    flex: 0 0 100px;
    height: 65px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--spacing-6);
    justify-content: center;
  }

  .cta-contact {
    flex-direction: column;
    gap: var(--spacing-4);
  }
}

@media (max-width: 768px) {
  .hotels-nav {
    top: calc(var(--header-height-mobile) + var(--spacing-6));
  }

  .hotel-name {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ===========================================
   LIGHTBOX
   =========================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-caption {
  text-align: center;
  color: white;
  padding: var(--spacing-4);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.lightbox-close {
  position: absolute;
  top: var(--spacing-4);
  right: var(--spacing-4);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: var(--font-size-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: var(--font-size-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--magic-gradient);
}

.lightbox-prev {
  left: var(--spacing-4);
}

.lightbox-next {
  right: var(--spacing-4);
}

.lightbox-counter {
  position: absolute;
  bottom: var(--spacing-4);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: var(--font-size-base);
  }

  .lightbox-prev {
    left: var(--spacing-2);
  }

  .lightbox-next {
    right: var(--spacing-2);
  }
}

@media (max-width: 900px) {
  .content-grid {
      grid-template-columns: 1fr !important;
  }
}
