/* ==========================================================================
   Barnawa Residential Inn - Luxury Stylesheet
   ========================================================================== */

/* Design Tokens & Custom Variables */
:root {
  --primary: #0F4C81;          /* Deep Royal Blue */
  --secondary: #D4AF37;        /* Luxury Gold */
  --secondary-hover: #B89028;  /* Slightly Darker Gold */
  --accent: #F8F5F0;           /* Warm Ivory */
  --dark: #1B1B1B;             /* Rich Charcoal */
  --dark-light: #252525;       /* Medium Charcoal */
  --highlight: #2E8B57;        /* Emerald Green */
  --white: #FFFFFF;
  --text-main: #E5E5E5;        /* Light Grey for Dark Backgrounds */
  --text-dark: #333333;        /* Dark Grey for Light Backgrounds */
  --text-muted: #A0A0A0;      /* Muted grey */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', Helvetica, Arial, sans-serif;
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(27, 27, 27, 0.65);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.3);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

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

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 2px solid var(--dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Helper Utilities */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem;
  width: 100%;
}

.text-center { text-align: center; }
.text-light { color: var(--white); }
.text-muted { color: var(--text-muted); }
.gold-text { color: var(--secondary); }
.relative-z { position: relative; z-index: 2; }
.align-center { align-items: center; }

/* Grid Layouts */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

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

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

/* Flex Utilities */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Section Header Styles */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 0.2rem;
}

.section-tag.light {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3rem;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, rgba(212, 175, 55, 0.2) 100%);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.divider-gold.center {
  margin: 0 auto 2.5rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, var(--secondary) 50%, rgba(212, 175, 55, 0.2) 100%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

.btn-md {
  padding: 0.9rem 2.2rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-gold {
  background: linear-gradient(135deg, #F5D375 0%, var(--secondary) 50%, #B89028 100%);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-header {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* Glassmorphism Card Style Base */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 8px;
  transition: var(--transition-smooth);
}



/* Main Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0;
}

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

.logo-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  position: relative;
  transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 100px; /* Space to clear fixed header */
  padding-bottom: 85px; /* Space to clear scroll indicator */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: bgZoom 25s infinite alternate ease-in-out;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-sans);
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.35;
  margin-bottom: 1.8rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Floating Statistics */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(27, 27, 27, 0.55);
}

.stat-icon {
  width: 36px;
  height: 36px;
  color: var(--secondary);
  stroke-width: 1.5;
}

.stat-number, .stat-numberCount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  margin-top: 0.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  animation: scrollWheel 1.5s infinite;
}

.arrows span {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid var(--white);
  border-right: 1.5px solid var(--white);
  transform: rotate(45deg);
  margin: -3px 0;
  animation: arrowScroll 1.5s infinite;
}

.arrows span:nth-child(2) {
  animation-delay: 0.15s;
}

/* 2. About Section */
.about-section {
  background-color: var(--dark-light);
}

.about-img-wrapper {
  position: relative;
}

.image-box {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.image-box:hover .about-img {
  transform: scale(1.04);
}

.luxury-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  padding: 1.5rem 2rem;
  text-align: center;
  border: 1px solid var(--secondary);
}

.badge-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--secondary);
  font-weight: 700;
}

.badge-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.decorative-dots {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(var(--secondary) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  z-index: 1;
  opacity: 0.25;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.about-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.gold-check {
  color: var(--secondary);
  width: 20px;
  height: 20px;
}

/* 3. Why Choose Us (Features) */
.features-section {
  background-color: var(--dark);
}

.feature-card {
  padding: 3rem 2rem;
  text-align: left;
  border-top: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-top: 3px solid var(--secondary);
  background: rgba(255, 255, 255, 0.06);
}

.feature-icon-box {
  width: 65px;
  height: 65px;
  background: rgba(15, 76, 129, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: var(--primary);
  border-color: var(--secondary);
  transform: rotate(5deg);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--secondary);
}

.feature-card:hover .feature-icon {
  color: var(--white);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

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

/* 4. Rooms Section */
.rooms-section {
  background-color: var(--dark-light);
}

.room-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.room-img-box {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.room-price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--dark);
  border: 1px solid var(--secondary);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-family: var(--font-sans);
}

.price-val {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
}

.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.room-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-name {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.room-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.room-features-list {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 0.5rem;
  flex-grow: 1;
}

.room-features-list li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
}

.room-features-list li i {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.room-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.room-actions .btn {
  flex: 1;
}

/* 5. Dining Experience Section */
.dining-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--dark);
}

.dining-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 27, 27, 0.95) 0%, rgba(15, 76, 129, 0.9) 100%);
  z-index: 1;
}

.dining-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}

.dining-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.dining-feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.dining-feature-item i {
  width: 28px;
  height: 28px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.dining-feature-item h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.dining-feature-item p {
  font-size: 0.9rem;
  color: #CCCCCC;
  margin-bottom: 0;
}

.dining-showcase {
  display: flex;
  justify-content: center;
}

.food-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
}

.dining-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.food-img-frame:hover .dining-img {
  transform: scale(1.05);
}

.dining-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-color: var(--secondary);
}

.gold-star {
  color: var(--secondary);
  fill: var(--secondary);
  width: 16px;
  height: 16px;
}

/* 6. Laundry & Hospitality */
.laundry-section {
  background-color: var(--dark-light);
}

.reverse {
  direction: ltr;
}

.laundry-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.laundry-card {
  padding: 2rem 1.5rem;
  text-align: left;
}

.laundry-icon {
  width: 32px;
  height: 32px;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.laundry-card h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.laundry-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.laundry-image-box {
  display: flex;
  justify-content: center;
}

.laundry-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.laundry-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.laundry-img-frame:hover .laundry-img {
  transform: scale(1.04);
}

.laundry-badge-floating {
  position: absolute;
  bottom: 25px;
  left: 25px;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-color: var(--secondary);
}

/* 7. Gallery Section */
.gallery-section {
  background-color: var(--dark);
}

.gallery-masonry {
  columns: 3 320px;
  column-gap: 1.5rem;
}

.gallery-item {
  position: relative;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-img {
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 129, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.gallery-overlay-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-overlay-icon {
  color: var(--secondary);
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-overlay-icon i {
  width: 24px;
  height: 24px;
}

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

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 27, 0.95);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

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

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition-fast);
}

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

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
  z-index: 1001;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--secondary);
  color: var(--dark);
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 4px;
  border: 2px solid var(--secondary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--accent);
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-sans);
}

/* 8. Testimonials Section */
.testimonials-section {
  background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

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

.testimonials-slider {
  display: flex;
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-card.prev-slide {
  transform: translateX(-100px);
  opacity: 0;
}

.stars-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.star-filled {
  color: var(--secondary);
  fill: var(--secondary);
  width: 20px;
  height: 20px;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 2.2rem;
  max-width: 650px;
}

.guest-profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.guest-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.guest-details {
  text-align: left;
}

.guest-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.guest-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-dot:hover, .nav-dot.active {
  background: var(--secondary);
  transform: scale(1.25);
}

/* 9. Booking CTA Banner Section */
.booking-cta-section {
  padding: 8rem 2rem;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.booking-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.8) 0%, rgba(27, 27, 27, 0.95) 100%);
  z-index: 1;
}

.cta-title {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--accent);
  max-width: 600px;
  margin: 0 auto 2.8rem;
}

/* 10. Contact Section */
.contact-section {
  background-color: var(--dark-light);
}

.contact-form-box {
  padding: 3rem;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--secondary);
  padding-left: 1rem;
}

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

.col-span-2 {
  grid-column: span 2;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--highlight);
}

.form-status.error {
  color: #D32F2F;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.info-icon {
  width: 28px;
  height: 28px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-details h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.info-details a:hover {
  color: var(--secondary);
}

/* Map Placeholder */
.map-placeholder-box {
  flex-grow: 1;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(27, 27, 27, 0.9) 0%, rgba(15, 76, 129, 0.9) 100%), 
              radial-gradient(circle at center, var(--secondary) 1px, transparent 1px);
  background-size: cover, 20px 20px;
  border: 1px solid var(--glass-border);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.map-icon-bg {
  width: 45px;
  height: 45px;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.map-overlay h4 {
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
}

.map-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* 11. Luxury Footer */
.luxury-footer {
  background-color: #0E0E0E;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.social-links a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.social-links a i {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary);
}

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

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

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

.footer-contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-contact-info li i {
  color: var(--secondary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  background-color: #080808;
}

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

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

/* Modals General Backdrop */
.booking-modal-overlay, 
.room-details-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active, 
.room-details-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Booking Modal Inner Box */
.booking-modal {
  width: 100%;
  max-width: 680px;
  padding: 3.5rem 3rem 3rem;
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.booking-modal-overlay.active .booking-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--secondary);
}

.booking-modal h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.8rem;
}

.modal-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

/* Room Details Modal Inner Box */
.room-details-modal {
  width: 100%;
  max-width: 900px;
  padding: 0;
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

.modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.room-details-gallery {
  position: relative;
  height: 100%;
}

.room-details-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}

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

.room-details-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.room-details-info h3 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.room-details-price {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.room-details-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.specs-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

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

.room-specs-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.room-specs-list li::before {
  content: '✦';
  color: var(--secondary);
}

.room-details-action {
  margin-top: auto;
}

/* Dynamic Scroll Animations */
.scroll-anim {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-anim.fade-in.active {
  opacity: 1;
}

.scroll-anim.slide-up {
  transform: translateY(40px);
}

.scroll-anim.slide-up.active {
  transform: translateY(0);
  opacity: 1;
}

.scroll-anim.slide-left {
  transform: translateX(-40px);
}

.scroll-anim.slide-left.active {
  transform: translateX(0);
  opacity: 1;
}

.scroll-anim.slide-right {
  transform: translateX(40px);
}

.scroll-anim.slide-right.active {
  transform: translateX(0);
  opacity: 1;
}

.scroll-anim.zoom-in {
  transform: scale(0.92);
}

.scroll-anim.zoom-in.active {
  transform: scale(1);
  opacity: 1;
}

/* Keyframes */
@keyframes bgZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.1); }
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 18px; }
  100% { opacity: 0; top: 22px; }
}

@keyframes arrowScroll {
  0% { opacity: 0; transform: translateY(-5px) rotate(45deg); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(5px) rotate(45deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h2 { font-size: 2.2rem; }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile Hamburger Toggle */
  .nav-toggle {
    display: block;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #141414;
    border-left: 1px solid var(--glass-border);
    padding: 6rem 2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .navbar.open {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1.8rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .header-actions .btn-header {
    display: none; /* Rely on hamburger and body CTA buttons on mobile */
  }
  
  /* Navigation hamburger toggle animations */
  .nav-toggle.open .hamburger {
    background-color: transparent;
  }
  
  .nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  
  /* Grids to single column */
  .grid-2-col, .grid-3-col, .grid-4-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .section-container {
    padding: 5rem 1.5rem;
  }
  
  /* Hero modifications */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* About modifications */
  .about-img {
    height: 320px;
  }
  
  /* Room details modal */
  .modal-grid {
    grid-template-columns: 1fr;
  }
  
  .room-details-gallery {
    height: 250px;
  }
  
  .room-details-main-img {
    min-height: 250px;
  }
  
  .room-details-info {
    padding: 2rem 1.5rem;
  }
  
  /* Forms */
  .form-row, .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .col-span-2 {
    grid-column: span 1;
  }
  
  .contact-form-box {
    padding: 2rem 1.5rem;
  }
  
  /* Testimonial card padding */
  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }
  
  .review-text {
    font-size: 1.1rem;
  }
  
  /* Footer */
  .footer-bottom .flex-between {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}
