/* ==========================================================================
   RIVERSIDE HOTEL — LUXURY IVORY & CHAMPAGNE RESORT COMPONENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. AVENRA-STYLE LUXURY NAVBAR WITH ULTRA-CLEAN ALIGNMENT
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(14, 14, 12, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(197, 155, 39, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(10, 10, 8, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--gold-primary);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(197, 155, 39, 0.25);
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-royal, 'Cinzel', serif);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold-dark);
  margin-top: 1px;
}

/* Nav Menu - Refined Luxury Single-Line Layout */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fcfcfc;
  position: relative;
  padding: 0.6rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--gold-dark);
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c59b27, #e5b94a);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.nav-cta {
  display: none !important;
}

.dropdown-caret {
  font-size: 0.65rem;
  color: var(--gold-dark);
  margin-left: 0.2rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-caret,
.nav-dropdown.active-mobile .dropdown-caret {
  transform: rotate(180deg);
}

/* Luxury Dropdown Submenu Container */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 270px;
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-top: 3px solid var(--gold-primary);
  border-radius: 12px;
  padding: 0.6rem 0;
  list-style: none;
  box-shadow: 0 18px 45px rgba(44, 36, 29, 0.14), 0 0 0 1px rgba(197, 155, 39, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1050;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-left: 1px solid rgba(197, 155, 39, 0.35);
  border-top: 1px solid rgba(197, 155, 39, 0.35);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.35rem;
  color: var(--text-espresso);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: #fbf6ec;
  color: var(--gold-dark);
  border-left-color: var(--gold-primary);
  padding-left: 1.6rem;
}

.dropdown-divider {
  height: 1px;
  background: rgba(197, 155, 39, 0.18);
  margin: 0.4rem 0;
}

/* Intermediate screen responsive scaling to prevent awkward wrapping */
@media (max-width: 1280px) and (min-width: 1081px) {
  .nav-menu {
    gap: 1.15rem;
  }
  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.8px;
  }
  .brand-title {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
  }
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1002;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 155, 39, 0.35);
  transition: var(--transition);
}

.mobile-nav-toggle:hover {
  background: rgba(197, 155, 39, 0.2);
  border-color: var(--gold-primary);
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: #f7df8f;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav-toggle.open {
  background: rgba(197, 155, 39, 0.15);
  border-color: var(--gold-dark);
}

.mobile-nav-toggle.open span {
  background-color: #2c241d;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav Drawer Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 10, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Nav Drawer */
@media (max-width: 1080px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    height: 100dvh;
    background: #fdfaf4;
    border-left: 1px solid var(--border-gold);
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.5rem 2.5rem;
    gap: 0.4rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1001;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-item {
    width: 100%;
    display: block;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-espresso) !important;
    border-bottom: 1px solid rgba(197, 155, 39, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--gold-dark) !important;
    background: rgba(197, 155, 39, 0.08);
    border-radius: 6px;
    padding-left: 0.75rem;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none !important;
  }

  .nav-dropdown .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(197, 155, 39, 0.25) !important;
    background: #f4ecdf !important;
    border-radius: 10px;
    margin: 0.35rem 0 0.75rem 0;
    padding: 0.4rem 0.25rem;
    display: none !important;
    min-width: 100%;
    width: 100%;
  }

  .nav-dropdown .dropdown-menu::before {
    display: none !important;
  }

  .nav-dropdown.active-mobile .dropdown-menu {
    display: block !important;
    animation: mobileSubmenuFade 0.25s ease;
  }

  .dropdown-item {
    color: var(--text-espresso) !important;
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
    white-space: normal;
    border-left: none;
    border-radius: 6px;
  }

  .dropdown-item:hover {
    background: #ffffff;
    color: var(--gold-dark) !important;
    padding-left: 1.1rem;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .dropdown-caret {
    font-size: 0.8rem;
    color: var(--gold-dark);
  }
}

@keyframes mobileSubmenuFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  background-color: var(--bg-main);
  overflow: visible;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05);
  transform: scale(1.04);
  animation: heroZoom 20s infinite alternate cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.4) 0%,
    rgba(15, 23, 42, 0.2) 50%,
    rgba(15, 23, 42, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 3rem 0;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text-col {
  text-align: left;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #f7f3eb;
  max-width: 650px;
  margin: 0 0 2rem 0;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Pool Showcase Card in Hero */
.hero-pool-showcase {
  position: relative;
}

.hero-pool-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(44, 36, 29, 0.18), var(--gold-card-glow);
  background: #ffffff;
  transition: var(--transition);
}

.hero-pool-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(44, 36, 29, 0.22), 0 0 35px rgba(197, 155, 39, 0.35);
}

.hero-pool-img-box {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.hero-pool-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.8s ease;
}

.hero-pool-card:hover .hero-pool-img {
  transform: scale(1.08);
}

.hero-pool-overlay-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  color: #7a5011;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-pool-info {
  padding: 1.5rem;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.hero-pool-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-espresso);
  margin-bottom: 0.35rem;
}

.hero-pool-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Quick Bar Floating / Below Hero */
.hero-quick-bar {
  position: relative;
  z-index: 50;
  margin-top: 0;
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  box-shadow: 0 12px 35px rgba(44, 36, 29, 0.08);
  overflow: visible;
}

.quick-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr auto;
  gap: 1.25rem;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .quick-bar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .quick-bar-grid {
    grid-template-columns: 1fr;
  }
}

.guest-selector-container {
  position: relative;
}

.quick-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quick-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 700;
}

.quick-input {
  background: #faf6ee;
  border: 1px solid rgba(197, 155, 39, 0.25);
  color: var(--text-espresso);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.quick-input:focus {
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

/* --------------------------------------------------------------------------
   3. ABOUT & STATS SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-sinhala-card {
  background: #fcf7ee;
  border-left: 4px solid var(--gold-primary);
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-left-width: 4px;
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 0.5rem 0;
}

.about-sinhala-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #7a5011;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-sinhala-translation {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.stat-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(44, 36, 29, 0.05);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 36, 29, 0.09);
  border-color: var(--gold-primary);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-image-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}

.about-img-main {
  grid-column: 1 / span 10;
  grid-row: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.about-img-sub {
  grid-column: 4 / span 9;
  grid-row: 1;
  margin-top: 40%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  border: 6px solid #ffffff;
  z-index: 2;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   4. SPECIAL PACKAGES & OFFERS (WARM CHAMPAGNE TABLE)
   -------------------------------------------------------------------------- */
.packages-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
  box-shadow: 0 14px 40px rgba(44, 36, 29, 0.08);
}

.package-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding-bottom: 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  background: #fbf6ec;
  color: var(--text-espresso);
  font-weight: 600;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold-royal-gradient);
  color: #241a08;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.offers-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-bottom: 2rem;
}

.offers-table th, .offers-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid #ebe4d8;
}

.offers-table th {
  background: #fcf8f0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #7a5011;
  font-weight: 700;
  border-bottom: 2px solid var(--gold-primary);
}

.offers-table td {
  font-size: 1rem;
  color: var(--text-espresso);
}

.offers-table tr:hover td {
  background: #fdfaf4;
}

.flyer-preview-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1c2230 0%, #151a26 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.flyer-preview-banner h4 {
  color: #f3cf65 !important;
  margin: 0 0 0.35rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.flyer-preview-banner p {
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0;
  font-size: 0.92rem;
}

.flyer-preview-banner .btn {
  background: linear-gradient(135deg, #d4af37, #f0c040);
  color: #1a1207 !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  transition: all 0.2s ease;
  padding: 0.65rem 1.5rem;
}

.flyer-preview-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.55);
}

/* --------------------------------------------------------------------------
   4B. SPECIAL EVENT & CELEBRATION PACKAGES
   -------------------------------------------------------------------------- */
.events-section {
  background-color: var(--bg-main);
}

.events-venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.venue-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(44, 36, 29, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(44, 36, 29, 0.14);
  border-color: var(--gold-primary);
}

.venue-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.venue-card:hover .venue-img {
  transform: scale(1.08);
}

.venue-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.venue-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.venue-category-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
  display: block;
}

.venue-card-title {
  font-size: 1.5rem;
  color: var(--text-espresso);
  margin-bottom: 0.35rem;
}

.venue-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.venue-specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.venue-specs-grid .spec-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-espresso);
}

.venue-description {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.venue-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #ebe4d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.venue-price-tag .price-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.venue-price-tag .price-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent-terracotta);
  font-weight: 700;
}

.venue-btn-group {
  display: flex;
  gap: 0.5rem;
}

/* Progressive Music Feature Banner */
.progressive-banner {
  background: linear-gradient(135deg, #fdf8ee 0%, #f5e8cf 100%);
  border: 1px solid rgba(197, 155, 39, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 12px 35px rgba(197, 155, 39, 0.12);
}

.progressive-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.progressive-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #7a5011;
  font-weight: 700;
}

.progressive-text {
  color: var(--text-espresso);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.venue-for-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.venue-for-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #7a5011;
}

.venue-for-pill {
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-espresso);
}

/* Event Offers Grid */
.event-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.event-offer-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(44, 36, 29, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.event-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 36, 29, 0.12);
  border-color: var(--gold-primary);
}

.event-offer-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #fdf9f2 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 35px rgba(197, 155, 39, 0.15);
}

.offer-card-header {
  margin-bottom: 1rem;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-espresso);
}

.offer-capacity {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.offer-price-box {
  margin-bottom: 1.25rem;
}

.regular-price-strike {
  font-size: 0.8rem;
  color: var(--text-subtle);
  display: block;
}

.deal-price {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--accent-terracotta);
  font-weight: 700;
}

.offer-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.offer-feature-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.2rem;
}

.offer-feature-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   5. AMENITIES SECTION
   -------------------------------------------------------------------------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 20px rgba(44, 36, 29, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(44, 36, 29, 0.1);
  border-color: var(--gold-primary);
}

.amenity-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.3);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
}

.amenity-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-espresso);
}

.amenity-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   6. ROOMS & ACCOMMODATION SECTION
   -------------------------------------------------------------------------- */
.room-filter-container,
.gallery-filter-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.room-filter-btn {
  padding: 0.65rem 1.65rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-gold);
  color: var(--text-espresso);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(44, 36, 29, 0.04);
}

.room-filter-btn.active, .room-filter-btn:hover {
  background: var(--gold-royal-gradient);
  color: #241a08;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25);
}

/* --------------------------------------------------------------------------
   6. ROOMS & ACCOMMODATION GRID
   -------------------------------------------------------------------------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.room-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 36, 29, 0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(44, 36, 29, 0.12);
  border-color: var(--gold-primary);
}

.room-img-wrapper,
.room-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #f5eedf;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.room-card:hover .room-img {
  transform: scale(1.08);
}

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.room-overlay-specs {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 2;
  pointer-events: none;
}

.room-overlay-specs span {
  background: rgba(26, 20, 16, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.room-body,
.room-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.75rem;
  background: #ffffff;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.room-title {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--text-espresso);
  margin: 0 0 0.2rem 0;
  line-height: 1.25;
}

.room-category-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-price-box {
  text-align: right;
  flex-shrink: 0;
}

.room-price-val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  display: block;
  line-height: 1.1;
}

.room-price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.room-desc {
  font-size: 0.88rem;
  color: #5a524c;
  line-height: 1.55;
  margin: 0;
}

.room-amenities {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0.75rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-espresso);
}

.room-actions {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #ebe4d8;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.room-specs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.room-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.room-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-radius: var(--radius-sm);
  color: #7a5011;
}

.room-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #ebe4d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-price-container {
  display: flex;
  flex-direction: column;
}

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

.room-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

/* --------------------------------------------------------------------------
   7. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(44, 36, 29, 0.08);
  border: 1px solid var(--border-light);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 25, 23, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

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

.gallery-caption {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #fff0c2;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 15, 13, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  border: 2px solid var(--border-gold);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   8. LOCATION & NEARBY GUIDE
   -------------------------------------------------------------------------- */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.distance-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.distance-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--gold-primary);
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

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

.timeline-time {
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.attraction-item {
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(44, 36, 29, 0.04);
}

.attraction-icon {
  color: var(--gold-dark);
  font-size: 1.35rem;
}

.map-container {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 36, 29, 0.08);
  border: 1px solid var(--border-gold);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   9. GUEST REVIEWS & TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(44, 36, 29, 0.06);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(44, 36, 29, 0.1);
  border-color: var(--gold-primary);
}

.testimonial-card .stars {
  color: #c59b27;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.guest-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ebe4d8;
}

.guest-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fbf6ec;
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-name {
  font-weight: 700;
  color: var(--text-espresso);
  font-size: 0.95rem;
  display: block;
}

.stay-type {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* --------------------------------------------------------------------------
   10. AVENRA-INSPIRED LUXURY DEPARTMENT & BANQUET INQUIRIES
   -------------------------------------------------------------------------- */
.luxury-inquiries-container {
  position: relative;
  width: 100%;
}

.luxury-inquiry-intro .section-title {
  font-family: var(--font-royal, 'Cinzel', serif);
  letter-spacing: 1.5px;
  color: var(--text-espresso);
}

.luxury-lead-text {
  color: var(--text-muted);
}

.luxury-inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.luxury-inquiry-card {
  background: linear-gradient(170deg, #ffffff 0%, #fdfbf7 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.25rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(44, 36, 29, 0.08), 0 0 0 1px rgba(197, 155, 39, 0.1);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.luxury-inquiry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-royal-gradient);
}

.luxury-inquiry-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 22px 55px rgba(44, 36, 29, 0.14), 0 0 25px rgba(197, 155, 39, 0.2);
}

.luxury-inquiry-card.featured-luxury-card {
  border-color: var(--gold-primary);
  background: linear-gradient(170deg, #ffffff 0%, #fbf5ea 100%);
  box-shadow: 0 18px 45px rgba(197, 155, 39, 0.16);
}

.luxury-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a5011;
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.1rem;
}

.luxury-card-badge.gold-badge {
  background: var(--gold-royal-gradient);
  border-color: var(--gold-primary);
  color: #241a08;
}

.luxury-card-hotel-name {
  font-family: var(--font-royal, 'Cinzel', serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-espresso);
  margin: 0 0 0.4rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.luxury-card-dept {
  font-size: 0.92rem;
  color: var(--gold-dark);
  font-style: italic;
  display: inline-block;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.35);
  padding-bottom: 2px;
  font-weight: 600;
}

.luxury-officer-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}

.luxury-officer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(197, 155, 39, 0.25);
  font-size: 0.92rem;
}

.luxury-officer-row:last-child {
  border-bottom: none;
}

.officer-name {
  color: var(--text-espresso);
  font-weight: 600;
}

.officer-phone {
  color: #8c6812;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.officer-phone:hover {
  color: var(--accent-terracotta);
  text-decoration: underline;
}

.luxury-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.luxury-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.luxury-card-btn.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #15803d;
}

.luxury-card-btn.whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.luxury-card-btn.call {
  background: #fbf6ec;
  border: 1px solid var(--border-gold);
  color: #7a5011;
}

.luxury-card-btn.call:hover {
  background: var(--gold-royal-gradient);
  color: #241a08;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
}

/* --------------------------------------------------------------------------
   10B. RESERVATION FORM & CONTACT CARD
   -------------------------------------------------------------------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.booking-form-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 16px 42px rgba(44, 36, 29, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-input, .form-select, .form-textarea {
  background: #faf6ee;
  border: 1px solid rgba(197, 155, 39, 0.25);
  color: var(--text-espresso);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.price-summary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.35rem;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 16px 42px rgba(44, 36, 29, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  font-size: 1.4rem;
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.25);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bank-details-box {
  background: #fdf8ee;
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 0.5rem;
}

/* Floating WhatsApp Button */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   11. AVENRA-STYLE WARM IVORY, CHAMPAGNE & ROYAL GOLD LUXURY FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, #fdf8ee 0%, #f4ece0 100%);
  color: var(--text-espresso);
  padding: 5.5rem 0 2.5rem 0;
  border-top: 3px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 155, 39, 0.6), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-title {
  font-family: var(--font-royal, 'Cinzel', serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-espresso);
}

.footer-brand .brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(44, 36, 29, 0.04);
  transition: var(--transition);
}

.footer-social-pill:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2);
}

.footer-title {
  font-family: var(--font-royal, 'Cinzel', serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-espresso);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-primary);
}

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

.footer-links a {
  color: var(--text-espresso);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a:hover {
  color: var(--gold-dark);
  padding-left: 6px;
  font-weight: 600;
}

.footer-contact-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-contact-info a {
  color: var(--gold-dark);
  font-weight: 600;
}

.footer-contact-info a:hover {
  color: var(--accent-terracotta);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(197, 155, 39, 0.3);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-lock-btn {
  color: var(--gold-dark);
  text-decoration: none;
  margin-left: 0.5rem;
  transition: var(--transition);
}

.admin-lock-btn:hover {
  color: var(--accent-terracotta);
}

/* --------------------------------------------------------------------------
   12. GUEST SELECTOR POPOVER & AVAILABILITY BANNER
   -------------------------------------------------------------------------- */
.guest-picker-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.guest-picker-trigger .guest-picker-arrow {
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}

.guest-picker-trigger.active .guest-picker-arrow {
  transform: rotate(180deg);
}

.guest-popover-card {
  position: absolute;
  bottom: calc(100% + 8px);
  top: auto;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  color: #1c1917;
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 -12px 40px rgba(44, 36, 29, 0.2), 0 4px 16px rgba(44, 36, 29, 0.08);
  border: 1px solid var(--border-gold);
  z-index: 9999999;
  display: none;
  animation: popoverFadeInUp 0.2s ease-out;
}

.guest-popover-card.open {
  display: block;
}

@keyframes popoverFadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.guest-popover-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.guest-popover-info {
  display: flex;
  flex-direction: column;
}

.guest-popover-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-espresso);
}

.guest-popover-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.counter-box {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(197, 155, 39, 0.35);
  border-radius: 6px;
  background: #fbf6ec;
}

.counter-btn {
  background: transparent;
  border: none;
  color: var(--gold-dark);
  font-size: 18px;
  font-weight: bold;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.counter-btn:hover:not(:disabled) {
  background: #ffffff;
  color: #7a5011;
}

.counter-btn:disabled {
  color: #d6cfc2;
  cursor: not-allowed;
}

.counter-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-espresso);
  min-width: 32px;
  text-align: center;
}

.guest-popover-divider {
  height: 1px;
  background: #ebe4d8;
  margin: 0.9rem 0;
}

.pets-header-row {
  margin-bottom: 0.35rem;
}

.pets-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-espresso);
}

.pets-help-text {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: -2px;
  margin-bottom: 16px;
}

.pets-link {
  color: var(--gold-dark);
  text-decoration: none;
  display: block;
  margin-top: 2px;
  font-weight: 600;
}

.pets-link:hover {
  text-decoration: underline;
}

.btn-guest-done {
  width: 100%;
  height: 44px;
  background: var(--gold-royal-gradient);
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  color: #241a08;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-guest-done:hover {
  filter: brightness(1.05);
}

.availability-banner {
  background: linear-gradient(135deg, #ffffff 0%, #fdf8ee 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.15);
  animation: bannerFade 0.4s ease;
}

@keyframes bannerFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d6cfc2;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

input:checked + .toggle-slider {
  background-color: var(--gold-primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* --------------------------------------------------------------------------
   13. CMS & REVIEW MODALS
   -------------------------------------------------------------------------- */
.cms-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 25, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cms-modal.active {
  display: flex;
}

.cms-modal-content {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  color: var(--text-espresso);
}

.cms-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
}

.cms-modal-close:hover {
  color: var(--text-espresso);
}

.cms-tabs-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ebe4d8;
  padding-bottom: 0.75rem;
  overflow-x: auto;
}

.cms-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  background: #fbf6ec;
  border: 1px solid rgba(197, 155, 39, 0.25);
  color: var(--text-espresso);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cms-tab-btn.active, .cms-tab-btn:hover {
  background: var(--gold-royal-gradient);
  color: #241a08;
  border-color: var(--gold-primary);
}

.cms-room-edit-box {
  background: #fdfaf4;
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.cms-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ebe4d8;
}

/* ==========================================================================
   14. COMPREHENSIVE MULTI-DEVICE RESPONSIVE SYSTEM (ALL SCREENS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   A. LAPTOPS & INTERMEDIATE DESKTOPS (max-width: 1200px)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-split-grid {
    gap: 2.5rem;
  }
  .hero-pool-img-box {
    height: 310px;
  }
  .about-grid {
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 2.5rem;
  }
  .packages-wrapper {
    padding: 2rem;
  }
}

/* --------------------------------------------------------------------------
   B. TABLETS & SMALL LAPTOPS (max-width: 992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  /* Layout Grids */
  .hero-split-grid,
  .about-grid,
  .location-wrapper,
  .contact-wrapper,
  .booking-flow-grid,
  .contact-split-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.75rem;
  }

  .events-venues-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .luxury-inquiry-grid {
    grid-template-columns: 1fr !important;
    max-width: 540px;
    margin: 1.5rem auto 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem 2rem;
  }

  .quick-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .quick-bar-grid .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

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

  .hero-subtitle {
    margin: 0 auto 1.75rem auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-pool-showcase {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  /* About stacking */
  .about-image-stack {
    max-width: 520px;
    margin: 2rem auto 0;
  }
}

/* --------------------------------------------------------------------------
   C. TABLETS PORTRAIT & LARGE PHONES (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Navbar & Brand */
  .navbar-container {
    gap: 0.75rem;
  }

  .brand-title {
    font-size: 1.12rem;
    letter-spacing: 1.5px;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 1.2px;
  }

  .logo-img {
    height: 40px;
  }

  /* Section Padding */
  .section {
    padding: 3.5rem 0;
  }

  /* Hero & Availability Bar */
  .hero-title {
    font-size: clamp(1.9rem, 6vw, 2.75rem);
    line-height: 1.2;
  }

  .sinhala-tagline-pill {
    font-size: 0.84rem;
    padding: 0.5rem 1.1rem;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-quick-bar {
    padding: 1.25rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .quick-bar-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .guest-popover-card {
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Rooms Grid */
  .rooms-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .room-card-img-box {
    height: 230px;
  }

  /* Tables & Packages */
  .packages-wrapper {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }

  .package-tabs {
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .tab-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  .offers-table th,
  .offers-table td {
    padding: 0.85rem 0.9rem;
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 0.9rem;
    font-size: 0.88rem;
  }

  /* About image collage on mobile */
  .about-image-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-img-main,
  .about-img-sub {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    width: 100%;
  }

  .about-img-sub {
    border-width: 3px;
  }

  /* Attractions & Stats */
  .attractions-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.25rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Forms */
  .booking-form-card,
  .booking-form-box,
  .contact-form-box,
  .lookup-card,
  .voucher-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .flyer-preview-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem 1.25rem;
    gap: 1.25rem;
  }

  .flyer-preview-banner .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   D. STANDARD SMARTPHONES (max-width: 576px)
   -------------------------------------------------------------------------- */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6.8vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

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

  .hero-pool-img-box {
    height: 240px;
  }

  .hero-pool-title {
    font-size: 1.1rem;
  }

  .hero-pool-desc {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  /* Badges */
  .badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  /* Room choice on booking page */
  .room-choice-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .room-choice-img {
    width: 100%;
    height: 140px;
  }

  .room-choice-details {
    width: 100%;
  }

  /* Voucher grid */
  .voucher-grid {
    grid-template-columns: 1fr;
  }

  .voucher-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* CMS Modal */
  .cms-modal {
    padding: 0.75rem;
  }

  .cms-modal-content {
    padding: 1.25rem;
    max-height: 94vh;
  }
}

/* --------------------------------------------------------------------------
   E. COMPACT & SMALL SMARTPHONES (max-width: 380px)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  .brand-title {
    font-size: 0.95rem;
    letter-spacing: 0.8px;
  }

  .brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.8px;
  }

  .logo-img {
    height: 34px;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .sinhala-tagline-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

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

  .quick-input {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }

  .room-amenities {
    grid-template-columns: 1fr;
  }

  .room-actions {
    flex-direction: column;
    width: 100%;
  }

  .room-actions .btn {
    width: 100%;
  }
}
