/* ==========================================================================
   RIVERSIDE HOTEL — COMPONENTS & SECTIONS STYLING
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: var(--bg-dark-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

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

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

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
}

.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-terracotta);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-terracotta);
  transition: var(--transition);
}

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

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

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 32px;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background-color: var(--bg-dark);
  overflow: hidden;
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(20, 22, 26, 0.85) 0%,
    rgba(20, 22, 26, 0.4) 50%,
    rgba(20, 22, 26, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.stars {
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(245, 245, 240, 0.9);
  max-width: 720px;
  margin: 0 auto 2.25rem auto;
  font-weight: 400;
}

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

/* Quick Bar Floating */
.hero-quick-bar {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-dark);
}

.quick-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto;
  gap: 1.25rem;
  align-items: center;
}

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

.quick-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light-muted);
  font-weight: 600;
}

.quick-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.quick-input:focus {
  border-color: var(--accent-terracotta);
}

/* --------------------------------------------------------------------------
   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: rgba(46, 110, 106, 0.08);
  border-left: 4px solid var(--accent-teal);
  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: var(--accent-teal);
  margin-bottom: 0.5rem;
}

.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: var(--bg-light-card);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  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);
  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 var(--bg-light);
  z-index: 2;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   4. SPECIAL PACKAGES & OFFERS (FROM FLYER)
   -------------------------------------------------------------------------- */
.packages-wrapper {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  padding: 2.5rem;
  box-shadow: var(--shadow-dark);
}

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light-muted);
  font-weight: 600;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--accent-terracotta);
  color: #ffffff;
  border-color: var(--accent-terracotta);
}

.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 var(--border-dark);
}

.offers-table th {
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
}

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

.offers-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.flyer-preview-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(46, 110, 106, 0.3), rgba(193, 98, 42, 0.3));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.amenity-card {
  background: var(--bg-light-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-terracotta);
}

.amenity-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
  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-dark);
}

.amenity-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.room-filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--text-light-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.room-filter-btn.active, .room-filter-btn:hover {
  background: var(--accent-terracotta);
  color: #ffffff;
  border-color: var(--accent-terracotta);
}

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

.room-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
  border-color: rgba(193, 98, 42, 0.5);
}

.room-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

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

.room-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
}

.room-title {
  font-size: 1.35rem;
  color: var(--text-light);
}

.room-specs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-light-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;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-light-muted);
}

.room-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
  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-light-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-filter-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.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: var(--shadow-sm);
}

.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(20, 22, 26, 0.6);
  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;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  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);
}

.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(--accent-terracotta);
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  border: 3px solid var(--bg-light);
}

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

.timeline-time {
  font-size: 0.875rem;
  color: var(--accent-terracotta);
  font-weight: 600;
}

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

.attraction-item {
  background: var(--bg-light-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.map-container {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

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

/* --------------------------------------------------------------------------
   9. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-style: italic;
  color: rgba(245, 245, 240, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.guest-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guest-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
}

.guest-details {
  display: flex;
  flex-direction: column;
}

.guest-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.stay-type {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   10. CONTACT & RESERVATION FORM
   -------------------------------------------------------------------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.booking-form-card {
  background: var(--bg-light-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

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

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

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fcfbfa;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-terracotta);
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(193, 98, 42, 0.15);
}

.price-summary-box {
  background: var(--bg-light-subtle);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

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

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

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bank-details-box {
  background: var(--bg-dark-card);
  border: 1px dashed var(--accent-terracotta);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   11. FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulseFab 3s infinite;
}

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

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

@keyframes pulseFab {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: #0d0f12;
  color: var(--text-light-muted);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-dark);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid, .location-wrapper, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark-card);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition);
  }

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

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

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

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

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

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

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

/* ==========================================================================
   13. DISCRETE ADMIN PANEL & CMS STYLES
   ========================================================================== */
.admin-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: var(--transition);
  margin-left: 0.5rem;
  cursor: pointer;
}

.admin-lock-btn:hover {
  color: var(--accent-terracotta);
  background: rgba(255, 255, 255, 0.08);
}

.admin-control-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #1c1f26, #c1622a);
  color: #ffffff;
  padding: 0.4rem 1.5rem;
  font-size: 0.85rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cms-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cms-modal-content {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-dark);
  color: var(--text-light);
}

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

.cms-modal-close:hover {
  color: var(--accent-terracotta);
}

.cms-tabs-header {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 1.75rem;
  overflow-x: auto;
}

.cms-tab-btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.cms-tab-btn.active {
  color: var(--accent-terracotta);
  border-bottom-color: var(--accent-terracotta);
}

.cms-room-edit-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.cms-gallery-item-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.cms-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
  gap: 1rem;
  flex-wrap: wrap;
}

