/* 
   NUTMEG INN Homestay - Stylesheet
   Design System: Premium Glassmorphism & Gold Gradient Theme
   Fonts: Playfair Display (Serif Luxury) & Outfit (Modern Sans)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --primary-white: #ffffff;
  --bg-light: #f6f8f9;
  --bg-dots: rgba(0, 0, 0, 0.02);
  --text-dark: #1e2530;
  --text-medium: #4a5468;
  --text-light: #718096;
  
  /* Gold Gradients & Accents */
  --gold-light: #ffe07d;
  --gold-mid: #d4af37;
  --gold-dark: #b38728;
  --gold-solid: #d4af37;
  --gold-gradient: linear-gradient(135deg, #ffe07d 0%, #d4af37 50%, #b38728 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(255, 224, 125, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fff099 0%, #e6b800 50%, #997315 100%);
  
  /* Glassmorphism Specs */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dense: rgba(255, 255, 255, 0.9);
  --glass-bg-dark: rgba(30, 37, 48, 0.05);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-border-gold: rgba(212, 175, 55, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04), 0 4px 16px 0 rgba(212, 175, 55, 0.06);
  --glass-shadow-large: 0 16px 48px 0 rgba(31, 38, 135, 0.08), 0 8px 24px 0 rgba(212, 175, 55, 0.12);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(circle at 100% 150px, rgba(212, 175, 55, 0.08) 0%, transparent 400px),
    radial-gradient(circle at 0% 800px, rgba(212, 175, 55, 0.05) 0%, transparent 400px),
    radial-gradient(circle at 100% 1600px, rgba(212, 175, 55, 0.06) 0%, transparent 450px);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-mid);
  border: 3px solid var(--bg-light);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-medium);
  font-weight: 300;
}

/* Glassmorphism Containers */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  box-shadow: var(--glass-shadow-large);
  border-color: rgba(255, 255, 255, 0.6);
}

.glass-panel-gold {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-gold);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

/* Accent Borders */
.gold-border-top {
  position: relative;
}
.gold-border-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 0 0 3px 3px;
}

/* Button & Link Styles */
.btn-gold {
  background: var(--gold-gradient);
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-mid);
  padding: 0.7rem 1.7rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Navigation Menu */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff; /* White initially */
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.1;
}

header.scrolled .logo {
  color: var(--text-dark); /* Dark when scrolled */
}

.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffe07d; /* Lighter gold initially */
  display: block;
  margin-top: 2px;
}

header.scrolled .logo-sub {
  color: var(--gold-dark);
}

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

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85); /* Lighter initially */
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

header.scrolled .nav-link {
  color: var(--text-medium); /* Darker when scrolled */
}

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

.nav-link:hover {
  color: #ffffff;
}

header.scrolled .nav-link:hover {
  color: var(--gold-dark);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff; /* White toggler spans initially */
  margin: 5px 0;
  transition: var(--transition-fast);
}

header.scrolled .nav-toggle span {
  background: var(--text-dark); /* Dark toggler spans when scrolled */
}

.nav-toggle.active span {
  background: var(--text-dark) !important; /* Always dark when menu is expanded */
}

/* Sections Layout */
section {
  padding: 7rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #0b111e;
  overflow: hidden;
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 17, 30, 0.4) 0%, rgba(11, 17, 30, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 850px;
  padding: 2rem;
  color: var(--primary-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s var(--transition-smooth) forwards;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.2s var(--transition-smooth) forwards;
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.4s var(--transition-smooth) forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1.6s var(--transition-smooth) forwards;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-medium);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-card {
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.highlight-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.highlight-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-light);
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/5;
}

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

.about-img-wrapper:hover .about-img {
  transform: scale(1.08);
}

.about-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 1.5rem;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
}

.about-floating-badge span.num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-solid);
  line-height: 1;
}

.about-floating-badge span.txt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-medium);
  margin-top: 4px;
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  list-style: none;
}

.filter-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: var(--primary-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 37, 48, 0.8) 0%, rgba(30, 37, 48, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-hover-tag {
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-hover-title {
  color: var(--primary-white);
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.gallery-hover-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-solid);
  font-size: 0.95rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

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

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

.gallery-item:hover .gallery-hover-tag,
.gallery-item:hover .gallery-hover-title {
  transform: translateY(0);
}

.gallery-item:hover .gallery-hover-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 17, 30, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: contain;
}

.lightbox-caption {
  color: #fff;
  margin-top: 1.5rem;
  text-align: center;
}

.lightbox-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.lightbox-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-light);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* Rooms & Suites Section */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.room-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
}

.room-gallery {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

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

.room-gallery-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator-dot.active {
  background: var(--gold-solid);
  width: 25px;
  border-radius: 5px;
}

.room-details {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-class {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.room-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.room-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.room-price span.lbl {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
}

.room-price span.amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--gold-solid);
}

.room-desc {
  margin-bottom: 2rem;
  color: var(--text-medium);
  font-size: 1rem;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.spec-item i {
  color: var(--gold-solid);
  font-size: 1.1rem;
  width: 20px;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gold-gradient-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-solid);
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--gold-gradient);
  color: #fff;
  transform: rotateY(180deg);
}

.amenity-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

/* Booking Estimator Section */
.booking-section {
  position: relative;
  background-attachment: fixed;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.booking-info p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem;
  border-radius: 12px;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 120px;
  margin-top: 0.75rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--gold-solid);
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-light);
}

.estimator-card {
  padding: 3rem 2.5rem;
  border-radius: 24px;
}

.estimator-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  background: var(--primary-white);
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.estimator-summary {
  background: rgba(212, 175, 55, 0.04);
  border: 1px dashed var(--glass-border-gold);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.summary-row.total {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.summary-row.total .total-amount {
  color: var(--gold-dark);
}

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

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

.testimonial-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating-stars {
  color: var(--gold-solid);
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1.25rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-mid);
}

.testimonial-author h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Booking Buttons layout */
.booking-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Map Section */
.map-section {
  padding: 0;
  height: 500px;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  z-index: 10;
}

.map-card {
  position: absolute;
  top: 3rem;
  left: 3rem;
  z-index: 100;
  width: 360px;
  padding: 2rem;
  pointer-events: auto;
}

.map-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.map-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.map-card p i {
  color: var(--gold-solid);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Footer Section */
footer {
  background: #0e131d;
  color: #fff;
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-area h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-logo-area p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-contact-item i {
  color: var(--gold-solid);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.footer-contact-item:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .about-grid, .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .room-card {
    grid-template-columns: 1fr;
  }
  
  .room-gallery {
    height: 380px;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-logo-area {
    grid-column: span 2;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu .nav-link {
    color: var(--text-dark) !important;
  }
  
  .nav-menu .nav-link:hover {
    color: var(--gold-dark) !important;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
    z-index: 1000;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .lightbox-prev, .lightbox-next {
    display: none !important; /* Hide arrows on touch devices to simplify layout */
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .map-section {
    height: 600px;
  }
  
  .map-card {
    top: auto;
    bottom: 2rem;
    left: 1rem;
    right: 1rem;
    width: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-logo-area {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .estimator-card {
    padding: 2rem 1.5rem;
  }
  
  .highlight-card {
    grid-column: span 2;
  }
}
