/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== LIGHT THEME (DEFAULT) ===== */
:root {
  --blue: #1A6FD4;
  --blue-dark: #0F4FA8;
  --gold: #FFB800;
  --gold-dark: #B8860B;
  --rose: #D4537E;
  --green: #2E7D32;

  --text: #1a1a2e;
  --text-light: #555;
  --text-muted: #888;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --border-light: #f0f0f0;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14);
  --transition: 0.3s ease;

  --header-bg: rgba(255,255,255,0.97);
  --nav-link-color: #444;
  --section-label-bg: #eef2ff;
  --section-label-color: var(--blue);
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --text: #f0f0f8;
  --text-light: #aab0c0;
  --text-muted: #6b7280;
  --bg: #0f1117;
  --bg-soft: #161b27;
  --bg-card: #1c2236;
  --border: #2a3350;
  --border-light: #222840;

  --header-bg: rgba(15,17,23,0.97);
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.5);
  --nav-link-color: #b0b8cc;
  --section-label-bg: rgba(26,111,212,0.15);
  --section-label-color: #6fa8f5;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--bg); overflow-x: hidden; max-width: 100vw; transition: background var(--transition), color var(--transition); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

nav {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 64px; gap: 8px; min-width: 0;
}

/* Logo */
.logo-link { display: flex; align-items: center; flex-shrink: 0; min-width: 0; }
.logo-img { height: 32px; width: auto; max-width: 150px; display: block; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }

/* ===== DESKTOP NAV (inside header) ===== */
.nav-desktop { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-desktop a {
  padding: 8px 13px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--nav-link-color);
  transition: all var(--transition); white-space: nowrap;
}
.nav-desktop a:hover { color: var(--blue); background: var(--section-label-bg); }

.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 9px 18px !important; border-radius: 10px !important;
  display: inline-flex !important; align-items: center; gap: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: #fff !important; transform: translateY(-1px); }

/* ===== MOBILE NAV OVERLAY (direct child of body, avoids backdrop-filter stacking context) ===== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--bg);
  border-top: 2px solid var(--blue);
  flex-direction: column;
  padding: 12px 16px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: 12px;
  font-size: 1rem; font-weight: 500; color: var(--text);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.nav-mobile a i { font-size: 18px; color: var(--blue); width: 20px; text-align: center; flex-shrink: 0; }
.nav-mobile a:hover { background: var(--section-label-bg); border-color: var(--border); color: var(--blue); }
.nav-mobile-cta {
  background: var(--blue) !important; color: #fff !important;
  margin-top: 12px; justify-content: center;
  border-color: var(--blue) !important;
}
.nav-mobile-cta i { color: #fff !important; }
.nav-mobile-cta:hover { background: var(--blue-dark) !important; }
.nav-mobile-call {
  background: var(--bg-soft) !important;
  border-color: var(--border) !important;
  margin-top: 8px; justify-content: center;
  font-weight: 600 !important;
}
.nav-mobile-call i { color: var(--green) !important; }

/* Nav right controls */
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Dark mode toggle */
.theme-toggle {
  background: var(--bg-soft); border: 1px solid var(--border);
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--text-light);
  transition: all var(--transition); flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--blue); color: var(--blue); }
[data-theme="light"] #theme-icon-dark { display: none; }
[data-theme="dark"] #theme-icon-light { display: none; }

/* Hamburger */
.hamburger {
  display: none; cursor: pointer;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center;
  font-size: 20px; color: var(--text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0; padding: 0;
  outline: none; -webkit-tap-highlight-color: transparent;
}
.hamburger:hover,
.hamburger.open { border-color: var(--blue); color: var(--blue); background: var(--section-label-bg); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1555854877-bab0e564b8d5?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,38,96,0.88) 0%, rgba(15,79,168,0.80) 45%, rgba(5,10,30,0.85) 100%);
}

.hero-content {
  position: relative; z-index: 1; color: #fff;
  max-width: 820px; padding: 40px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 500;
  margin-bottom: 28px; backdrop-filter: blur(8px);
  max-width: 100%; white-space: normal; text-align: center; flex-wrap: wrap; justify-content: center;
}
.hero-badge i { color: var(--gold); flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800; line-height: 1.12;
  margin-bottom: 22px; letter-spacing: -0.02em;
}
.hero-accent { color: var(--gold); }

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  opacity: 0.88; margin-bottom: 40px; line-height: 1.75;
}
.hero p strong { opacity: 1; }

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.btn-primary {
  background: #fff; color: var(--blue);
  padding: 14px 30px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6); color: #fff;
  padding: 14px 30px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-3px); }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px; padding: 18px 24px; backdrop-filter: blur(12px);
  width: 100%; max-width: 640px; margin: 0 auto;
}
.stat-item { text-align: center; padding: 0 16px; flex: 1; min-width: 0; }
.stat-num { font-size: clamp(1.3rem, 4vw, 1.9rem); font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: clamp(0.6rem, 1.5vw, 0.72rem); opacity: 0.75; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.73rem;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounceDown 2.2s infinite; text-decoration: none;
  transition: opacity var(--transition);
}
.scroll-hint:hover { opacity: 0.9; }
.scroll-hint i { font-size: 20px; }
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ===== SECTION BASE ===== */
section { padding: 96px 24px; }
.section-alt { background: var(--bg-soft); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--section-label-bg); color: var(--section-label-color);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-label-light {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.02em;
}
.h2-light { color: #fff !important; }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.p-light { color: rgba(255,255,255,0.75) !important; }

.container { max-width: 1200px; margin: 0 auto; }

/* ===== PG CARDS ===== */
#properties { background: var(--bg-soft); }

.pg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
  align-items: stretch;
}

.pg-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.pg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(26,111,212,0.3); }

.pg-card-img {
  position: relative; height: 220px; overflow: hidden; flex-shrink: 0;
}
.pg-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.pg-card:hover .pg-card-img img { transform: scale(1.07); }

.pg-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.03em;
}
.badge-boys { background: rgba(26,111,212,0.92); color: #fff; }
.badge-girls { background: rgba(212,83,126,0.92); color: #fff; }
.badge-mixed { background: rgba(46,125,50,0.92); color: #fff; }

.pg-price-tag {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.72); color: #fff;
  padding: 6px 14px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600;
  backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 6px;
}

.pg-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pg-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.pg-card-location {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 0.81rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.4;
  min-height: 4.2em;
}
.pg-card-location i { color: var(--blue); font-size: 14px; margin-top: 1px; flex-shrink: 0; }

.pg-facilities {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; flex: 1;
}
.facility-pill {
  display: flex; align-items: center; gap: 5px;
  background: var(--bg-soft); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 8px;
  font-size: 0.73rem; color: var(--text-light);
}
.facility-pill i { font-size: 13px; color: var(--blue); }

.pg-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto;
}
.pg-card-footer .btn-view {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  font-size: 0.84rem; font-weight: 600;
  transition: all var(--transition); border: none; cursor: pointer;
  flex: 1; justify-content: center; font-family: 'Poppins', sans-serif;
}
.pg-card-footer .btn-view:hover { background: var(--blue-dark); }
.pg-card-footer .btn-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font-size: 0.84rem; font-weight: 600;
  transition: all var(--transition); border: none; cursor: pointer;
  flex: 1; justify-content: center; font-family: 'Poppins', sans-serif;
}
.pg-card-footer .btn-wa:hover { background: #1ebe5d; }

/* ===== PG DETAIL MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,10,30,0.75); backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding: 20px 16px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-card); border-radius: var(--radius-lg);
  max-width: 860px; width: 100%;
  margin: auto; animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden; border: 1px solid var(--border);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(40px) scale(0.96); } to { opacity: 1; transform: none; } }

.modal-header { position: relative; height: 280px; overflow: hidden; }
.modal-header img { width: 100%; height: 100%; object-fit: cover; }
.modal-header::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; transition: var(--transition);
}
.modal-close:hover { background: #fff; transform: scale(1.1); }
.modal-title-area {
  position: absolute; bottom: 20px; left: 24px; z-index: 10; color: #fff;
}
.modal-title-area h2 { font-size: 1.55rem; font-weight: 700; }
.modal-title-area p { font-size: 0.83rem; opacity: 0.85; display: flex; align-items: center; gap: 6px; margin-top: 5px; }
.modal-title-area .pg-badge { position: static; margin-bottom: 8px; display: inline-block; }

.modal-body { padding: 28px 28px 0; }
.modal-section-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.modal-section-title i { color: var(--blue); font-size: 18px; }

.modal-facilities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-bottom: 28px;
}
.modal-facility {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; border-radius: 10px;
  background: var(--bg-soft); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 500; color: var(--text);
}
.modal-facility i { font-size: 17px; color: var(--blue); flex-shrink: 0; }

.room-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-bottom: 28px; }
.room-type-card {
  padding: 16px; border-radius: 12px;
  border: 1px solid var(--border); text-align: center;
  background: var(--bg-card);
}
.room-type-card .rt-icon { font-size: 26px; margin-bottom: 8px; }
.room-type-card .rt-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.room-type-card .rt-price {
  font-size: 0.78rem; color: var(--text-light);
  background: var(--section-label-bg); color: var(--section-label-color);
  padding: 4px 10px; border-radius: 100px; display: inline-block;
}

.modal-footer {
  padding: 22px 28px;
  display: flex; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--border); margin-top: 8px;
}
.btn-enquire-modal {
  flex: 1; min-width: 150px;
  background: var(--blue); color: #fff;
  border: none; padding: 14px 24px; border-radius: 12px;
  font-size: 0.93rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); font-family: 'Poppins', sans-serif;
}
.btn-enquire-modal:hover { background: var(--blue-dark); }
.btn-call-modal {
  flex: 1; min-width: 130px;
  background: var(--bg-soft); color: var(--text); border: 1.5px solid var(--border);
  padding: 14px 24px; border-radius: 12px;
  font-size: 0.93rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); font-family: 'Poppins', sans-serif;
}
.btn-call-modal:hover { border-color: var(--blue); color: var(--blue); }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.why-card {
  text-align: center; padding: 36px 22px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: var(--bg-card); transition: all var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(26,111,212,0.3); }
.why-icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  background: var(--section-label-bg); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 27px; color: var(--blue); transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--blue); color: #fff; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }

/* ===== FACILITIES ===== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.facility-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 26px 14px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  text-align: center; font-size: 0.8rem; font-weight: 500; color: var(--text);
  transition: all var(--transition);
}
.facility-item:hover { border-color: rgba(26,111,212,0.35); box-shadow: var(--shadow); transform: translateY(-3px); }
.facility-item i { font-size: 28px; color: var(--blue); }
.facility-item span { line-height: 1.3; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-stars { color: #FFB800; font-size: 14px; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card > p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
}
.testimonial-card > p::before { content: '\201C'; font-size: 2rem; color: var(--blue); opacity: 0.3; line-height: 0; vertical-align: -12px; margin-right: 4px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.t-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.t-role { font-size: 0.77rem; color: var(--text-muted); margin-top: 2px; }

/* ===== HOUSE RULES ===== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.rule-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: all var(--transition);
}
.rule-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.rule-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.rule-blue { background: #eef2ff; color: var(--blue); }
.rule-red { background: #fff0f0; color: #dc2626; }
.rule-green { background: #f0fdf4; color: #16a34a; }
.rule-gold { background: #fffbeb; color: #d97706; }
[data-theme="dark"] .rule-blue { background: rgba(26,111,212,0.15); color: #6fa8f5; }
[data-theme="dark"] .rule-red { background: rgba(220,38,38,0.15); color: #f87171; }
[data-theme="dark"] .rule-green { background: rgba(22,163,74,0.15); color: #4ade80; }
[data-theme="dark"] .rule-gold { background: rgba(217,119,6,0.15); color: #fbbf24; }
.rule-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.rule-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

.rules-note {
  background: var(--section-label-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; color: var(--section-label-color); text-align: left;
}
.rules-note i { font-size: 18px; flex-shrink: 0; }

/* ===== ENQUIRY FORM ===== */
.section-enquiry { background: var(--blue-dark); color: #fff; }

.enquiry-wrapper {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px;
  align-items: start; max-width: 1050px; margin: 0 auto;
}
.enquiry-info h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 16px; }
.enquiry-info > p { font-size: 0.88rem; opacity: 0.8; line-height: 1.75; margin-bottom: 28px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list .ci {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-list .ct { font-size: 0.78rem; opacity: 0.65; }
.contact-list .cv { font-size: 0.92rem; font-weight: 600; }
.contact-list .cv a { color: #fff; text-decoration: none; }
.contact-list .cv a:hover { opacity: 0.85; }

.enquiry-social { display: flex; gap: 10px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all var(--transition);
  color: #fff;
}
.social-fb { background: #1877F2; }
.social-fb:hover { background: #0d65de; transform: translateY(-2px); }
.social-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-ig:hover { opacity: 0.88; transform: translateY(-2px); }
.social-wa { background: #25D366; }
.social-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

.enquiry-form {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; color: var(--text);
}
.form-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; color: #1a1a2e; display: flex; align-items: center; gap: 10px; }
.form-title i { color: #25D366; font-size: 22px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid #e5e7eb; font-family: 'Poppins', sans-serif;
  font-size: 0.875rem; outline: none; background: #f8f9fc;
  transition: border-color var(--transition), background var(--transition);
  color: #1a1a2e; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(26,111,212,0.1);
}
.form-group textarea { resize: vertical; min-height: 84px; }

.btn-submit {
  width: 100%; margin-top: 18px;
  background: #25D366; color: #fff; border: none;
  padding: 15px; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--transition); font-family: 'Poppins', sans-serif;
}
.btn-submit:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.form-note { font-size: 0.73rem; color: #888; text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note i { color: #25D366; }

/* ===== FOOTER ===== */
footer {
  background: #0c0f1a; color: rgba(255,255,255,0.75);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }

.footer-logo-link { display: inline-block; margin-bottom: 18px; }
.footer-logo { height: 34px; width: auto; }
.footer-brand p { font-size: 0.83rem; line-height: 1.75; opacity: 0.65; max-width: 270px; margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }

.footer-col h4 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.82rem; opacity: 0.65; transition: opacity var(--transition);
  display: flex; align-items: center;
}
.footer-col ul li a:hover { opacity: 1; color: #fff; }

.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.77rem; opacity: 0.45;
}
.footer-bottom a { color: #fff; opacity: 1; }
.footer-bottom a:hover { opacity: 0.8; }

/* ===== STICKY WHATSAPP ===== */
.sticky-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 27px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition); animation: pulseWa 2.5s infinite;
}
.sticky-wa:hover { transform: scale(1.12); color: #fff; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

/* Sticky call button — only visible on mobile */
.sticky-call {
  display: none;
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  background: var(--blue); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 20px rgba(26,111,212,0.45);
  transition: all var(--transition);
}
.sticky-call:hover { background: var(--blue-dark); transform: scale(1.1); color: #fff; }

/* ===== AOS ===== */
[data-aos] { will-change: transform, opacity; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-desktop a:not(.nav-cta) { padding: 8px 10px; font-size: 0.82rem; }
}

@media (max-width: 900px) {
  .enquiry-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== TABLET + MOBILE ===== */
@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  .nav-desktop { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }

  section { padding: 64px 16px; }

  /* Hero full-screen */
  .hero { padding-top: 64px; min-height: 100vh; }
  .hero-content { padding: 24px 16px 32px; width: 100%; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero p { font-size: 0.9rem; }
  .hero-buttons { margin-bottom: 32px; }

  /* Stats 2×2 grid */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    overflow: hidden;
    width: 100%; max-width: 100%;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 14px 8px; flex: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.63rem; }

  /* Cards & grids */
  .pg-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }

  /* Enquiry & footer */
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-inner { padding: 40px 16px 24px; }

  /* Modal */
  .modal { margin: 0; border-radius: var(--radius); }
  .modal-overlay { padding: 10px; align-items: flex-start; }
  .modal-header { height: 200px; }
  .modal-body { padding: 16px 14px 0; }
  .modal-footer { padding: 14px; gap: 10px; }
  .modal-facilities-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  .enquiry-form { padding: 20px 16px; }

  /* Sticky call visible on mobile */
  .sticky-call { display: flex; }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  section { padding: 52px 14px; }
  nav { padding: 0 12px; }
  .logo-img { max-width: 120px; height: 28px; }

  .hero-content { padding: 20px 12px 28px; }
  .hero p br { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { width: 100%; justify-content: center; }

  .why-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }

  .pg-card-footer { flex-direction: column; gap: 8px; }
  .pg-card-footer .btn-view,
  .pg-card-footer .btn-wa { width: 100%; justify-content: center; }

  .section-header { margin-bottom: 32px; }
  .room-types-grid { grid-template-columns: 1fr; }
  .modal-footer { flex-direction: column; }

  .footer-inner { padding: 36px 14px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .sticky-wa { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 23px; }
  .sticky-call { bottom: 20px; left: 16px; width: 50px; height: 50px; font-size: 21px; }
}

@media (min-width: 1200px) {
  .pg-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== PROMO BANNER (Hero) ===== */
/* ===== PROMO BANNER ===== */
#promo-banner {
  padding: 92px 24px 28px;
  background: var(--bg-soft);
}

.banner-wrapper {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  border-radius: 18px;
  max-width: 1160px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}
.banner-wrapper:active { cursor: grabbing; }

.banner-slider {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.banner-slide {
  min-width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Geometric shape accents */
.banner-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.banner-shape {
  position: absolute;
  background: var(--accent, #5FB8A2);
}
.banner-shape-1 {
  right: -6%;
  top: -20%;
  width: 60%;
  height: 140%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.55;
}
.banner-shape-2 {
  right: 8%;
  top: -10%;
  width: 22%;
  height: 60%;
  clip-path: polygon(50% 0, 100% 0, 50% 100%, 0% 100%);
  opacity: 0.35;
}
.banner-shape-3 {
  right: 0;
  bottom: -15%;
  width: 30%;
  height: 50%;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
  opacity: 0.4;
}

.banner-slide-inner {
  width: 100%;
  padding: 0 56px;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Text */
.banner-text {
  width: 54%;
  color: #0B2545;
  z-index: 2;
  animation: bannerTextIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

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

.banner-headline {
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #0B2545;
  letter-spacing: -0.02em;
}

.banner-sub-wrap { margin-bottom: 24px; }

.banner-sub-bold {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 4px;
  line-height: 1.5;
}

.banner-sub-light {
  font-size: 0.88rem;
  color: rgba(11,37,69,0.7);
  line-height: 1.6;
}

.banner-perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.banner-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(11,37,69,0.85);
}
.banner-perk i { font-size: 17px; }

.banner-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: #1A6FD4;
  color: #fff;
  padding: 11px 22px; border-radius: 10px;
  font-size: 0.84rem; font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
  border: none;
}
.banner-cta i { font-size: 14px; transition: transform 0.22s; }
.banner-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.banner-cta:hover i { transform: translateX(4px); }

/* Image (transparent cutout, anchored bottom-right) */
.banner-img-wrap {
  position: absolute;
  right: 2%; bottom: 0; top: 0;
  width: 42%;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner-img-wrap img {
  width: auto; height: 96%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}
.banner-slider:not(.sliding) .banner-img-wrap img { transform: scale(1.03); }

/* Arrows hidden */
.banner-arrow { display: none; }

/* Dots */
.banner-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 0 4px;
}

.banner-dot {
  height: 9px;
  width: 9px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--border);
  transition: width 0.4s ease, background 0.4s ease;
  flex-shrink: 0;
}

.banner-dot.active {
  width: 30px;
  background: var(--blue);
}

/* ===== BANNER RESPONSIVE ===== */
@media (max-width: 1024px) {
  #promo-banner { padding: 86px 16px 24px; }
  .banner-slide { height: 320px; }
  .banner-slide-inner { padding: 0 40px; }
  .banner-text { width: 55%; }
  .banner-img-wrap { width: 44%; }
}

@media (max-width: 768px) {
  #promo-banner { padding: 84px 12px 20px; }
  .banner-slide { height: 300px; }
  .banner-slide-inner { padding: 0 24px; }
  .banner-text { width: 56%; }
  .banner-img-wrap { width: 42%; right: 0; }
  .banner-headline { font-size: 1.3rem; }
  .banner-sub-bold { font-size: 0.82rem; }
  .banner-sub-light { font-size: 0.78rem; }
  .banner-cta { padding: 9px 16px; font-size: 0.78rem; }
  .banner-perks { gap: 12px; }
  .banner-perk { font-size: 0.75rem; }
}

@media (max-width: 540px) {
  #promo-banner { padding: 80px 10px 16px; }
  .banner-slide { height: auto; min-height: 380px; }
  .banner-slide-inner {
    padding: 24px 20px 0;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  .banner-text {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 3;
  }
  .banner-img-wrap {
    position: relative;
    width: 70%;
    height: 200px;
    margin: 8px auto 0;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .banner-img-wrap img { height: 100%; }
  .banner-headline { font-size: 1.2rem; margin-bottom: 10px; }
  .banner-sub-wrap { display: none; }
  .banner-cta { padding: 9px 16px; font-size: 0.78rem; }
  .banner-dots { padding: 12px 0 2px; }
}

/* ===== TRUST BAR ===== */
#trust-bar {
  padding: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: stretch;
  padding: 0 24px;
}

.trust-item {
  flex: 1; text-align: center;
  padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}

.trust-num {
  font-size: 2rem; font-weight: 800;
  color: var(--blue); line-height: 1;
  letter-spacing: -0.03em;
}

.trust-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-muted);
  font-weight: 600;
}

.trust-divider {
  width: 1px; background: var(--border);
  align-self: stretch; margin: 14px 0;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .trust-inner { padding: 0 8px; }
  .trust-item { padding: 16px 6px; }
  .trust-num { font-size: 1.4rem; }
  .trust-label { font-size: 0.6rem; letter-spacing: 0.04em; }
}

/* ===== MODAL GALLERY ===== */
.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.modal-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--border);
}

.modal-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

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

.modal-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}

.modal-gallery-overlay i {
  font-size: 22px; color: #fff;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal-gallery-item:hover .modal-gallery-overlay { background: rgba(0, 0, 0, 0.4); }
.modal-gallery-item:hover .modal-gallery-overlay i { opacity: 1; transform: scale(1); }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0, 0, 0, 0.93);
  align-items: center; justify-content: center;
}
.lightbox-overlay.open { display: flex; }

.lightbox-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 92vw;
}

.lightbox-content img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; border-radius: 8px;
  display: block; user-select: none;
}

.lightbox-counter {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem; font-family: 'Poppins', sans-serif;
  letter-spacing: 0.06em;
}

.lightbox-close {
  position: fixed; top: 18px; right: 18px; z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-prev,
.lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: background 0.2s;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.22); }

/* ===== MODAL GALLERY + LIGHTBOX RESPONSIVE ===== */
@media (max-width: 768px) {
  .modal-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 20px; }
}

@media (max-width: 480px) {
  .modal-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .lightbox-content img { max-height: 75vh; }
}
