/* ============================================================
   VIP 009 Girls PG — Premium Design System
   Inspired by Odoo Hostel Template Design Language
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Colors — Odoo-inspired warm palette */
  --cream:        #F7F0E4;
  --cream-dark:   #F0E5D3;
  --cream-light:  #FAF8F4;
  --teal:         #2EC4B6;
  --teal-dark:    #1EA99D;
  --teal-light:   #6EDDD6;
  --teal-glow: rgba(46,196,182,0.1);
  --charcoal:     #1A1A2E;
  --charcoal-mid: #2D3142;
  --text-dark:    #1C1C2E;
  --text-mid:     #4A4A6A;
  --text-light:   #8888AA;
  --white:        #FFFFFF;
  --gold:         #C9A84C;
  --rose:         #E8927C;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  5rem;
  --sp-xl:  6.5rem;
  --sp-2xl: 8.5rem;

  /* Radius */
  --r-sm: 0.15rem;
  --r-md: 0.25rem;
  --r-lg: 0.5rem;
  --r-xl: 0.75rem;
  --r-pill: 4px;
  --r-blob: 60% 40% 70% 30% / 50% 60% 40% 50%;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,0.04);
  --sh-md: 0 4px 16px rgba(0,0,0,0.06);
  --sh-lg: 0 12px 32px rgba(0,0,0,0.08);
  --sh-teal: 0 4px 16px rgba(46,196,182,0.15);

  /* Transitions */
  --ease: ease-out;
  --bounce: ease-out;
  --tr-fast:0.2s var(--ease);
  --tr-med: 0.4s var(--ease);
  --tr-slow:0.7s var(--ease);
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

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; }

/* ---------- Typography ---------- */
.display-xl {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.display-lg {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.display-md {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
}
.headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
}
.body-lg { font-size: 1.1rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; }
.label   { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

.text-teal    { color: var(--teal); }
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-mid     { color: var(--text-mid); }
.text-center  { text-align: center; }
.italic       { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--r-pill);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--tr-med);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--charcoal);
  box-shadow: var(--sh-teal);
}
.btn-primary:hover { background: var(--teal-dark); opacity: 0.95; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.85rem; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Section Spacing ---------- */
.section { padding: var(--sp-2xl) 0; }
.section-sm { padding: var(--sp-xl) 0; }

/* ---------- Background Utilities ---------- */
.bg-white { background-color: var(--white); }
.bg-light-gray { background-color: #F8F9FA; }

/* ---------- Section Transitions ---------- */
.section { position: relative; }
.shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-99%);
  z-index: 5;
  pointer-events: none;
}
.shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(99%);
  z-index: 5;
  pointer-events: none;
}
.shape-divider-top svg, .shape-divider-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}
@media (min-width: 768px) {
  .shape-divider-top svg, .shape-divider-bottom svg { height: 220px; }
}

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(46,196,182,0.12);
  color: var(--teal);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ---------- Wave Dividers (Odoo-style) ---------- */
.wave-top, .wave-bottom { width: 100%; overflow: hidden; line-height: 0; }
.wave-top  { transform: rotate(180deg); }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* ---------- Loading Screen ---------- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 56px; height: 56px;
  border: 4px solid var(--cream-dark);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 1.25rem;
}
.loader-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}
.loader-brand span { color: var(--teal); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--tr-med);
  height: 80px;
  background: var(--white);
  display: flex;
  align-items: center;
}
#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--teal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}
.nav-logo-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.nav-links {
  flex: 2;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--tr-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: var(--tr-fast);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }

.nav-hero .nav-links a { color: var(--white); }
.nav-hero .nav-links a:hover { color: var(--teal-light); }

.nav-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--tr-fast);
}
.nav-phone:hover { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: var(--tr-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--tr-fast);
}
.mobile-nav a:hover { color: var(--teal); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_room_bg_new.png');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.78) 0%,
    rgba(26,26,46,0.55) 50%,
    rgba(46,196,182,0.08) 100%
  );
}

  to   { transform: scale(1.00); }
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-shape-1 {
  position: absolute;
  top: 15%; left: 5%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(110,221,214,0.15);
  
}
.hero-shape-2 {
  position: absolute;
  top: 20%; right: 8%;
  width: 130px; height: 130px;
  
  background: rgba(110,221,214,0.22);
  
}
.hero-shape-3 {
  position: absolute;
  bottom: 25%; left: 12%;
  width: 80px; height: 100px;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 5px,
    rgba(46,196,182,0.2) 5px, rgba(46,196,182,0.2) 7px
  );
  
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 4rem;
  padding-bottom: 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(46,196,182,0.2);
  border: 1px solid rgba(46,196,182,0.4);
  border-radius: var(--r-pill);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  
}

.hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.55s both;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s 0.7s both;
}
.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-highlight svg { color: var(--teal-light); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s 0.85s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUpCenter 1s 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  
}

  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   TRUST BAR (Odoo-style wave section)
   ============================================================ */
#trust-bar {
  background: var(--white);
  position: relative;
  padding: 2rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  position: relative;
  transition: var(--tr-fast);
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--cream-dark);
}
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(46,196,182,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--tr-fast);
  flex-shrink: 0;
}
.trust-item:hover .trust-icon { background: var(--teal); }
.trust-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
}
.trust-text span {
  font-size: 0.75rem;
  color: var(--text-mid);
}

/* ============================================================
   WHY CHOOSE SECTION (Odoo cream + wave style)
   ============================================================ */
#why-choose {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.why-bg-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: var(--cream-light);
  
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.25rem;
  box-shadow: var(--sh-sm);
  transition: var(--tr-med);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46,196,182,0.08);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--teal);
  border-radius: 0 0 4px 4px;
  transition: height var(--tr-med);
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.feature-card:hover::before { height: 100%; border-radius: 0; }
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
  transition: transform var(--tr-fast);
}
.feature-card:hover .feature-icon { transform: translateY(-2px); }
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   ROOM OPTIONS (Odoo full-width split style)
   ============================================================ */
#rooms {
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: var(--tr-med);
  border: 1px solid rgba(46,196,182,0.1);
}
.room-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.room-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-card:hover .room-img-wrap img { transform: scale(1.06); }
.room-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.875rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.room-popular {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.3rem 0.875rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
}
.room-body {
  padding: 2.5rem 2rem;
}
.room-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.room-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.room-price small {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
}
.room-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.room-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.room-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.room-feature::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(46,196,182,0.12);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   AMENITIES (Icon grid with hover animations)
   ============================================================ */
#amenities {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: var(--tr-med);
  border: 1px solid rgba(46,196,182,0.08);
  cursor: default;
}
.amenity-card:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.3s var(--bounce);
}
.amenity-card:hover .amenity-icon { transform: translateY(-2px); }
.amenity-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

/* ============================================================
   GALLERY (Masonry + lightbox)
   ============================================================ */
#gallery {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#gallery .section-label { background: rgba(46,196,182,0.2); }
#gallery .display-md, #gallery p { color: var(--white); }
#gallery p { color: rgba(255,255,255,0.7); }

.gallery-tabs {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.gallery-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--tr-fast);
  cursor: pointer;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.6), transparent);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr-fast);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 1.5rem;
  color: var(--white);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr-fast);
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
#stats {
  background: var(--teal);
  position: relative;
  padding: 4rem 0;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ============================================================
   LOCATION SECTION (Odoo blob image style)
   ============================================================ */
#location {
  background: var(--cream);
  position: relative;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location-text .section-label { }
.location-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.location-text p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(46,196,182,0.1), rgba(46,196,182,0.05));
  border: 1px solid rgba(46,196,182,0.25);
  border-radius: var(--r-xl);
  margin-bottom: 2rem;
}
.distance-icon {
  font-size: 2rem;
}
.distance-info strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}
.distance-info span {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
#reviews {
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.reviews-carousel {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
}
.review-card {
  width: 340px;
  max-width: 85vw;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  flex-shrink: 0;
  border: 1px solid rgba(46,196,182,0.08);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  color: rgba(46,196,182,0.1);
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
  display: block;
}
.reviewer-college {
  font-size: 0.75rem;
  color: var(--text-mid);
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: var(--tr-fast);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--cream);
  position: relative;
}
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(46,196,182,0.08);
  overflow: hidden;
  transition: var(--tr-fast);
}
.faq-item.open { border-color: rgba(46,196,182,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  gap: 1rem;
  transition: var(--tr-fast);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px;
  background: rgba(46,196,182,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  transition: transform var(--tr-fast);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(46,196,182,0.07);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-info p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  color: var(--white);
  transition: var(--tr-fast);
  text-decoration: none;
}
.contact-link:hover {
  background: rgba(46,196,182,0.1);
  border-color: rgba(46,196,182,0.3);
}
.contact-link-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-link-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}
.contact-link-text span {
  font-size: 0.8rem;
  opacity: 0.65;
}

/* Inquiry Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: var(--tr-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(46,196,182,0.06);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--charcoal-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--teal);
  font-weight: 600;
}
.form-success.show { display: block; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
#blog {
  background: var(--cream-light);
  position: relative;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--tr-med);
  border: 1px solid rgba(46,196,182,0.06);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.blog-img {
  height: 180px;
  background: var(--cream-dark);
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.blog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  flex: 1;
}
.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 1rem 0;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 0.625rem;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--tr-fast);
}
.social-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.footer-col ul li {
  margin-bottom: 0.625rem;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: var(--tr-fast);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-seo-text {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  max-width: 900px;
}

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--cream-dark);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: var(--tr-fast);
  text-decoration: none;
  border-right: 1px solid var(--cream-dark);
}
.sticky-btn:last-child { border-right: none; }
.sticky-btn .sb-icon { font-size: 1.4rem; }
.sticky-btn-wa  { color: #25D366; }
.sticky-btn-call{ color: var(--teal); }
.sticky-btn-book{ background: var(--teal); color: var(--white); }
.sticky-btn:active { opacity: 0.8; }

/* WhatsApp Pulse */
.wa-pulse {
  position: fixed;
  bottom: 90px;
  right: 1.25rem;
  z-index: 850;
  display: none; /* hidden on mobile since we have bar; shown on desktop */
}
@media(min-width: 769px) {
  .wa-pulse { display: block; }
}
.wa-float {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  
  text-decoration: none;
  transition: var(--tr-fast);
}
.wa-float:hover { transform: scale(1.1); }

  70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal), var(--teal-light));
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
}
.btn-white:hover { opacity: 0.95; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpCenter {
  from { opacity: 0; transform: translate(-50%, 24px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.7; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .location-inner { gap: 2.5rem; }
  .contact-inner  { gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .nav-cta .btn { display: none; }

  /* Body padding for sticky bar */
  body { padding-bottom: 0; }

  /* Hero */
  .hero-title { font-size: 2.2rem; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-shape-1 { width: 120px; height: 120px; }
  .hero-shape-2 { width: 80px; height: 80px; }

  /* Trust bar */
  .trust-bar-inner { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding: 0 1rem; }
  .trust-item { flex-shrink: 0; }
  .trust-item::after { display: none; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity-card { padding: 1.25rem 0.75rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* Location */
  .location-inner { grid-template-columns: 1fr; gap: 2rem; }
  .map-wrap iframe { height: 260px; }

  /* Reviews */
  .review-card { width: 280px; max-width: 85vw; padding: 1.25rem; }
  .review-card::before { font-size: 3rem; top: 0.5rem; right: 1rem; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Section spacing */
  .section { padding: 4rem 0; }

  /* Sticky bar */
  #sticky-bar { display: none !important; }
}

@media (max-width: 480px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .feature-card   { padding: 1rem 0.5rem; text-align: center; }
  .feature-icon   { margin: 0 auto 0.5rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-highlights { gap: 0.4rem; }
  .hero-highlight  { font-size: 0.75rem; padding: 0.35rem 0.7rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.gap-1  { gap: 0.5rem; }
.gap-2  { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
