@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #FECE2D;
  --gold-l: #E8C96A;
  --gold-p: #F7F0DC;
  --dark: #1C1A17;
  --muted: #7A746A;
  --text: #2D2A25;
  --bg: #FFFFFF;
  --bg2: #FFFFFF;
  --white: #FFFFFF;
  --border: #E8E3D8;
  --border-g: rgba(254, 206, 45,0.2);
  --shadow: 0 4px 24px rgba(26,23,20,0.07);
  --shadow-lg: 0 12px 48px rgba(26,23,20,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; /* Let JS handle smooth scrolling */
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  background-color: #FFFFFF;
  background-image:
    linear-gradient(rgba(254, 206, 45,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 206, 45,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  background-attachment: fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body > * {
  position: relative;
  z-index: 1;
}


/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); font-weight: 400; line-height: 1.25; }
h1 { font-size: clamp(44px, 5.5vw, 68px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
p { color: var(--muted); line-height: 1.75; }
a { text-decoration: none; color: inherit; }
em { color: var(--gold); font-style: normal; }
img { display: block; max-width: 100%; }

/* LAYOUT */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.main-content { padding-top: 0; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1160px;
  height: 66px;
  z-index: 1000;
  background: rgba(28,56,125,0.92);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1.5px solid rgba(255,255,255,0.95);
  border-radius: 60px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 8px 32px rgba(26,23,20,0.08),
    0 2px 8px rgba(26,23,20,0.04);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(28,56,125,0.96);
  box-shadow: 0 8px 40px rgba(26,23,20,0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

/* BRAND LOGO */
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 90px; width: auto; display: block; }
.brand-name { display: none; }

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 12px; }
.nav-item { position: relative; }
.nav-link {
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  line-height: 1;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.nav-chevron { font-size: 11px; transition: transform 0.2s; }
.has-dropdown:hover .nav-chevron,
.has-mega:hover .nav-chevron { transform: rotate(180deg); }

/* DROPDOWN */
.has-dropdown, .has-mega { position: relative; }
.dropdown, .mega-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-g);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 500;
}
.has-dropdown:hover .dropdown,
.has-mega:hover .mega-dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.2s;
}
.dropdown a:hover { background: var(--gold-p); color: var(--gold); }
.mega-dropdown { min-width: 560px; }
.pg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.nav-mega-card {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-mega-card:hover { background: var(--gold-p); }
.nav-mega-card.active { background: var(--gold-p); }
.nav-mega-top { display: flex; flex-direction: column; gap: 3px; }
.nav-mega-name { font-size: 13px; font-weight: 500; color: var(--dark); }
.badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  font-weight: 500;
}
.badge.girls { background: rgba(255,182,193,0.2); color: #b85c7a; border: 1px solid rgba(255,182,193,0.35); }
.badge.boys { background: rgba(173,216,230,0.2); color: #3d7fa8; border: 1px solid rgba(173,216,230,0.35); }
.badge.coming { background: rgba(254, 206, 45,0.16); color: #9b7a2c; border: 1px solid rgba(254, 206, 45,0.35); }

/* RIGHT SIDE NAV */
.call-btn {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(254, 206, 45,0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.call-btn:hover { background: var(--gold-l); transform: translateY(-1px); }

.nav-admin-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(254, 206, 45,0.08);
  border: 1px solid var(--border-g);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.nav-admin-btn:hover { border-color: var(--gold); color: var(--gold); }
.navbar-right-btns { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gold) !important;
  padding: 4px 8px;
}

/* HERO SECTION */
.hero {
  padding: 96px 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  background: var(--gold);
  border: 1px solid rgba(254, 206, 45,0.65);
  border-radius: 999px;
  padding: 10.5px 27px;
  font-size: 19.5px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dot {
  width: 10.5px; height: 10.5px;
  border-radius: 50%;
  background: var(--dark);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero h1 { margin-bottom: 16px; }
.hero-tagline {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 460px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--muted);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(254, 206, 45,0.3);
  transition: all 0.25s;
  display: inline-block;
}
.hero-btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }
.hero-btn-secondary {
  background: var(--gold);
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 15px;
  border: 1.5px solid rgba(254, 206, 45,0.65);
  transition: all 0.25s;
  display: inline-block;
}
.hero-btn-secondary:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  color: var(--dark);
}

/* HERO RIGHT — STAT CARDS */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.hero-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hero-stat-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.hero-stat-card span { font-size: 13px; color: var(--muted); }
.hero-stat-card-gold {
  background: var(--gold);
  border-color: var(--gold);
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
}
.hero-stat-card-gold strong {
  font-size: 38px;
  color: #fff;
}
.hero-stat-card-gold span { color: rgba(255,255,255,0.8); font-size: 14px; }

/* SECTION COMMON */
section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 15px; max-width: 480px; margin: 0 auto; }
.sec-label {
  display: inline-block;
  font-size: 16.5px;
  letter-spacing: 3.75px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 14px;
  background: var(--gold);
  padding: 7.5px 21px;
  border-radius: 30px;
}
.gold-line { width: 48px; height: 2px; background: linear-gradient(90deg,var(--gold),transparent); margin: 14px auto 0; }

/* ROOMS */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 20px;
}
.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  counter-increment: room-count;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.room-card::before {
  content: none;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(254, 206, 45,0.4);
}
.room-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 82px;
}
.room-card h3.room-split {
  gap: 6px;
  justify-content: flex-start;
}
.room-card h3:not(.room-split) {
  justify-content: flex-end;
}
.room-card .room-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.room-card .room-type {
  font-size: 24px;
  letter-spacing: 0.3px;
}
.room-card p { font-size: 17px; }
.room-card .badge {
  margin-top: 16px;
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  border: 1px solid rgba(254, 206, 45,0.65);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* AMENITIES */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}
.amenity-card:hover {
  border-color: rgba(254, 206, 45,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.amenity-icon { font-size: 28px; margin-bottom: 10px; }
.amenity-card h3 { font-size: 14px; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.amenity-card p { font-size: 12px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: transparent;
  border: none;
  cursor: pointer;
}
.gallery-item.feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* GALLERY CAROUSEL */
.gallery-carousel {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
}
.gallery-carousel .gallery-grid {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  padding: 0 0 8px;
  scrollbar-width: none;
  scroll-behavior: auto; /* Let JS handle smooth scrolling */
}
.gallery-carousel .gallery-grid::-webkit-scrollbar {
  display: none;
}
.gallery-carousel .gallery-item {
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  border: none;
  box-shadow: none;
  background: transparent;
  scroll-snap-align: start;
}
.gallery-carousel .gallery-item.feature {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 16 / 9;
}
.gallery-carousel .gallery-item img {
  transition: none;
  object-fit: contain;
  background: transparent;
}
.gallery-carousel .gallery-item:hover img {
  transform: none;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(16, 18, 28, 0.3);
  cursor: pointer;
  z-index: 2;
}
.gallery-nav:hover {
  transform: translateY(-50%) scale(1.04);
}
.gallery-nav:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4), 0 10px 24px rgba(16, 18, 28, 0.3);
}
.gallery-nav-prev { left: 18px; }
.gallery-nav-next { right: 18px; }

@media (max-width: 768px) {
  .gallery-carousel .gallery-grid {
    padding: 0 0 6px;
    gap: 0;
  }
  .gallery-carousel .gallery-item {
    flex-basis: 100%;
    aspect-ratio: 16 / 9;
  }
  .gallery-nav {
    width: 40px;
    height: 40px;
  }
  .gallery-nav-prev { left: 10px; }
  .gallery-nav-next { right: 10px; }
}

/* WHY SECTION */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-list { display: grid; gap: 14px; }
.why-point {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.why-point:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.why-point h3 { font-size: 16px; margin-bottom: 5px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.why-point p { font-size: 13px; }
.why-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.why-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  display: block;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
}
.contact-card h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 6px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.contact-card p { font-size: 15px; color: var(--dark); font-weight: 500; }
.contact-card a { color: var(--dark); }
.contact-actions { display: flex; flex-direction: column; gap: 14px; }
.btn-call {
  background: #1C387D;
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(28,56,125,0.25);
}
.btn-call:hover { background: #182f67; transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-instagram {
  background: #E1306C;
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(225,48,108,0.25);
}
.btn-instagram:hover { background: #C13584; transform: translateY(-2px); }

/* OTHER PGS */
.pg-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pg-card {
  background: linear-gradient(145deg,rgba(28,56,125,0.24) 0%,#fff 38%,#fff 62%,rgba(254,206,45,0.32) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.pg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}
.pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  border-color: rgba(254, 206, 45,0.35);
}
.pg-card:hover::before { transform: scaleX(1); }
.pg-thumb,
.pg-thumb-wrap {
  display: none;
}
.pg-body { padding: 0; }
.pg-body h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--dark);
}
.pg-gender { font-size: 11px; padding: 2px 8px; border-radius: 10px; display: inline-block; margin: 0 6px 10px 0; }
.pg-gender.girls { background: rgba(255,182,193,0.2); color: #b85c7a; }
.pg-gender.boys { background: rgba(173,216,230,0.2); color: #3d7fa8; }
.pg-gender.coming { background: rgba(254, 206, 45,0.16); color: #9b7a2c; }
.pg-gender + .pg-gender { margin-left: 6px; }
.pg-body p { font-size: 15px; margin-bottom: 16px; color: var(--muted); }
.pg-body a { font-size: 14px; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.pg-card:hover .pg-body a { gap: 10px; }

/* FOOTER */
.footer {
  background: #1C387D;
  padding: 60px 0 28px;
  margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-size: 16px; font-weight: 600; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.6px; font-family: 'DM Sans', sans-serif; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 15px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer ul li a:hover { color: var(--gold); }
.footer-logo { height: 150px; width: auto; margin-bottom: 14px; mix-blend-mode: screen; }
.footer p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; text-align: center; font-size: 15px; color: rgba(255,255,255,0.6); }

/* FLOATING BUTTONS */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 200;
  transition: transform 0.25s;
  font-size: 22px;
  color: white;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); }
.instagram-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 200;
  transition: transform 0.25s;
}
.instagram-float:hover { transform: scale(1.12); }

.float-call {
  position: fixed;
  bottom: 152px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1C387D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 200;
  transition: transform 0.25s;
  text-decoration: none;
}
.float-call:hover { transform: scale(1.12); }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; }

.video-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.video-gallery-item:hover { transform: scale(1.02); }
.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 24px rgba(201,168,76,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.video-gallery-item:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(201,168,76,0.6);
}
.video-play-btn svg { margin-left: 4px; }
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-lightbox.active { display: flex; }
.video-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  outline: none;
}
.video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.video-lightbox-close:hover { color: #C9A84C; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* ADMIN CLOSE BTN */
.admin-close-btn {
  position: fixed; top: 20px; right: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s;
}
.admin-close-btn:hover { background: rgba(255,0,0,0.15); border-color: rgba(255,0,0,0.3); color: #ff6b6b; }

/* MOBILE */
@media (max-width: 768px) {
  .navbar { width: calc(100% - 24px); top: 8px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; padding: 80px 0 40px; }
  .hero-right { display: none; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pg-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .rooms-grid, .amenities-grid, .pg-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.feature { grid-column: 1; grid-row: 1; }
}
/* ===== FIX OTHER PGS SECTION CARDS — match home page style ===== */

/* Hide the empty photo thumbnail box */
.other-pgs .pg-thumb-wrap,
.other-pgs .pg-thumb {
  display: none !important;
}

/* Restyle cards to match home page elegant text cards */
.other-pgs .pg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.other-pgs .pg-card {
  background: var(--white, #fff);
  border: 1px solid #E8E3D8;
  border-radius: 22px;
  padding: 28px 26px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.other-pgs .pg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FECE2D, #E8C96A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.other-pgs .pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  border-color: rgba(254, 206, 45,0.35);
}

.other-pgs .pg-card:hover::before {
  transform: scaleX(1);
}

.other-pgs .pg-body {
  padding: 0;
}

.other-pgs .pg-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #1C1A17;
  margin-bottom: 6px;
  font-weight: 400;
}

.other-pgs .pg-gender {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 16px;
    display: inline-block;
    font-weight: 600;
    z-index: 10;
  }

.other-pgs .pg-gender.coming {
  top: 60px;
}

.other-pgs .pg-body p {
  font-size: 12px;
  color: #5A5450;
  margin-bottom: 12px;
  line-height: 1.5;
}

.other-pgs .pg-body a {
  font-size: 13px;
  color: #FECE2D;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.other-pgs .pg-body a::after { content: ''; position: absolute; inset: 0; z-index: 1; }

.other-pgs .pg-card:hover .pg-body a {
  gap: 8px;
}

@media(max-width: 768px) {
  .other-pgs .pg-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 480px) {
  .other-pgs .pg-cards {
    grid-template-columns: 1fr;
  }
}
/* ===== PG PAGE HERO — CENTER when right side is empty ===== */
.hero-grid {
  display: block !important;
}
.hero-left {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-left .hero-badge {
  justify-content: center;
}
.hero-left .hero-tags {
  justify-content: center;
}
.hero-left .hero-cta {
  justify-content: center;
}
.hero-left p {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-left .pg-copy {
  margin-bottom: 18px;
}
.hero-left .pg-address,
.hero-left .pg-desc {
  display: block;
}
.hero-left .pg-desc {
  margin-top: 6px;
}
/* Hide empty right side on PG pages */
.hero-right {
  display: none;
}
/* Show right side only on home page */
.root-page .hero-right {
  display: flex !important;
}
.root-page .hero-left {
  text-align: left !important;
  margin: 0 !important;
  max-width: none !important;
}
.root-page .hero-left .hero-badge { justify-content: flex-start; }
.root-page .hero-left .hero-tags { justify-content: flex-start; }
.root-page .hero-left .hero-cta { justify-content: flex-start; }
.root-page .hero-left p { margin-left: 0; margin-right: 0; }
.root-page .hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Center hero stat cards on PG pages */
.hero-stat-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat-card {
  min-width: 160px;
}

/* Fix garbled dot character in hero badge on PG pages */
.hero-badge {
  font-size: 13px;
}

/* ===== FIX OTHER PGS SECTION CARDS — match home page style ===== */
.other-pgs .pg-thumb-wrap,
.other-pgs .pg-thumb {
  display: none !important;
}
.other-pgs .pg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.other-pgs .pg-card {
  background: var(--white, #fff);
  border: 1px solid #E8E3D8;
  border-radius: 22px;
  padding: 28px 26px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.other-pgs .pg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FECE2D, #E8C96A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.other-pgs .pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  border-color: rgba(254, 206, 45,0.35);
}
.other-pgs .pg-card:hover::before { transform: scaleX(1); }
.other-pgs .pg-body { padding: 0; }
.other-pgs .pg-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #1C1A17;
  margin-bottom: 6px;
  font-weight: 400;
}
.other-pgs .pg-gender {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 16px;
    display: inline-block;
    font-weight: 600;
    z-index: 10;
  }

.other-pgs .pg-gender.coming {
  top: 60px;
}
.other-pgs .pg-body p {
  font-size: 12px;
  color: #5A5450;
  margin-bottom: 12px;
  line-height: 1.5;
}
.other-pgs .pg-body a {
  font-size: 13px;
  color: #FECE2D;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.other-pgs .pg-body a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.other-pgs .pg-card:hover .pg-body a { gap: 8px; }
@media(max-width: 768px) {
  .other-pgs .pg-cards { grid-template-columns: 1fr 1fr; }
  .hero-stat-cards { flex-direction: column; align-items: center; }
}
@media(max-width: 480px) {
  .other-pgs .pg-cards { grid-template-columns: 1fr; }
}
body.sub-page .hero {
  grid-template-columns: 1fr;
}
body.sub-page .hero-left {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
body.sub-page { font-size: 17px; }
body.sub-page h1,
body.sub-page h2,
body.sub-page h3,
body.sub-page h4 { font-weight: 600; }
body.sub-page p,
body.sub-page li,
body.sub-page span,
body.sub-page a { font-weight: 600; }
body.sub-page .hero-left h1 { font-size: clamp(46px, 5.4vw, 70px); }
body.sub-page .hero-badge { font-size: 17px; }
body.sub-page .hero-tagline { font-size: 21px; }
body.sub-page .hero-left p { font-size: 18px; line-height: 1.8; }
body.sub-page .hero-tags span { font-size: 15px; padding: 7px 18px; }
body.sub-page .hero-btn-primary,
body.sub-page .hero-btn-secondary {
  font-size: 17px;
  padding: 15px 32px;
}
body.sub-page .section-head p { font-size: 17px; }
body.sub-page .hero-stat-card strong { font-size: 32px; }
body.sub-page .hero-stat-card span { font-size: 15px; }
body.sub-page .hero-stat-card-gold strong { font-size: 42px; }
body.sub-page .hero-stat-card-gold span { font-size: 16px; }
body.sub-page .room-card h3 { font-size: 22px; }
body.sub-page .room-card .room-num { font-size: 48px; }
body.sub-page .room-card .room-type { font-size: 24px; }
body.sub-page .room-card p { font-size: 17px; }
body.sub-page .room-card .badge { font-size: 13px; }
body.sub-page .amenity-card h3 { font-size: 16px; }
body.sub-page .amenity-card p { font-size: 14px; }
body.sub-page .why-point h3 { font-size: 18px; }
body.sub-page .why-point p { font-size: 15px; }
body.sub-page .contact-card h3 { font-size: 13px; }
body.sub-page .contact-card p { font-size: 16px; }
body.sub-page .btn-call,
body.sub-page .btn-whatsapp,
body.sub-page .btn-instagram { font-size: 16px; }
body.sub-page .pg-body h3 { font-size: 26px; }
body.sub-page .pg-body p { font-size: 16px; }
body.sub-page .pg-body a { font-size: 15px; }
body.sub-page .pg-gender { font-size: 12px; }
body.sub-page .hero-badge { justify-content: center; }
body.sub-page .hero-tags { justify-content: center; }
body.sub-page .hero-cta { justify-content: center; }
body.sub-page .hero-right { display: none; }
body.sub-page .why-grid { grid-template-columns: 1fr; }
body.sub-page .why-list { display: none; }
body.sub-page .why-map { min-height: 420px; }
body.sub-page .why-map iframe { min-height: 420px; }
/* ===== MOBILE NAV FIX ===== */
@media (max-width: 768px) {
  #navLinks.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(254, 206, 45,0.25);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    z-index: 999;
    gap: 2px;
    max-height: 80vh;
    overflow-y: auto;
  }
  #navLinks.mobile-open .nav-link {
    padding: 13px 16px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    color: #1C1A17 !important;
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
  }
  #navLinks.mobile-open .nav-link:hover,
  #navLinks.mobile-open .nav-link.active {
    background: #F7F0DC !important;
    color: #FECE2D !important;
  }
  #navLinks.mobile-open .dropdown,
  #navLinks.mobile-open .mega-dropdown {
    display: none !important;
    position: static !important;
    width: 100% !important;
    min-width: unset !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(254, 206, 45,0.2) !important;
    border-radius: 12px !important;
    background: #F7F0DC !important;
    margin: 0 0 4px 0 !important;
    padding: 6px !important;
  }
  #navLinks.mobile-open .has-dropdown.open .dropdown,
  #navLinks.mobile-open .has-mega.open .mega-dropdown {
    display: block !important;
  }
  #navLinks.mobile-open .dropdown a {
    padding: 12px 14px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #1C1A17 !important;
    display: block !important;
  }
  #navLinks.mobile-open .pg-mega-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
  }
  #navLinks.mobile-open .nav-mega-card {
    padding: 12px 14px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(255,255,255,0.6) !important;
  }
  #navLinks.mobile-open .nav-mega-card:hover {
    background: rgba(255,255,255,1) !important;
  }
  #navLinks.mobile-open .nav-mega-name {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #1C1A17 !important;
  }
  #navLinks.mobile-open .badge {
    font-size: 10px !important;
    padding: 2px 8px !important;
  }
}

/* PG PAGES MOBILE NAV FIX */
@media(max-width:768px){
  .navbar{
    width:calc(100% - 24px);
    top:8px;
    left:50%;
    transform:translateX(-50%);
  }
  .navbar-inner{
    padding:0 16px;
  }
  /* Hide nav links and show hamburger */
  .nav-links{display:none !important;}
  .hamburger{display:block !important;}
  /* Hide Call Us button on mobile — hamburger handles nav */
  .call-btn{display:none !important;}
  /* Show hamburger button */
  .hamburger, #hamburger{display:block !important;}

  /* Mobile open panel */
  #navLinks.mobile-open{
    display:flex !important;flex-direction:column;position:fixed;
    top:82px;left:12px;right:12px;
    background:rgba(255,255,255,0.98);
    backdrop-filter:blur(20px);
    border:1px solid rgba(254, 206, 45,0.25);
    border-radius:20px;padding:8px;
    box-shadow:0 12px 40px rgba(0,0,0,0.15);
    z-index:999;gap:2px;max-height:80vh;overflow-y:auto;
  }
  #navLinks.mobile-open .nav-link{padding:13px 16px !important;font-size:15px !important;border-radius:12px !important;color:#1C1A17 !important;display:flex !important;width:100% !important;justify-content:space-between !important;}
  #navLinks.mobile-open .dropdown,
  #navLinks.mobile-open .mega-dropdown{display:none !important;position:static !important;width:100% !important;min-width:unset !important;transform:none !important;box-shadow:none !important;border:1px solid rgba(254, 206, 45,0.2) !important;border-radius:12px !important;background:#F7F0DC !important;margin:0 0 4px 0 !important;padding:6px !important;}
  #navLinks.mobile-open .has-dropdown.open .dropdown,
  #navLinks.mobile-open .has-mega.open .mega-dropdown{display:block !important;}
  #navLinks.mobile-open .dropdown a{padding:12px 14px !important;border-radius:10px !important;font-size:14px !important;color:#1C1A17 !important;display:block !important;}
  #navLinks.mobile-open .pg-mega-grid,
  #navLinks.mobile-open .pg-grid{display:flex !important;flex-direction:column !important;gap:3px !important;}
  #navLinks.mobile-open .nav-mega-card{padding:12px 14px !important;border-radius:10px !important;display:flex !important;align-items:center !important;justify-content:space-between !important;background:rgba(255,255,255,0.6) !important;}
  #navLinks.mobile-open .nav-mega-name{font-size:14px !important;font-weight:500 !important;color:#1C1A17 !important;}
  #navLinks.mobile-open .badge,
  #navLinks.mobile-open .nav-mega-badge{font-size:10px !important;}
}
/* BOOK A VISIT FLOATING TAB */
.float-book {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  background: var(--gold);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
  padding: 20px 12px;
  border-radius: 12px 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: -4px 0 20px rgba(254, 206, 45,0.35);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-book:hover {
  background: var(--gold-l);
  padding-right: 18px;
}
.float-book svg {
  transform: rotate(180deg);
}

.float-book-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 9999;
  background: #FECE2D;
  color: #1C1A17;
  writing-mode: vertical-rl;
  padding: 20px 13px;
  border-radius: 12px 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: -4px 0 20px rgba(254, 206, 45,0.4);
  font-family: 'DM Sans', sans-serif;
  transition: padding 0.2s;
}
.float-book-tab:hover {
  padding: 20px 18px;
}

.float-location {
  position: fixed;
  bottom: 216px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FECE2D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(254, 206, 45,0.35);
  z-index: 200;
  transition: transform 0.25s;
  text-decoration: none;
}
.float-location:hover { transform: scale(1.12); }


.gallery-list.drag-over-external { border: 2px dashed #ffc107 !important; background-color: rgba(255, 193, 7, 0.05); }


#saveBtn:disabled { opacity: 0.5; cursor: not-allowed; }













/* FORCE HAMBURGER COLOR ON ALL PAGES */
.hamburger, #hamburger { color: var(--gold) !important; }
body.sub-page .hamburger, body.sub-page #hamburger { color: var(--gold) !important; }





