/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES - SRI ABHIRAMI RESIDENCY THIRUKADAIYUR
   ========================================================================== */

:root {
  --primary-maroon: #5B0612;
  --secondary-maroon: #7D091A;
  --primary-gold: #D4AF37;
  --gold-hover: #B8860B;
  --accent-ivory: #FDFBF7;
  --card-bg: #FFFFFF;
  --text-dark: #1F2421;
  --text-muted: #555555;
  --border-color: #E8E2D5;
  --shadow-sm: 0 4px 12px rgba(91, 6, 18, 0.08);
  --shadow-md: 0 8px 24px rgba(91, 6, 18, 0.12);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--accent-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--primary-maroon);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: #F8F5EE;
}

.bg-maroon {
  background-color: var(--primary-maroon);
  color: #FFFFFF;
}

.text-gold {
  color: var(--primary-gold);
}

.text-center {
  text-align: center;
}

.max-w-800 {
  max-width: 800px;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.margin-top-md {
  margin-top: 24px;
}

.margin-top-lg {
  margin-top: 40px;
}

.margin-top-xl {
  margin-top: 60px;
}

.full-width {
  width: 100%;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.top-bar {
  background-color: var(--primary-maroon);
  color: var(--accent-ivory);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-contacts {
  display: flex;
  gap: 18px;
  align-items: center;
}

.top-contacts a {
  color: var(--primary-gold);
  font-weight: 500;
}

.wa-top-btn {
  background-color: #25D366;
  color: #FFF !important;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.main-header {
  background: rgba(255, 255, 255, 1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2.2rem;
}

.brand-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-maroon);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.brand-highlight {
  color: var(--primary-gold);
  font-weight: 900;
}

.hotel-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-hover));
  color: var(--primary-maroon);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  vertical-align: middle;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.brand-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--gold-hover);
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

@media (max-width: 576px) {
  .logo-area {
    gap: 8px;
  }
  .brand-title {
    font-size: 1.15rem;
  }
  .brand-sub {
    font-size: 0.65rem;
    line-height: 1.2;
    max-width: 190px;
    white-space: normal;
  }
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-maroon);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-gold);
  border-radius: 2px;
}

.book-now-btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-hover));
  color: #1A1A1A;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   PAGE SECTIONS & ROUTING SYSTEM
   ========================================================================== */

.page-section {
  display: none;
}

.page-section.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-header-banner {
  background: linear-gradient(135deg, var(--primary-maroon), var(--secondary-maroon));
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-header-banner h1 {
  color: var(--primary-gold);
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-header-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  background: url('assets/temple_gopuram.png') no-repeat center center/cover;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding: 60px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(30, 2, 6, 0.85) 0%, rgba(91, 6, 18, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-primary-btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-hover));
  color: #111;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.cta-secondary-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.quick-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hl-icon {
  font-size: 1.8rem;
}

.hl-text {
  font-size: 0.85rem;
  line-height: 1.3;
}

.hl-text strong {
  display: block;
  color: var(--primary-gold);
  font-size: 0.95rem;
}

/* ==========================================================================
   GRID LAYOUTS & COMPONENTS
   ========================================================================== */

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-1col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.align-center {
  align-items: center;
}

.gap-md {
  gap: 24px;
}

.gap-lg {
  gap: 32px;
}

.gap-xl {
  gap: 48px;
}

.section-header {
  margin-bottom: 48px;
}

.section-tagline {
  color: var(--gold-hover);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.feature-checklist {
  list-style: none;
  margin-top: 24px;
}

.feature-checklist li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.about-image-card {
  position: relative;
}

.rounded-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.image-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-maroon);
  color: var(--primary-gold);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   FACILITIES STYLING
   ========================================================================== */

.facilities-section {
  position: relative;
  background: linear-gradient(135deg, rgba(248, 245, 238, 0.8), rgba(255, 255, 255, 1));
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.facility-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 226, 213, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.facility-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-gold), var(--primary-maroon));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.facility-item:hover::before {
  opacity: 1;
}

.facility-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.facility-item:hover .facility-icon-wrap {
  background: var(--primary-maroon);
  transform: scale(1.1) rotate(5deg);
}

.facility-content {
  flex: 1;
}

.facility-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-maroon);
  font-weight: 700;
}

.facility-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   ROOM CARDS & TARIFF STYLING
   ========================================================================== */

.room-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.room-card.featured-room {
  border: 2px solid var(--primary-gold);
}

.featured-ribbon {
  background: var(--primary-gold);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  padding: 4px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(91, 6, 18, 0.9);
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.room-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.room-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-amenities-pills span {
  background: #F2EFE9;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 4px;
  color: #444;
  font-weight: 500;
}

.room-card-footer {
  margin-top: auto;
}

.btn-primary {
  background: var(--primary-maroon);
  color: #FFFFFF;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--secondary-maroon);
}

.btn-gold {
  background: var(--primary-gold);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

.btn-outline-primary {
  background: transparent;
  border: 1.5px solid var(--primary-maroon);
  color: var(--primary-maroon);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  width: 100%;
  cursor: pointer;
}

.btn-outline-primary:hover {
  background: var(--primary-maroon);
  color: #FFF;
}

/* Detailed Room Page Layout */
.filter-card {
  background: #FFF;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.filter-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.filter-btn {
  background: #F5F1E8;
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-maroon);
  color: var(--primary-gold);
  border-color: var(--primary-maroon);
}

.room-detail-card {
  background: #FFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.room-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-detail-info {
  padding: 30px;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.detail-price {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--primary-maroon);
  font-weight: 800;
}

.detail-price small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: normal;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
  background: #FAF7F2;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* SEO Feature Boxes */
.seo-text-block h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.seo-feature-box {
  background: #FFF;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.seo-feature-box h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* ==========================================================================
   PACKAGES & TEMPLE GUIDE
   ========================================================================== */

.package-card {
  background: #FFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.package-card.featured-pkg {
  border: 2px solid var(--primary-gold);
  transform: scale(1.03);
}

.package-header {
  background: var(--primary-maroon);
  color: #FFF;
  padding: 24px;
  text-align: center;
}

.pkg-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pkg-badge.gold {
  background: var(--primary-gold);
  color: #000;
}

.package-header h3 {
  color: #FFF;
  font-size: 1.4rem;
}

.pkg-price {
  color: var(--primary-gold);
  font-weight: 700;
  margin-top: 6px;
}

.package-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-body ul {
  list-style: none;
  margin-bottom: 24px;
}

/* ==========================================================================
   MODAL & FORMS STYLING
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--card-bg);
  width: 90%;
  max-width: 550px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  background: var(--primary-maroon);
  color: #FFF;
  padding: 24px;
  position: relative;
}

.modal-header h2 {
  color: #FFF;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #FFF;
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.price-estimate {
  background: #F8F5EE;
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px dashed var(--primary-gold);
}

.estimate-label {
  font-weight: 600;
  color: var(--text-dark);
}

.estimate-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-maroon);
}


.package-body li {
  font-size: 0.92rem;
  margin-bottom: 10px;
}

/* Temple Guide Tables */
.timing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #FFF;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.timing-table th,
.timing-table td {
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.timing-table th {
  background: var(--primary-maroon);
  color: var(--primary-gold);
  font-family: var(--font-heading);
}

.distance-card {
  background: #FFF;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.distance-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
}

.distance-item:last-child {
  border-bottom: none;
}

.guide-box {
  background: #FFF9E6;
  border-left: 4px solid var(--primary-gold);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFF;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-maroon);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 18px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT & FORM STYLING
   ========================================================================== */

.contact-info-card,
.inquiry-form-card {
  background: #FFF;
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-detail-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.contact-detail-row .icon {
  font-size: 1.8rem;
}

.phone-link {
  color: var(--primary-maroon);
  font-weight: 700;
}

.wa-link-btn {
  display: inline-block;
  background: #25D366;
  color: #FFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 6px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-maroon);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & MODAL
   ========================================================================== */

.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 30px;
  color: #FFF;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s;
}

.float-btn:hover {
  transform: scale(1.05);
}

.float-wa {
  background: #25D366;
}

.float-call {
  background: var(--primary-maroon);
  border: 1px solid var(--primary-gold);
}

/* Modal Styling */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #FFF;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #888;
}

.price-summary-box {
  background: #FAF5E8;
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  border: 1px solid var(--primary-gold);
}

.price-summary-box strong {
  font-size: 1.5rem;
  color: var(--primary-maroon);
}

/* Footer */
.site-footer {
  background: #150205;
  color: #CCC;
  padding: 60px 0 20px 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {

  .grid-2col,
  .grid-3col,
  .room-detail-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .nav-menu {
    display: none;
    /* Can be toggled or responsive */
  }
}

/* ==========================================================================
   MOBILE & RESPONSIVE LAYOUT
   ========================================================================== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-maroon);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-icon {
  display: none;
}

.lang-select {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid var(--primary-gold);
  padding: 4px 8px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  font-size: 0.85rem;
}

@media (max-width: 768px) {

  /* Top bar compacting */
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 8px 0;
  }

  .top-bar-text {
    font-size: 0.8rem;
  }

  .top-contacts {
    gap: 15px;
  }

  .desktop-text {
    display: none;
  }

  .hide-mobile,
  .auth-text {
    display: none !important;
  }

  .mobile-icon {
    display: inline-block;
    font-size: 1.2rem;
  }

  /* Header compacting */
  .header-container {
    padding: 10px 0;
  }

  .logo-icon {
    font-size: 1.8rem;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .header-actions {
    margin-left: 0 !important;
    gap: 8px !important;
  }

  /* Hide nav menu and header action buttons on mobile screens */
  .nav-menu,
  .user-auth-btn,
  .book-now-btn {
    display: none !important;
  }
}

/* ==========================================================================
   MOBILE DRAWER & HAMBURGER STYLING
   ========================================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1060;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-maroon, #800000);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 991px) {
  .hamburger {
    display: flex !important;
  }
  .nav-menu,
  .user-auth-btn,
  .book-now-btn {
    display: none !important;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-modal {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  z-index: 1100;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
}

.mobile-drawer-modal.active {
  right: 0 !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-drawer-title {
  color: var(--primary-maroon);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-drawer-close {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-maroon);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-maroon);
  background: rgba(212, 175, 55, 0.12);
  border-left-color: var(--primary-gold);
  padding-left: 18px;
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   MODERN ACCORDION & FAQ COMPONENT
   ========================================================================== */
.faq-section-wrapper {
  background: #FFF;
  border-radius: 16px;
  padding: 45px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.faq-filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 25px 0 35px 0;
}

.faq-tab-btn {
  background: #F7F4EC;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
  background: var(--primary-maroon);
  color: var(--primary-gold);
  border-color: var(--primary-maroon);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.2);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-card {
  background: #FCFAFA;
  border: 1px solid #EFEAE1;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.faq-item-card.active {
  background: #FFFFFF;
  border-color: var(--primary-gold);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.faq-header-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-maroon);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.faq-header-btn .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item-card.active .faq-icon {
  background: var(--primary-maroon);
  color: var(--primary-gold);
  transform: rotate(180deg);
}

.faq-body-content {
  display: none;
  padding: 0 24px;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item-card.active .faq-body-content {
  display: block !important;
  max-height: 1000px !important;
  padding: 16px 24px 20px 24px !important;
  border-top: 1px dashed rgba(212, 175, 55, 0.4);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .faq-section-wrapper {
    padding: 25px 15px;
  }
  .faq-header-btn {
    font-size: 1rem;
    padding: 16px 18px;
  }
}

/* ==========================================================================
   SCROLL TO TOP PROGRESS BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-maroon, #800000);
  color: var(--primary-gold, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-gold);
  color: var(--primary-maroon);
}

.progress-circle {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  z-index: -1;
  transform: rotate(-90deg);
}

.progress-circle path {
  fill: none;
  stroke: var(--primary-gold);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 0.1s linear;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 20px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION
   ========================================================================== */
.mobile-bottom-nav {
  display: none; /* Hidden on desktop */
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 1050;
    justify-content: space-around;
    align-items: center;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px 20px 0 0;
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    font-size: 0.75rem;
    font-weight: 600;
    flex: 1;
    gap: 5px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .bottom-nav-item i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
  }

  .bottom-nav-item.active {
    color: var(--primary-maroon, #800000);
  }

  .bottom-nav-item.active i {
    color: var(--primary-maroon, #800000);
    transform: translateY(-2px);
  }

  .bottom-nav-item.book-now-item {
    color: var(--primary-maroon, #800000);
  }
  
  .bottom-nav-item.book-now-item.active {
    color: var(--primary-gold, #D4AF37);
  }

  .bottom-nav-item.book-now-item .book-now-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-hover, #B5952F));
    color: #111;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
  }

  .bottom-nav-item.book-now-item i {
    color: #111;
    font-size: 1.15rem;
  }

  .bottom-nav-item.book-now-item.active .book-now-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(212,175,55,0.5);
  }

  /* Add padding to body so content isn't hidden behind the nav bar */
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  }

  /* Adjust floating buttons upwards to prevent overlap */
  .floating-call {
    bottom: calc(85px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .floating-wa {
    display: none !important;
  }
  
  .back-to-top {
    bottom: calc(145px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ==========================================================================
   ENHANCED ANIMATED & SEO FOOTER STYLES
   ========================================================================== */
.main-footer {
  position: relative;
  background: #130205;
  color: #ddd;
  padding: 50px 0 25px 0;
  margin-top: 60px;
  border-top: 3px solid transparent;
}

.footer-animated-glow {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), #FFF, var(--primary-gold), transparent);
  background-size: 200% 100%;
  animation: footerGlow 3s linear infinite;
}

@keyframes footerGlow {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.footer-grid-wrapper {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 35px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .footer-grid-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.footer-brand-title {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
}

.footer-business-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.footer-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.footer-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.footer-pill:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.footer-heading {
  color: #FFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 10px;
}

.footer-link-list a {
  color: #BBB;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-list a:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #CCC;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-book-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-hover));
  color: #111;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.footer-book-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  color: #000;
}