/* Root Color Variables */
    :root {
      --primary: #8B5A2B;
      --primary-light: #D4A76A;
      --secondary: #5C832F;
      --dark: #3A3226;
      --light: #F8F1E5;
      --white: #FFFFFF;
      --black: #333333;
      --gray: #777777;
      --gray-light: #EEEEEE;
      --success: #28a745;
      --warning: #ffc107;
      --danger: #dc3545;
      --info: #17a2b8;
    }

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Base and Alternating Backgrounds */
.section {
  padding: 80px 0;
}
.section:nth-child(even) {
  background-color: var(--light);
  padding: 100px 0; /* Increased padding for even sections */
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .subheading {
  display: block;
  font-size: 16px;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.section-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--dark);
}
.section-header .divider {
  width: 80px;
  height: 3px;
  background: var(--primary-light);
  margin: 0 auto 20px;
}
.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-book-btn {
    display: none;
   
  }

/* Hero Section */
.hero {
  min-height: 80vh;
  margin-top: 110px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.background-slider {
  position: absolute;
  top: 0; left: 0;
  width: 500%;
  height: 100%;
  display: flex;
  animation: slideBackground 180s infinite;
  z-index: 0;
}
.background-slide {
  width: 20%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.background-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(201, 168, 118, 0.3));
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  margin-top: 60px;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
  animation: slideInLeft 1s ease-out;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.hero-highlight {
  color: #c9a876;
  position: relative;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.feature-item i {
  color: #c9a876;
  font-size: 1.2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll a {
  color: var(--white);
  font-size: 24px;  
}

.slide-0 {  background-image: url('/images/slide1.jpeg');  }
.slide-1 {  background-image: url('/images/slide2.jpeg');  }
.slide-2 {  background-image: url('/images/slide-7.jpeg');  }
.slide-3 {  background-image: url('/images/slide-8.jpeg');  }
.slide-4 {  background-image: url('/images/slide-3.jpeg');  }
.slide-5 {  background-image: url('/images/slide-4.jpeg');  }
.slide-0, .slide-1, .slide-2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

/* Animations */
@keyframes slideBackground {
  0% { transform: translateX(0); }
  20% { transform: translateX(-20%); }
  40% { transform: translateX(-40%); }
  60% { transform: translateX(-60%); }
  80% { transform: translateX(-80%); }
  100% { transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Room Checker Card */
.room-checker {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideInRight 1s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0; /* reset margin */
}
.checker-header {
  text-align: center;
  margin-bottom: 2rem;
}
.checker-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.checker-header p {
  color: #666;
  font-size: 0.95rem;
}

/* Availability Results Modal */
.availability-results-modal {
  margin-top: 20px;
  max-height: 300px;
  overflow-y: auto;
}
.availability-results-modal .room-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.availability-results-modal .room-option:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}
.availability-results-modal .room-info h4 {
  margin: 0 0 5px 0;
  color: #333;
}
.availability-results-modal .room-info p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.availability-results-modal .room-price {
  text-align: right;
}
.availability-results-modal .price {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
}
.availability-results-modal .per-night {
  font-size: 12px;
  color: #888;
}
.availability-results-modal .total-price {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}
.availability-results-modal .book-room-btn {
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}
.no-rooms {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

/* Form Base */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.form-control:focus {
  outline: none;
  border-color: #c9a876;
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.guest-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.btn-check {
  background: linear-gradient(135deg, #c9a876, #b8956a);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
  width: 100%;
}
.btn-check:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 118, 0.4);
}
.btn-check:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Loading Spinner */
.loading-spinner {
  display: none;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Availability Results */
.availability-results {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}
.availability-results.show {
  display: block;
}
.room-option {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.room-option:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}
.room-option.selected {
  background: linear-gradient(135deg, rgba(201, 168, 118, 0.1), rgba(184, 149, 106, 0.1));
  border: 2px solid #c9a876;
}
.room-info h4 {
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.room-info p {
  color: #666;
  font-size: 0.85rem;
}
.room-price {
  text-align: right;
}
.room-price .price {
  color: #c9a876;
  font-weight: 700;
  font-size: 1.2rem;
}
.room-price .per-night {
  color: #666;
  font-size: 0.8rem;
}
.book-room-btn {
  background: linear-gradient(135deg, #c9a876, #b8956a);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.book-room-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
}

/* Content Sections */
.content-sections {
  position: relative;
  z-index: 10;
  background: white;
}
.section {
  padding: 5rem 0;
  min-height: 80vh;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography reuse for section headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.subheading {
  color: #c9a876;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #c9a876, #b8956a);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* Room Grid */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Room Card */
.room-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.room-image {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.room-card-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(201, 168, 118, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
}
.room-card-info {
  padding: 1.5rem;
}

.room-card-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #333;
  text-transform: capitalize;
}   

.room-features {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.room-features i {
  color: #c9a876;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-image img {
  transform: scale(1.05);
}
.room-info {
  padding: 25px;
}
.room-info h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.room-info p {
  color: var(--gray);
  margin-bottom: 20px;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.room-features li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--gray);
}
.room-features i {
  margin-right: 5px;
  color: var(--primary);
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.header.scrolled .nav-list a {
  color: var(--black);
}
.header.scrolled .logo img {
  height: 70px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 70px;
  transition: none;
}
.nav-list {
  display: flex;
  align-items: center;
   list-style: none;
}
.nav-list li {
  margin-left: 30px;
}
.nav-list a {
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  color: var(--dark);
  text-decoration: none;
}
.nav-list a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}
.nav-list a:hover:after {
  width: 100%;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header.scrolled .menu-toggle span {
  background: var(--black);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Booking Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}
.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideInUp 0.3s ease;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #333;
}
.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.close-modal:hover {
  background: #f5f5f5;
  color: #333;
}

/* Booking Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.form-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #c9a876;
}
.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.form-section-title i {
  color: #c9a876;
  font-size: 1.3rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.form-grid-full {
  grid-column: 1 / -1;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}
.payment-method {
  flex: 1;
  border: 2px solid #e1e1e1;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.payment-method:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.payment-method.selected {
  border-color: var(--primary);
  background-color: #D4A76A;
}
.payment-method img {
  height: 30px;
  margin-bottom: 10px;
}
.payment-method i {
  font-size: 2rem;
  color: #c9a876;
}
.payment-fields {
  display: none;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

/* Alerts */
.alert-message {
  background-color: #f8f9fa;
  border-left: 4px solid #d4af37;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
  color: #333;
}
.alert-message p {
  margin: 0;
}

/* Summary Card */
.summary-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  grid-column: 1 / -1;
  border: 1px solid #e1e1e1;
  text-align: center;
  color: var(--secondary);
}
.summary-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-title i {
  margin-right: 10px;
  color: var(--primary);
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.summary-total {
  font-weight: 600;
  font-size: 18px;
  border-top: 1px solid #e1e1e1;
  padding-top: 10px;
  margin-top: 10px;
}

/* Terms Checkbox */
.terms-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  grid-column: 1 / -1;
}
.terms-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #c9a876;
}

/* Submit Button */
.btn-submit {
  grid-column: 1 / -1;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}
.btn-submit:hover {
  background: #c2a030;
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Content Grids like Amenities, Experiences, Testimonials, Footer */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.amenity-card {
  background: var(--white);
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.amenity-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 30px;
}
.amenity-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}
.amenity-card p {
  color: var(--gray);
}

/* Experience Slider */
.experience-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.experience-slide {
  min-width: calc(33.333% - 20px);
  scroll-snap-align: start;
}
.experience-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  position: relative;
}
.experience-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: var(--white);
  border-radius: 0 0 5px 5px;
}
.experience-overlay h3 {
  margin-bottom: 10px;
}
.experience-overlay p {
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
  background: var(--light);
}
.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.testimonial {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.rating {
  color: var(--primary-light);
  margin-bottom: 20px;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray);
}
.guest-info {
  display: flex;
  align-items: center;
}
.guest-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.guest-info h4 {
  font-family: 'Inter', sans-serif;
  margin-bottom: 5px;
}
.guest-info span {
  font-size: 14px;
  color: var(--gray);
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&w=2080&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}
.cta-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.cta-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}
.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--primary-light);
  color: var(--dark);
}
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
}
.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}
.contact-info li {
  display: flex;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.contact-info i {
  margin-right: 15px;
  color: var(--primary-light);
}
.newsletter-form {
  display: flex;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
}
.newsletter-form button {
  border-radius: 0 4px 4px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-light);
}

/* Spinner Animation (reused) */
.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

/* Responsive Design */

/* Large devices and tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-content {
    gap: 30px;
  }
  .about-image {
    width: 50%;
    padding: 0 20px;
  }
  .image-stack {
    height: 500px;
  }
  .image-stack-top,
  .image-stack-bottom {
    width: 75%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  }
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium and smaller devices */
@media (max-width: 992px) {
  .hero {
    min-height: 600px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .about-image {
    order: -1;
  }
  .about-content {
    flex-direction: column;
  }
  .image-stack {
    height: 400px;
    margin-top: 40px;
  }
  .experience-slide {
    min-width: calc(50% - 15px);
  }
  .testimonial {
    min-width: calc(50% - 15px);
  }
}

/* Tablets and below */
@media (max-width: 768px) {
   .availability-results {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    z-index: 100;
    padding: 20px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
   .hero {
    margin-top: 80px; /* Height of the header */
    height: calc(100vh - 80px);
    min-height: calc(100vh - 80px);
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  .room-checker {
    margin-top: 2rem;
    display: none;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  .modal-content {
    margin: 1rem;
    max-width: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .payment-methods {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 10px;
  }
  .bank-options {
    grid-template-columns: 1fr;
  }
  .alert-message,
  .terms-check,
  .summary-card {
    display: none;
  }
  .btn-submit {
    padding: 16px;
    font-size: 16px;
    margin-top: 0;
    width: 100%;
  }
  input[type="date"] {
    appearance: none;
    min-height: 44px;
    width: 100%;
  }
  .btn:hover,
  .payment-method:hover {
    transform: none;
  }
  .testimonial {
    min-width: 100%;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .header {
    width: 100vw;
    max-width: 100%;
    left: 0;
    right: 0;
    padding: 20px 15px;
  }
  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .menu-toggle {
    display: flex;
   
  }
   .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-top: 60px;
  }
  .nav-list.active {
    right: 0;
  }
  .nav-list li {
    margin: 20px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
  }
   .nav-list.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-list a {
    color: var(--black);
    font-size: 18px;
  }

  .nav-list.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-list.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-list.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-list.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-list.active li:nth-child(5) { transition-delay: 0.5s; }

  .nav-list a {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
  }
  
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-container {
    padding: 0 0.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .room-checker {
    padding: 1rem;
    border-radius: 12px;
  }

  .checker-header h3 {
    font-size: 1.2rem;
  }

  .form-control {
    padding: 10px;
  }

  .btn-check {
    padding: 12px;
    font-size: 0.95rem;
  }
}


/* Extra Small Devices */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero .subtitle {
    font-size: 18px;
  }
  .room-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form input {
    width: 100%;
    border-radius: 4px;
    border-right: 1px solid #ddd;
  }
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }
  .payment-method img {
    height: 25px;
  }
}

@media (max-width: 768px) {
  .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dim background when menu is open */
  z-index: 998; /* just below the .nav-list (z-index: 999) */
  display: none; /* hidden by default */
}

.nav-overlay.active {
  display: block;
}
  .nav-book-btn {
    display: none !important;
  }
  .mobile-book-btn {
    display: block;
   
  }
  
}

/* Overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Removed duplicate spinner keyframe and other repeated animation declarations */