/* ========================================
   CUNDA ALESTA — PREMIUM HOTEL STYLESHEET
   ======================================== */

:root {
  --white: #FEFCFA;
  --cream: #F7F3EE;
  --stone: #E8E0D6;
  --sand: #D4C8B8;
  --sage: #8B9A7E;
  --olive: #6B7A5E;
  --terracotta: #C4846C;
  --terracotta-dark: #A96B54;
  --cunda-blue: #7BA3C4;
  --cunda-blue-light: #A8C8E0;
  --anthracite: #3A3A3A;
  --dark: #2C2C2C;
  --text: #4A4540;
  --text-light: #8A847C;
  --text-muted: #B0A99F;
  --border: #E8E0D6;
  --shadow: 0 2px 24px rgba(60,50,40,0.08);
  --shadow-lg: 0 8px 48px rgba(60,50,40,0.12);
  --shadow-xl: 0 16px 64px rgba(60,50,40,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-family: var(--font-body);
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  border: none; cursor: pointer; transition: all 0.3s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: var(--anthracite); color: var(--white);
}
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--anthracite); border: 1.5px solid var(--anthracite);
}
.btn-outline:hover { background: var(--anthracite); color: var(--white); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-1px); }
.btn-hero-primary {
  background: var(--white); color: var(--anthracite); font-weight: 600;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-hero-outline {
  background: rgba(255,255,255,0.15); color: var(--white); border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.25); }
.btn-hero-whatsapp { background: #25D366; color: #fff; }
.btn-hero-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }

/* ---- NAVIGATION ---- */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: all 0.4s ease;
}
#main-nav.scrolled {
  background: rgba(254,252,250,0.95); backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(60,50,40,0.06);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: var(--nav-height); display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-text {
  font-family: var(--font-display); font-size: 22px; color: var(--white);
  letter-spacing: 0.5px; transition: color 0.3s;
}
#main-nav.scrolled .nav-logo-text { color: var(--anthracite); }
.nav-logo-text strong { font-weight: 600; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--terracotta); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
#main-nav.scrolled .nav-links a { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-whatsapp {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85); font-size: 14px; transition: color 0.3s;
}
.nav-whatsapp i { font-size: 18px; }
#main-nav.scrolled .nav-whatsapp { color: #25D366; }
#main-nav .nav-cta { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
#main-nav.scrolled .nav-cta { background: var(--anthracite); color: var(--white); border-color: var(--anthracite); }

/* Nav toggle (hamburger) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  transition: all 0.3s; border-radius: 2px;
}
#main-nav.scrolled .nav-toggle span { background: var(--anthracite); }
.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, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--white); padding: 24px; flex-direction: column; gap: 0;
  box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--nav-height)); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 0; font-size: 16px; color: var(--text); border-bottom: 1px solid var(--border);
}
.mobile-menu-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ---- HERO ---- */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px; max-height: 1000px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-image, .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-image { background-size: cover; background-position: center; }
.hero-mobile-media { display: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: var(--white);
  padding: 0 24px; max-width: 800px;
}
.hero-badge {
  display: inline-block; padding: 6px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 86px);
  font-weight: 400; line-height: 1.05; margin-bottom: 8px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
.hero-subtitle {
  font-family: var(--font-display); font-size: clamp(18px, 3vw, 24px);
  font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.9; margin-bottom: 16px;
}
.hero-slogan {
  font-size: clamp(15px, 2vw, 18px); font-weight: 300; opacity: 0.85;
  max-width: 500px; margin: 0 auto 24px; line-height: 1.6;
}
.hero-rating {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 32px; font-size: 14px;
}
.hero-stars { color: #F5C518; font-size: 16px; letter-spacing: 2px; }
.hero-rating-text { font-weight: 600; }
.hero-review-count { opacity: 0.75; }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--white); opacity: 0.6; font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600; margin-bottom: 12px;
}
.section-tag-light { color: rgba(255,255,255,0.7); }
.section-header h2, .section h2:not(.section-header h2) {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px);
  font-weight: 400; color: var(--anthracite); line-height: 1.2; margin-bottom: 16px;
}
.section-header p { color: var(--text-light); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  color: var(--anthracite); margin-bottom: 20px; font-weight: 400;
}
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 28px; font-size: 16px; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* Rooms */
.section-rooms { background: var(--cream); }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; }
.room-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.4s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room-card-image {
  position: relative; width: 100%; height: 280px; overflow: hidden;
}
.room-card-image img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.05); }
.room-badge {
  position: absolute; top: 16px; left: 16px; background: var(--terracotta);
  color: #fff; padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 500;
}
.room-card-body { padding: 28px; }
.room-card-body h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  color: var(--anthracite); margin-bottom: 8px;
}
.room-desc { color: var(--text-light); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.room-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.room-meta span { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.room-meta i { color: var(--sage); font-size: 12px; }
.room-features-mini { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.room-features-mini span {
  font-size: 11px; color: var(--text-light); background: var(--cream);
  padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 4px;
}
.room-features-mini i { font-size: 10px; color: var(--sage); }
.room-price {
  font-family: var(--font-display); font-size: 22px; color: var(--anthracite);
  margin-bottom: 16px; font-weight: 500;
}
.room-price small { font-size: 13px; color: var(--text-light); font-family: var(--font-body); }
.room-card-actions { display: flex; gap: 10px; }
.room-card-actions .btn { flex: 1; justify-content: center; font-size: 13px; padding: 10px 16px; }

.rooms-placeholder {
  grid-column: 1 / -1; text-align: center; padding: 60px 24px;
  background: var(--white); border-radius: var(--radius-lg);
}
.rooms-placeholder i { font-size: 48px; color: var(--sand); margin-bottom: 16px; }
.rooms-placeholder h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }
.rooms-placeholder p { color: var(--text-light); margin-bottom: 20px; }

/* Morning Section */
.section-morning {
  position: relative; height: 70vh; min-height: 400px; max-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.morning-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-attachment: fixed;
}
.morning-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.morning-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 600px; }
.morning-content h2 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px);
  color: var(--white); margin-bottom: 16px;
}
.morning-content p { opacity: 0.9; font-size: 16px; line-height: 1.8; }

/* Why Alesta */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 40px 24px; background: var(--cream);
  border-radius: var(--radius-lg); transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 20px; color: var(--terracotta);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.why-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; color: var(--anthracite); }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Gallery */
.gallery-categories {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.gallery-cat {
  padding: 8px 20px; border-radius: 50px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-light); font-size: 13px;
  cursor: pointer; transition: all 0.3s; font-family: var(--font-body);
}
.gallery-cat.active, .gallery-cat:hover {
  background: var(--anthracite); color: var(--white); border-color: var(--anthracite);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
}
.gallery-1, .gallery-4 { grid-column: span 2; grid-row: span 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3); opacity: 0;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 18px; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Discover */
.discover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.discover-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.discover-image img { width: 100%; height: 500px; object-fit: cover; }
.discover-text h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  color: var(--anthracite); margin-bottom: 20px;
}
.discover-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }

/* Reviews */
.section-reviews { background: var(--cream); }
.reviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px;
}
.reviews-score {
  font-family: var(--font-display); font-size: 40px; font-weight: 500; color: var(--anthracite);
}
.reviews-stars { color: #F5C518; font-size: 20px; letter-spacing: 2px; }
.reviews-count { color: var(--text-light); font-size: 14px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.review-stars { color: #F5C518; margin-bottom: 12px; font-size: 16px; letter-spacing: 2px; }
.review-card p { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 600; color: var(--anthracite); font-size: 14px; }
.review-source { margin-left: 8px; color: var(--text-light); font-size: 12px; }
.reviews-empty { text-align: center; padding: 40px; }
.reviews-empty p { color: var(--text-light); margin-bottom: 16px; }

/* CTA Section */
.section-cta {
  position: relative; height: 50vh; min-height: 360px; max-height: 500px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.section-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.section-cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.section-cta-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.section-cta-content h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--white); margin-bottom: 12px; }
.section-cta-content p { opacity: 0.85; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Location */
.location-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.location-info h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 16px; color: var(--anthracite); }
.location-address { color: var(--text-light); margin-bottom: 24px; display: flex; align-items: start; gap: 8px; }
.location-address i { color: var(--terracotta); margin-top: 3px; }
.location-actions { display: flex; flex-direction: column; gap: 10px; }
.location-actions .btn { justify-content: center; }

/* Contact */
.section-contact { background: var(--cream); padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-item {
  text-align: center; padding: 32px 16px;
}
.contact-item i { font-size: 24px; color: var(--terracotta); margin-bottom: 12px; }
.contact-item h4 { font-size: 14px; color: var(--anthracite); margin-bottom: 8px; }
.contact-item a, .contact-item p { color: var(--text-light); font-size: 14px; }
.contact-item a:hover { color: var(--terracotta); }

/* Footer */
.footer { background: var(--anthracite); color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo {
  font-family: var(--font-display); font-size: 24px; color: var(--white);
  display: block; margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--terracotta); color: #fff; }
.footer-links h4, .footer-contact h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 16px;
}
.footer-links a { display: block; font-size: 14px; padding: 4px 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 13px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact i { width: 16px; text-align: center; color: var(--terracotta); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 12px; opacity: 0.5; }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px; box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.5);
  display: none; align-items: center; justify-content: center;
  padding: 24px; backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl); position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px; background: none;
  border: none; font-size: 28px; color: var(--text-light); cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.3s;
}
.modal-close:hover { background: var(--cream); color: var(--anthracite); }
.modal-header { margin-bottom: 24px; }
.modal-header h3 { font-family: var(--font-display); font-size: 28px; color: var(--anthracite); margin-bottom: 4px; }
.modal-header p { color: var(--text-light); font-size: 14px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  transition: border-color 0.3s; background: var(--white);
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--cunda-blue);
}
.form-nights {
  display: none; text-align: center; font-size: 14px; font-weight: 600;
  color: var(--terracotta); padding: 4px; background: rgba(196,132,108,0.08);
  border-radius: 8px;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: rgba(255,255,255,0.8); font-size: 36px; cursor: pointer; z-index: 2;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.8);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: background 0.3s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 14px;
}

/* ---- ROOM DETAIL PAGE ---- */
.room-hero { margin-top: var(--nav-height); }
.room-gallery-hero {
  display: grid; grid-template-columns: 2fr 1fr; gap: 4px;
  max-height: 500px; overflow: hidden;
}
.room-gallery-main { position: relative; cursor: pointer; overflow: hidden; }
.room-gallery-main img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; transition: transform 0.5s; }
.room-gallery-main:hover img { transform: scale(1.03); }
.room-gallery-main .gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; font-size: 15px; opacity: 0; transition: opacity 0.3s;
}
.room-gallery-main:hover .gallery-overlay { opacity: 1; }
.room-gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.room-gallery-thumb { position: relative; cursor: pointer; overflow: hidden; }
.room-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-gallery-thumb:hover img { transform: scale(1.05); }
.room-gallery-thumb .gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: #fff; font-size: 14px; opacity: 0; transition: opacity 0.3s;
}
.room-gallery-thumb:hover .gallery-overlay { opacity: 1; }

.room-hero-empty {
  height: 300px; background: var(--cream); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; color: var(--text-light);
}
.room-hero-empty i { font-size: 48px; color: var(--sand); }

.room-detail { padding: 48px 0 80px; }
.room-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.breadcrumb {
  font-size: 13px; color: var(--text-light); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--text-light); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span:not(:last-child) { color: var(--text-muted); }
.room-detail-main h1 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 44px);
  color: var(--anthracite); margin-bottom: 16px;
}
.room-detail-meta {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.room-detail-meta span { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-light); }
.room-detail-meta i { color: var(--sage); }
.room-description { margin-bottom: 32px; }
.room-description p { color: var(--text-light); line-height: 1.8; font-size: 16px; }
.room-features { margin-bottom: 32px; }
.room-features h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; color: var(--anthracite); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.feature-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--cream); border-radius: var(--radius); font-size: 14px;
}
.feature-item i { color: var(--sage); font-size: 16px; width: 20px; text-align: center; }
.room-pricing {
  padding: 24px; background: var(--cream); border-radius: var(--radius-lg);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.price-label { font-size: 13px; color: var(--text-light); }
.price-value { font-family: var(--font-display); font-size: 28px; color: var(--anthracite); font-weight: 500; }
.price-note { font-size: 12px; color: var(--text-light); }

.room-booking-card {
  position: sticky; top: calc(var(--nav-height) + 24px);
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow);
}
.room-booking-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; color: var(--anthracite); }
.room-booking-card > p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; }
.room-booking-card .btn { margin-bottom: 10px; }
.booking-info { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.booking-info p { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.booking-info i { color: var(--sage); width: 16px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-wa-text { display: none; }
  .about-grid, .discover-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image img { min-height: 300px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-1, .gallery-4 { grid-column: span 1; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .room-booking-card { position: static; }
  .room-gallery-hero { max-height: 400px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .hero { min-height: 100svh; max-height: none; }
  .hero-desktop-media { display: none; }
  .hero-mobile-media { display: block; }
  .hero-actions { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .hero-actions .btn { justify-content: center; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card-image { height: 240px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .discover-image img { height: 320px; }
  .section-morning { height: 50vh; background-attachment: scroll; }
  .morning-bg { background-attachment: scroll; }
  .modal { padding: 28px 20px; margin: 16px; border-radius: var(--radius-lg); }
  .form-row { grid-template-columns: 1fr; }
  .room-gallery-hero {
    grid-template-columns: 1fr; max-height: 320px;
  }
  .room-gallery-side { display: none; }
  .room-gallery-main img { min-height: 320px; }
  .lightbox-prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; }
  .hero-badge { font-size: 10px; padding: 5px 14px; }
  .hero-rating { font-size: 12px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .nav-cta { display: none; }
  .location-actions { flex-direction: row; flex-wrap: wrap; }
  .location-actions .btn { flex: 1; min-width: 120px; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .hero-title { font-size: 42px; }
  .room-card-actions { flex-direction: column; }
}

/* Print */
@media print {
  #main-nav, .whatsapp-fab, .hero-scroll, .modal-overlay, .lightbox { display: none !important; }
  .hero { height: auto; min-height: auto; }
}
