/* ==========================================================================
   THE COVANRO - LUXURY RESORT & SPA
   Main Stylesheet - Custom Modern Design System
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Custom Properties / Design Tokens --- */
:root {
  /* Colors */
  --brand-orange: #F57E20;
  --brand-orange-dark: #D46610;
  --brand-charcoal: #111111;
  --brand-charcoal-light: #252525;
  
  --primary-green: var(--brand-charcoal);
  --primary-green-light: var(--brand-charcoal-light);
  --accent-gold: var(--brand-orange);
  --accent-gold-dark: var(--brand-orange-dark);
  
  --bg-cream: #FAF8F5;
  --text-dark: #222222;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --bg-white: #FFFFFF;
  --error-red: #D93838;
  
  /* Glassmorphism & Overlays */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  --hero-overlay: rgba(0, 0, 0, 0.4);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Animations & Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-in-out;
  --transition-slow: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Structural */
  --container-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

.section-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 100px 24px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-green);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-gold);
  color: var(--text-light);
  padding: 14px 28px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 10px rgba(197, 168, 128, 0.2);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--accent-gold-dark);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
  border: 1px solid var(--accent-gold);
  color: var(--primary-green);
  padding: 12px 26px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--text-light);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(30, 56, 43, 0.85); /* Deep green transparent */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-slow);
}

.main-header.scrolled {
  background-color: var(--primary-green);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-slow);
}

.main-header.scrolled .nav-container {
  padding: 12px 24px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg-cream);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--accent-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: rgba(250, 248, 245, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--accent-gold);
}

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

.nav-link.active {
  color: var(--accent-gold);
}

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

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

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  z-index: 110;
}

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

/* ==========================================================================
   Hero Section & Booking Engine
   ========================================================================== */
.hero-section {
  position: relative;
  height: 95vh;
  width: 100%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.03);
  transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 24px;
  margin-top: -60px; /* Offset for booking bar */
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 600;
  display: inline-block;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

/* Floating Booking Engine */
.booking-engine-wrapper {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  z-index: 10;
}

.booking-panel {
  background: var(--brand-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  box-shadow: 0 12px 40px rgba(245, 126, 32, 0.25);
  padding: 24px 30px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: flex-end;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.input-wrapper {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.input-wrapper:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.15);
}

.input-wrapper select,
.input-wrapper input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 0.95rem;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.input-wrapper .input-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.booking-form button {
  height: 48px;
  width: 100%;
  min-width: 180px;
  background-color: var(--brand-charcoal) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  font-weight: 600;
}

.booking-form button::before {
  background-color: var(--brand-charcoal-light) !important;
}

.booking-form button:hover {
  background-color: var(--brand-charcoal-light) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   Welcome & Location Section
   ========================================================================== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.welcome-text-side {
  padding-right: 20px;
}

.welcome-text-side h2 {
  font-size: 2.8rem;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.welcome-divider {
  width: 80px;
  height: 2px;
  background-color: var(--accent-gold);
  margin-bottom: 30px;
}

.welcome-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.location-snippet {
  margin-top: 36px;
  background: var(--bg-white);
  border-left: 3px solid var(--accent-gold);
  padding: 20px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.location-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-green);
  margin-bottom: 8px;
  display: block;
}

.location-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.welcome-image-side {
  display: flex;
  gap: 20px;
  align-items: center;
}

.image-back {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.image-front {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.welcome-image-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-slow);
}

.welcome-image-side:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   Accommodations Section
   ========================================================================== */
.accommodations-section {
  background-color: var(--bg-white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.room-card {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.room-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.room-price-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-green);
  color: var(--text-light);
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.room-price-badge span {
  color: var(--accent-gold);
}

.room-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-stars {
  color: var(--accent-gold);
  font-size: 0.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.room-card-title {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.room-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.room-specs {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.spec-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

.room-card .btn-secondary {
  width: 100%;
}

/* ==========================================================================
   Interactive Experiences & Banquets Section
   ========================================================================== */
.experience-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tabs-navigation {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 40px;
}

.tab-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 0;
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--primary-green);
}

.tab-btn.active {
  color: var(--primary-green);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  animation: fadeIn 0.6s ease-in-out;
}

.tab-panel.active {
  display: grid;
}

.tab-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 3;
}

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

.tab-info {
  padding: 20px 0;
}

.tab-info h3 {
  font-size: 2.2rem;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.tab-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.tab-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.tab-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.tab-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   Facilities Grid Section
   ========================================================================== */
.facilities-section {
  background-color: var(--primary-green);
  color: var(--text-light);
}

.facilities-section .section-title {
  color: var(--text-light);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.facility-card {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 30px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: var(--transition-smooth);
  color: var(--text-light);
}

.facility-card:hover {
  background-color: var(--accent-gold);
  color: var(--text-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(245, 126, 32, 0.25);
  border-color: var(--accent-gold);
}

.facility-icon-wrap {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.facility-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-gold);
  transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon-wrap {
  background-color: var(--text-light);
}

.facility-card:hover .facility-icon-wrap svg {
  fill: var(--accent-gold);
}

.facility-card h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.facility-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.facility-card:hover p {
  color: var(--text-light);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  position: relative;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.testimonial-slider-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: 20px;
  display: none;
  animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote-icon {
  color: var(--accent-gold);
  font-size: 3rem;
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-green);
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-top: 4px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--accent-gold);
  color: var(--text-light);
}

.slider-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   Immersive Room details Modal
   ========================================================================== */
.room-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.room-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-cream);
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: var(--border-radius-md);
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.room-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--accent-gold);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.modal-image-banner {
  height: 380px;
  width: 100%;
  position: relative;
}

.modal-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 40px 40px 20px 40px;
  color: var(--text-light);
}

.modal-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.modal-room-details h4 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 10px;
}

.modal-room-details p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.modal-amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.modal-amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.modal-amenities-list li svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.modal-booking-sidebar {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  align-self: flex-start;
}

.sidebar-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  text-align: center;
}

.sidebar-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.modal-quick-booking {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-quick-booking .input-group label {
  font-size: 0.7rem;
}

.modal-quick-booking button {
  margin-top: 10px;
  width: 100%;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-wrap {
  background-color: var(--primary-green);
  color: var(--text-light);
  padding-top: 100px;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.footer-about .logo-main {
  color: var(--text-light);
  font-size: 1.4rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter-input-wrap {
  display: flex;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.newsletter-input-wrap input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  color: var(--text-light);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
}

.newsletter-input-wrap input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
}

.newsletter-btn {
  background-color: var(--accent-gold);
  color: var(--text-light);
  padding: 0 20px;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--accent-gold-dark);
}

.newsletter-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icons-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent-gold);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 30px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll Animation Trigger Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1),
              transform 1.0s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .section-container {
    padding: 80px 24px;
  }

  .section-title {
    font-size: 2.4rem;
  }
  
  .welcome-grid {
    gap: 40px;
  }
  
  .welcome-text-side h2 {
    font-size: 2.2rem;
  }
  
  /* Booking Engine: 2 columns to prevent layout compression */
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .booking-form button {
    grid-column: span 2;
  }
  
  /* Experience Tabs gap decrease */
  .tab-panel {
    gap: 30px;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 992px) {
  /* Trigger Mobile Navigation Menu for portrait tablets to prevent links squishing */
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-green);
    flex-direction: column;
    padding: 100px 40px;
    gap: 24px;
    transition: var(--transition-slow);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-menu-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .header-cta .btn-primary {
    display: none; /* Hide header book button */
  }
  
  /* Welcome grid transitions to stacked on portrait tablets */
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .welcome-text-side {
    padding-right: 0;
  }
  
  .welcome-image-side {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    height: auto;
    min-height: 95vh;
    padding: 120px 24px 80px 24px;
    display: flex;
    justify-content: center;
  }
  
  .hero-content {
    margin-top: 0;
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  /* Stacking the booking engine bar vertically inside the layout */
  .booking-engine-wrapper {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    padding: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .booking-form button {
    grid-column: span 1;
  }
  
  /* Experience Tab layout stacks */
  .tab-panel.active {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .tab-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .tab-features {
    grid-template-columns: 1fr;
  }
  
  /* Modal detail layout stacks */
  .modal-body {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-image-banner {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}
