/* ═══════════════════════════════════════════════════
   KRISHNA VILAS HOMESTAY — STYLESHEET
   Theme: Ultra Pro Glossy Glassmorphism + Kerala Heritage
═══════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────── */
:root {
  --green:       #133824;
  --green-mid:   #1A4A32;
  --green-light: #3D8B66;
  --terra:       #9E4A25;
  --terra-light: #C26842;
  --gold:        #CCA745;
  --gold-light:  #F2D074;
  --cream:       #FDFBF7;
  --warm-white:  #F7F3EA;
  --dark:        #0C120B;
  --dark-soft:   #121A11;
  --text:        #262626;
  --text-muted:  #5C5C5C;
  
  /* Glass & Glossy Variables */
  --glass-dark:  rgba(12, 18, 11, 0.65);
  --glass-light: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-glow:  0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --shadow:      0 8px 24px rgba(19, 56, 36, 0.08);
  --shadow-lg:   0 16px 40px rgba(19, 56, 36, 0.16);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--gold), var(--terra)); border-radius: 4px; }

/* ── PRELOADER ──────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: radial-gradient(circle at center, var(--dark-soft), var(--dark));
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  /* Removed backdrop-filter for performance: it causes significant lag with custom cursor */
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.preloader-logo-wrap {
  width: 180px; height: 120px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  animation: floatLogo 3s ease-in-out infinite;
  will-change: transform;
}
.preloader-logo-img { width: 140px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.preloader-text {
  margin-top: 20px; font-family: var(--font-serif);
  font-size: 1.4rem; letter-spacing: 0.3em;
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; color: transparent;
  animation: shineText 2s linear infinite;
}
.preloader-bar { width: 220px; height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; position: relative; box-shadow: inset 0 1px 3px rgba(0,0,0,0.5); }
.preloader-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--terra), var(--gold-light)); border-radius: 4px; animation: loadBar 8s cubic-bezier(0.1, 0, 0.2, 1) forwards; }

@keyframes floatLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shineText { to { background-position: 200% center; } }
@keyframes loadBar { 0% { width: 0; } 50% { width: 70%; } 100% { width: 100%; } }

/* ── UTILITY & GLASSMORPHISM ────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.bg-dark { background: var(--dark-soft); position: relative; z-index: 1; }
.bg-cream { background: var(--warm-white); }
.text-center { text-align: center; }
.mt-btn { margin-top: 32px; display: inline-block; }

.glassmorphism {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--glass-glow);
}
.glassmorphism-sm {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px; border-radius: var(--radius-sm);
}
.glass-light {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
}
.glass-border {
  position: relative;
}
.glass-border::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.1);
}

/* ── HEADERS & TYPOGRAPHY ───────────────────────── */
.section-eyebrow {
  display: inline-block; font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--terra), var(--terra-light));
  -webkit-background-clip: text; color: transparent;
  margin-bottom: 14px; text-shadow: 0 2px 10px rgba(158, 74, 37, 0.1);
}
.section-eyebrow.light {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; color: transparent;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600; color: var(--green); line-height: 1.15; margin-bottom: 18px;
}
.section-title em { color: var(--terra); font-style: italic; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-light); }
.glow-text { text-shadow: 0 0 30px rgba(255,255,255,0.15); }
.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }
.section-sub.light { color: rgba(255,255,255,0.7); }
.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 64px; }

/* ── GLOSSY BUTTONS ─────────────────────────────── */
.glossy-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--terra), #823819);
  color: #fff; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 15px rgba(158, 74, 37, 0.4), inset 0 2px 4px rgba(255,255,255,0.2);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.glossy-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg); transition: all 0.6s ease;
}
.glossy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(158, 74, 37, 0.5), inset 0 2px 4px rgba(255,255,255,0.3);
}
.glossy-btn:hover::before { left: 150%; }

.glossy-btn-alt {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold), #B3913B); color: var(--dark);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 15px rgba(204, 167, 69, 0.3), inset 0 2px 4px rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.glossy-btn-alt:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(204, 167, 69, 0.5); }

.glossy-outline {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 36px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all var(--transition);
}
.glossy-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.glossy-badge {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1); color: var(--green);
}

.ripple { position: relative; overflow: hidden; }
.ripple::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4); transform: scale(0);
  width: 100px; height: 100px; left: 50%; top: 50%; margin: -50px 0 0 -50px;
  transition: transform 0.5s, opacity 0.5s; opacity: 0;
}
.ripple:active::after { transform: scale(4); opacity: 0; transition: 0s; }

/* ── NAVBAR (ULTRA PRO) ─────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
#navbar.scrolled {
  background: rgba(12, 18, 11, 0.75);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
#navbar.nav-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none !important;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* VERY ATTRACTIVE LOGO SECTION */
.nav-brand {
  display: flex; align-items: center;
  position: relative; text-decoration: none;
}

.nav-logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; }
.logo-main {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; letter-spacing: 0.12em;
  background: linear-gradient(to right, #fff, var(--gold-light));
  -webkit-background-clip: text; color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}
.logo-sub {
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
  margin-top: 2px; transition: color 0.3s ease;
}
.nav-brand:hover .logo-main { background: linear-gradient(to right, var(--gold-light), #fff); -webkit-background-clip: text; color: transparent; filter: drop-shadow(0 0 8px rgba(204,167,69,0.4)); }
.nav-brand:hover .logo-sub { color: var(--gold); }

#navbar.scrolled .logo-main { font-size: 1.2rem; }
#navbar.scrolled .logo-main { font-size: 1.2rem; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.8);
  padding: 8px 14px; border-radius: 6px; transition: all var(--transition); position: relative;
}
.nav-link::before {
  content: ''; position: absolute; inset: 0; border-radius: 6px;
  background: rgba(255,255,255,0.05); opacity: 0; transform: scale(0.9); transition: all 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light);
  opacity: 0; transition: all 0.3s ease;
}
.nav-link:hover::before, .nav-link.active::before { opacity: 1; transform: scale(1); }
.nav-link:hover::after, .nav-link.active::after { opacity: 1; box-shadow: 0 0 10px var(--gold-light); }
.nav-link:hover, .nav-link.active { color: #fff; }

.nav-book-btn { padding: 10px 24px; font-size: 0.85rem; margin-left: 12px; }

.hamburger { display: none; flex-direction: column; gap: 6px; padding: 6px; }
.hamburger span { display: block; width: 28px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 650px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: -10px; /* Slight inset to hide blurred edges */
  background-size: cover; background-position: center; opacity: 0;
  transform: scale(1.1); /* Slightly larger scale */
  transition: opacity 1.5s ease, transform 10s ease-out;
  filter: blur(8px); /* Normal blur on the background image itself */
}
.hero-slide.active { opacity: 1; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,18,11,0.6) 0%, rgba(19,56,36,0.4) 50%, rgba(12,18,11,0.9) 100%); }
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff; padding: 48px 32px; max-width: 900px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), transparent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  /* backdrop-filter removed for performance */
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.hero-content.glass-panel-hero {
    max-width: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
  width: 200px;
  height: 120px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 40px rgba(204, 167, 69, 0.3), inset 0 0 20px rgba(255,255,255,0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.hero-logo:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 0 60px rgba(204, 167, 69, 0.5), inset 0 0 30px rgba(255,255,255,0.2);
  border-color: rgba(204, 167, 69, 0.5);
}

.hero-logo img {
  width: 165px;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
  transition: transform 0.5s ease;
}

.hero-logo:hover img {
  transform: scale(1.1);
}

.hero-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px; border: 1px solid rgba(242,208,116,0.3);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 100px; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-title { font-family: var(--font-serif); font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 600; line-height: 1.05; margin-bottom: 24px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-title em { color: var(--gold-light); font-style: italic; background: linear-gradient(to right, var(--gold-light), #fff); -webkit-background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 300; letter-spacing: 0.03em; color: rgba(255,255,255,0.9); margin-bottom: 48px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-line { width: 2px; height: 48px; background: linear-gradient(to bottom, var(--gold-light), transparent); animation: scrollPulse 2s ease-in-out infinite; border-radius: 2px; }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); opacity: 1; } }

.hero-dots { position: absolute; bottom: 40px; right: 40px; z-index: 2; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.hero-dot.active { background: var(--gold-light); transform: scale(1.4); box-shadow: 0 0 10px var(--gold-light); border-color: transparent; }

/* ── ABOUT ──────────────────────────────────────── */
.about { position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; perspective: 1000px; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img-main::after { content:''; position:absolute; inset:0; box-shadow: inset 0 0 30px rgba(0,0,0,0.2); pointer-events: none; }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.8s ease; }
.about-img-main:hover img { transform: scale(1.05); }
.about-img-accent { position: absolute; bottom: -40px; right: -40px; width: 55%; border-radius: var(--radius); overflow: hidden; padding: 6px; z-index: 2; transform: translateZ(30px); }
.about-img-accent img { width: 100%; height: 220px; object-fit: cover; border-radius: calc(var(--radius) - 4px); }
.about-badge { position: absolute; top: 30px; left: -25px; padding: 20px 24px; border-radius: var(--radius-sm); text-align: center; z-index: 3; }
.badge-num { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; line-height: 1; text-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.badge-num sup { font-size: 1.2rem; }
.badge-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 5px; display: block; }
.about-divider { margin: 20px 0 24px; }
.divider-ornament { font-size: 1.8rem; color: var(--gold); opacity: 0.8; }
.about-lead { font-size: 1.2rem; color: var(--text); font-weight: 500; margin-bottom: 18px; line-height: 1.6; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; font-weight: 500; }
.about-features li i { color: var(--green-light); margin-top: 4px; flex-shrink: 0; font-size: 1.1rem; filter: drop-shadow(0 2px 4px rgba(61,139,102,0.3)); }
.section-bg-motif { position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; border: 2px dashed rgba(19,56,36,0.08); border-radius: 50%; pointer-events: none; animation: rotateMotif 40s linear infinite; }
@keyframes rotateMotif { 100% { transform: translateY(-50%) rotate(360deg); } }

/* ── HIGHLIGHTS ─────────────────────────────────── */
.highlights { position: relative; overflow: hidden; }
.highlights::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.highlight-card { border-radius: var(--radius); padding: 40px 32px; transition: all var(--transition); position: relative; overflow: hidden; z-index: 1; }
.highlight-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(204,167,69,0.1), transparent 70%); opacity: 0; transition: opacity var(--transition); z-index: -1; }
.highlight-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); box-shadow: 0 15px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(255,255,255,0.05); }
.highlight-card:hover::before { opacity: 1; }
.card-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: inset 0 2px 10px rgba(255,255,255,0.05), 0 8px 20px rgba(0,0,0,0.2); transition: transform var(--transition); }
.highlight-card:hover .card-icon { transform: scale(1.1) rotate(5deg); border-color: rgba(204,167,69,0.3); }
.card-icon i { font-size: 1.6rem; color: var(--gold-light); filter: drop-shadow(0 0 8px rgba(242,208,116,0.4)); }
.highlight-card h3 { font-family: var(--font-serif); font-size: 1.45rem; color: #fff; margin-bottom: 12px; letter-spacing: 0.02em; }
.highlight-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ── ROOMS ──────────────────────────────────────── */
.rooms { position: relative; overflow: hidden; }
.room-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; margin-bottom: 90px; }
.room-split:last-of-type { margin-bottom: 0; }
.room-split.reverse { direction: rtl; }
.room-split.reverse > * { direction: ltr; }
.room-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); padding: 8px; background: #fff; }
.room-img img { width: 100%; height: 420px; object-fit: cover; border-radius: calc(var(--radius) - 4px); transition: transform 0.8s ease; }
.room-img:hover img { transform: scale(1.04); }
.room-tag { position: absolute; top: 24px; left: 24px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; z-index: 2; }
.room-info h3 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--green); margin-bottom: 16px; line-height: 1.2; }
.room-info p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; font-size: 1.05rem; }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.amenity-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; }
.amenity-list li i { color: var(--gold); font-size: 1rem; background: rgba(204,167,69,0.1); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.amenities-strip { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 80px; padding-top: 60px; border-top: 1px dashed rgba(19,56,36,0.15); }
.glass-chip { padding: 12px 24px; border-radius: 100px; font-size: 0.95rem; font-weight: 600; color: var(--green); transition: all var(--transition); cursor: default; }
.glass-chip:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 10px 20px rgba(19,56,36,0.1); border-color: rgba(19,56,36,0.2); }
.glass-chip i { color: var(--terra); transition: all var(--transition); margin-right: 8px; font-size: 1.1rem; }

/* ── RATES ──────────────────────────────────────── */
.relative-bg { position: relative; overflow: hidden; }
.relative-bg::before { content:''; position:absolute; inset:0; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiAvPgo8cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJyZ2JhKDAsMCwwLDAuMDUpIiAvPgo8L3N2Zz4='); opacity: 0.5; pointer-events: none; }
.rates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; z-index: 2; }
.rate-card { border-radius: var(--radius); padding: 48px 36px; text-align: center; position: relative; transition: all var(--transition); }
.rate-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.8); }
.rate-card.featured { transform: translateY(-16px); }
.rate-card.featured:hover { transform: translateY(-24px); }
.glossy-featured {
  background: linear-gradient(145deg, var(--green), var(--dark-soft));
  color: #fff; border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(19,56,36,0.3), inset 0 0 20px rgba(255,255,255,0.05);
}
.rate-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--gold), var(--gold-light)); color: var(--dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 8px 24px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 15px rgba(204,167,69,0.4); border: 1px solid rgba(255,255,255,0.5); }
.rate-icon { font-size: 2.5rem; margin-bottom: 20px; background: linear-gradient(135deg, var(--terra), var(--terra-light)); -webkit-background-clip: text; color: transparent; filter: drop-shadow(0 2px 5px rgba(158,74,37,0.2)); }
.rate-card.featured .rate-icon { background: linear-gradient(135deg, var(--gold-light), #fff); -webkit-background-clip: text; color: transparent; filter: drop-shadow(0 0 10px rgba(242,208,116,0.4)); }
.rate-card h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--green); margin-bottom: 12px; font-weight: 700; }
.rate-card.featured h3 { color: #fff; }
.rate-price { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: var(--terra); line-height: 1; margin-bottom: 6px; }
.rate-card.featured .rate-price { color: var(--gold-light); text-shadow: 0 0 20px rgba(242,208,116,0.3); }
.rate-price span { font-size: 1.1rem; font-weight: 500; font-family: var(--font-sans); color: var(--text-muted); }
.rate-card.featured .rate-price span { color: rgba(255,255,255,0.6); }
.rate-note-small { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.05em; }
.rate-card.featured .rate-note-small { color: rgba(255,255,255,0.6); }
.rate-card ul { text-align: left; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 24px; }
.rate-card.featured ul { border-color: rgba(255,255,255,0.1); }
.rate-card ul li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; }
.rate-card ul li i { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }
.rate-card.featured ul li i { color: var(--gold-light); }
.rates-disclaimer { text-align: center; margin-top: 48px; font-size: 0.95rem; padding: 20px 32px; border-radius: var(--radius-sm); border-left: 4px solid var(--terra); max-width: 540px; margin-left: auto; margin-right: auto; }
.rates-disclaimer i { color: var(--terra); margin-right: 8px; font-size: 1.2rem; }

/* ── GALLERY ────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 3/2; transform: translateZ(0); }
.gallery-item:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.8); }
.gallery-item-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(12,18,11,0.2), rgba(12,18,11,0.6)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2.5rem; color: rgba(255,255,255,0.9); filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); transform: scale(0.8); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.gallery-item:hover .gallery-item-overlay i { transform: scale(1); }
.gallery-more { margin-top: 48px; }

/* ── LIGHTBOX ───────────────────────────────────── */
.glass-overlay { background: rgba(12, 18, 11, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.lightbox { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img-wrap { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); }
.lightbox-img-wrap img { max-width: 90vw; max-height: 86vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; color: #fff; background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: all var(--transition); z-index: 10; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--terra); border-color: var(--terra); transform: scale(1.1); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.15em; background: rgba(0,0,0,0.5); padding: 8px 20px; border-radius: 100px; backdrop-filter: blur(4px); }

/* ── EXPLORE ────────────────────────────────────── */
.explore { position: relative; overflow: hidden; }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.explore-card { padding: 32px 24px; transition: all var(--transition); position: relative; z-index: 1; }
.explore-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.8); box-shadow: 0 15px 35px rgba(19,56,36,0.1); }
.explore-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; box-shadow: inset 0 2px 6px rgba(255,255,255,0.5), 0 4px 12px rgba(0,0,0,0.05); }
.explore-icon.temple { background: linear-gradient(135deg, rgba(158,74,37,0.1), rgba(158,74,37,0.05)); color: var(--terra); border: 1px solid rgba(158,74,37,0.1); }
.explore-icon.heritage { background: linear-gradient(135deg, rgba(26,74,50,0.1), rgba(26,74,50,0.05)); color: var(--green-mid); border: 1px solid rgba(26,74,50,0.1); }
.explore-icon.museum { background: linear-gradient(135deg, rgba(204,167,69,0.15), rgba(204,167,69,0.05)); color: #9A7712; border: 1px solid rgba(204,167,69,0.2); }
.explore-icon.beach { background: linear-gradient(135deg, rgba(61,139,102,0.15), rgba(61,139,102,0.05)); color: var(--green-light); border: 1px solid rgba(61,139,102,0.2); }
.explore-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 10px; line-height: 1.4; }
.explore-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.explore-tag { font-size: 0.8rem; font-weight: 700; color: var(--terra); display: flex; align-items: center; gap: 6px; background: rgba(158,74,37,0.05); padding: 6px 12px; border-radius: 6px; width: fit-content; }

/* ── CONTACT ────────────────────────────────────── */
.contact { position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; margin-bottom: 56px; }
.info-card { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; transition: all var(--transition); }
.info-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); transform: translateX(5px); }
.info-icon { width: 50px; height: 50px; flex-shrink: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1.2rem; box-shadow: inset 0 2px 10px rgba(255,255,255,0.05); }
.info-card h4 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.info-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.8; }
.info-card p a { color: rgba(255,255,255,0.9); transition: color var(--transition); font-weight: 500; }
.info-card p a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 16px; margin-top: 32px; }
.social-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; padding: 0; }
.social-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); border: 1px solid rgba(255,255,255,0.2); }
.social-btn.phone { background: linear-gradient(135deg, var(--terra), #733016); box-shadow: 0 4px 15px rgba(158, 74, 37, 0.4); border: 1px solid rgba(255,255,255,0.2); }

/* Contact Form */
.contact-form { padding: 48px; border-radius: var(--radius); }
.form-group { margin-bottom: 24px; position: relative; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px 20px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); color: #fff; font-family: var(--font-sans); font-size: 1rem; transition: all var(--transition); outline: none; resize: vertical; box-shadow: inset 0 2px 5px rgba(0,0,0,0.2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold-light); background: rgba(0,0,0,0.4); box-shadow: inset 0 2px 5px rgba(0,0,0,0.3), 0 0 15px rgba(242,208,116,0.15); }
.form-error { display: block; font-size: 0.8rem; font-weight: 500; color: #FF6B6B; margin-top: 6px; min-height: 18px; }

/* Form Success State */
.form-success {
  padding: 40px 20px;
  animation: fadeIn 0.5s ease-out forwards;
}
.success-icon {
  font-size: 4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(242,208,116,0.3));
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
}
.form-success p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.map-wrap { border-radius: var(--radius); overflow: hidden; padding: 6px; background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); }
.map-wrap iframe { width: 100%; height: 420px; display: block; border-radius: calc(var(--radius) - 6px); filter: grayscale(20%) contrast(1.1); transition: filter 0.5s; }
.map-wrap:hover iframe { filter: grayscale(0%) contrast(1); }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: #080C07; position: relative; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; }
.drop-glow { filter: drop-shadow(0 0 15px rgba(255,255,255,0.15)); }
.footer-logo { height: 175px; margin-bottom: 24px; transition: transform 0.5s ease; }
.footer-logo:hover { transform: scale(1.05); }
.footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.9; max-width: 340px; }
.footer-links h4, .footer-contact h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px; }
.footer-links ul { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: all var(--transition); display: inline-block; }
.footer-links a:hover { color: #fff; transform: translateX(5px); }
.footer-contact p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 2; display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact p i { color: var(--terra); flex-shrink: 0; margin-top: 6px; font-size: 1.1rem; }
.footer-contact a { color: rgba(255,255,255,0.8); transition: color var(--transition); font-weight: 500; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; margin-top: 24px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; padding: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.2); }
.footer-social a:hover { background: linear-gradient(135deg, #25D366, #128C7E); border-color: #25D366; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37,211,102,0.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0; text-align: center; background: rgba(0,0,0,0.2); }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

/* ── FLOATING WHATSAPP ──────────────────────────── */
.glossy-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), inset 0 2px 5px rgba(255,255,255,0.4);
}

.whatsapp-float { 
  position: fixed; 
  bottom: 32px; 
  left: 32px;
  z-index: 800; 
  width: 64px; 
  height: 64px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.8rem; 
  color: #fff; 
  animation: waPulse 2.4s ease-in-out infinite; 
  transition: all var(--transition); 
}

.whatsapp-float:hover { transform: scale(1.1) rotate(5deg); }

@keyframes waPulse { 
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); } 
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.8); } 
}

.wa-tooltip { 
  position: absolute; 
  left: 80px; 
  top: 50%; 
  transform: translateY(-50%); 
  color: #fff; 
  font-size: 0.85rem; 
  font-weight: 600; 
  letter-spacing: 0.05em; 
  white-space: nowrap; 
  padding: 10px 16px; 
  border-radius: var(--radius-sm); 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.3s ease, transform 0.3s ease; 
}

.whatsapp-float:hover .wa-tooltip { 
  opacity: 1; 
  transform: translateY(-50%) translateX(5px);
}

/* ── BACK TO TOP ────────────────────────────────── */
.back-to-top { 
  position: fixed; 
  bottom: 32px; 
  right: 32px; 
  z-index: 800; 
  width: 50px; 
  height: 50px; 
  background: linear-gradient(135deg, var(--green-light), var(--green)); 
  border: 1px solid rgba(255,255,255,0.2); 
  color: #fff; 
  font-size: 1rem; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 0; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(15px); 
  transition: all var(--transition); 
  box-shadow: 0 4px 15px rgba(19,56,36,0.4); 
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── SCROLL REVEAL ANIMATIONS ───────────────────── */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade { opacity: 0; transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); will-change: opacity, transform; }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-fade { opacity: 0; transform: scale(0.95); }
.revealed { opacity: 1 !important; transform: translate(0) scale(1) !important; }

/* ── CUSTOM CURSOR ───────────────────────────────── */
body, html {
  cursor: none;
}

a, button, .gallery-item, input, textarea {
  cursor: none;
}

.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--gold);
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  z-index: 10000;
  will-change: transform;
}

.cursor2 {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--gold-light);
  opacity: 0.8;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 10000;
  will-change: transform;
}

.cursor.hover {
  background-color: rgba(204, 167, 69, 0.2);
  border-color: transparent;
}

.cursorinnerhover {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-images { max-width: 600px; margin: 0 auto; }
  .about-img-accent { right: -10px; width: 60%; }
  .room-split { grid-template-columns: 1fr; gap: 32px; }
  .room-split.reverse { direction: ltr; }
  .room-img img { height: 320px; }
  .rates-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .rate-card.featured { transform: none; }
  .rate-card.featured:hover { transform: translateY(-8px); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(5n+1) { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav-brand { gap: 10px; }
  .logo-main { font-size: 1.1rem; }
  .logo-sub { font-size: 0.55rem; }
  .hero-logo { width: 190px; height: 115px; margin-bottom: 24px; }
  .footer-links ul{ display: grid; grid-template-columns: repeat(3, 1fr);}
  .hero-logo img { width: 160px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(12,18,11,0.95); backdrop-filter: blur(20px); justify-content: center; align-items: center; gap: 16px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; padding: 12px 24px; }
  .nav-book-btn { font-size: 1.1rem; padding: 14px 32px; margin: 16px 0 0; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .section-pad { padding: 72px 0; }
  .highlights-grid { grid-template-columns: 1fr; gap: 20px; }
  .explore-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { left: 10px; top: -20px; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-content { padding: 32px 20px; }
  .contact-form { padding: 32px 24px; }
  
  /* Disable Custom Cursor on Touch Devices */
  .cursor, .cursor2 { display: none !important; }
  body, html, a, button, .gallery-item, input, textarea { cursor: auto !important; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .about-img-accent { display: none; }
  .room-img img { height: 240px; }
  .rate-price { font-size: 2.8rem; }
  .whatsapp-float { 
      width: 56px; 
      height: 56px; 
      font-size: 1.5rem; 
      bottom: 24px; 
      left: 24px; 
    }
  .back-to-top { 
    bottom: 24px; 
    right: 24px; 
    width: 44px; 
    height: 44px; 
  }
}

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