/* ═══════════════════════════════════════════════
   LP Residence — style.css  (shared, all pages)
═══════════════════════════════════════════════ */

:root {
  --bg:        #09090f;
  --bg2:       #0f1120;
  --bg3:       #161929;
  --surface:   #1c2035;
  --card:      rgba(22,25,41,0.95);
  --border:    rgba(255,255,255,0.08);
  --border2:   rgba(255,255,255,0.14);
  --text:      #f0f2f8;
  --muted:     #8892aa;
  --accent:    #f97316;
  --accent2:   #facc15;
  --green:     #22c55e;
  --cyan:      #22d3ee;
  --blue:      #3b82f6;
  --paypal:    #0070ba;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 24px 64px rgba(0,0,0,0.55);
  --nav-h:     68px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(249,115,22,0.07), transparent),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(34,211,238,0.05), transparent);
  z-index: 0;
}

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

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(9,9,15,0.85);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(249,115,22,0.5);
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: var(--surface); }

.nav-cta {
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #111 !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(249,115,22,0.5) !important;
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(9,9,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--text); background: var(--surface); border-color: var(--border2); }
.mobile-nav .nav-cta {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #111 !important;
  border: none !important;
}

/* ══════════════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════════════ */
main {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 28px) 20px 60px;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(1.15) brightness(0.9);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.05); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,15,0.95) 0%, rgba(9,9,15,0.5) 50%, rgba(9,9,15,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 36px 36px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: end;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.hero-h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-p {
  font-size: 1rem;
  color: #cdd4e8;
  max-width: 560px;
  margin-bottom: 20px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-note {
  font-size: 0.78rem;
  color: #8892aa;
}

/* Info card on hero */
.info-card {
  background: rgba(22,25,41,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.info-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.info-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.info-list li {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.info-list li::before { content: "✓"; color: var(--green); flex-shrink: 0; }
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.pill {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
}
.info-price {
  font-size: 0.88rem;
  color: var(--text);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.info-price strong { color: var(--accent2); font-size: 1rem; }

/* ══════════════════════════════════════════════
   BADGES / BUTTONS
══════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--text);
  font-weight: 500;
}
.badge-green {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.35);
  color: #86efac;
}
.badge-star {
  background: rgba(250,204,21,0.12);
  border-color: rgba(250,204,21,0.35);
  color: var(--accent2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111;
  box-shadow: 0 10px 28px rgba(249,115,22,0.4);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(249,115,22,0.55); }

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: var(--border2);
}
.btn-outline:hover { background: var(--surface); border-color: rgba(255,255,255,0.25); }

.btn-paypal {
  background: var(--paypal);
  color: white;
  box-shadow: 0 8px 24px rgba(0,112,186,0.4);
}
.btn-paypal:hover { box-shadow: 0 12px 30px rgba(0,112,186,0.55); }

.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-wa:hover { box-shadow: 0 12px 30px rgba(37,211,102,0.5); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { margin-bottom: 52px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-tag::before {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.trust-score { display: flex; align-items: center; gap: 10px; }
.trust-score-num { font-size: 1.6rem; font-weight: 800; color: var(--accent2); }
.trust-score-stars { font-size: 1rem; color: var(--accent2); line-height: 1; }
.trust-score-label { font-size: 0.78rem; color: var(--muted); }
.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-chip {
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
}
.trust-chip.ok {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #86efac;
}

/* ══════════════════════════════════════════════
   FEATURE GRID
══════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }

/* ══════════════════════════════════════════════
   ABOUT / REVIEWS GRID
══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: start;
}
.about-text {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}
.about-text p { margin-bottom: 14px; }
.about-text p:last-of-type { margin-bottom: 0; }
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.reviews-col { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  font-size: 0.88rem;
  position: relative;
}
.review-stars { color: var(--accent2); font-size: 0.85rem; margin-bottom: 8px; }
.review-text { color: var(--muted); line-height: 1.6; margin-bottom: 10px; font-style: italic; }
.review-author { font-size: 0.82rem; font-weight: 700; color: var(--text); }

/* ══════════════════════════════════════════════
   ROOMS
══════════════════════════════════════════════ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.room-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  border-color: var(--border2);
}
.room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.room-body { padding: 22px 20px; }
.room-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.room-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.room-price span { font-size: 0.78rem; color: var(--muted); font-weight: 400; }
.room-desc { font-size: 0.87rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.room-badges { display: flex; flex-wrap: wrap; gap: 6px; }

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.price-table th {
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border2);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(255,255,255,0.02); }
.price-table .price-cell {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  grid-column: 1 / -1;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--surface);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,9,15,0.9), transparent);
  color: white;
  font-size: 0.78rem;
  padding: 20px 10px 8px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--accent); color: #111; }
.lightbox-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22,25,41,0.85);
  border: 1px solid var(--border2);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  transition: background var(--transition);
}
.lightbox-nav:hover { background: var(--accent); color: #111; }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

/* ══════════════════════════════════════════════
   CONTACT / BOOKING
══════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; line-height: 1.65; }
.card p:last-child { margin-bottom: 0; }

/* Form */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* Social */
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-btn:hover { transform: translateY(-2px); }
.social-wa  { background: #25D366; box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.social-fb  { background: #1877F2; box-shadow: 0 8px 20px rgba(24,119,242,0.3); }

/* Payment */
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-paypal-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: var(--paypal);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(0,112,186,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-paypal-big:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,112,186,0.5); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #111; }
.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0 0 14px;
  display: none;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 14px;
}
.map-wrap iframe { width: 100%; height: 300px; border: none; display: block; }

/* Booking note / terms */
.note-box {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
}
.note-box strong { color: var(--accent); }
.note-box ul { padding-left: 18px; margin-top: 8px; }
.note-box li { margin-bottom: 5px; }

/* Mobile sticky booking bar */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(9,9,15,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border2);
  padding: 12px 16px;
  z-index: 98;
  gap: 10px;
}

/* ══════════════════════════════════════════════
   EXPLORE PAGE
══════════════════════════════════════════════ */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.explore-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  border-color: var(--border2);
}
.explore-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--surface);
}
.explore-body { padding: 18px 18px 20px; }
.explore-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.explore-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.explore-dist {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.explore-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 97;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 20px 28px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(249,115,22,0.4);
}
.footer-brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-contact-item {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery      { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .info-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .sticky-bar { display: flex; }
  main { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 420px; }
  .hero-content { padding: 24px 18px 22px; }
  .lightbox-prev { left: -44px; }
  .lightbox-next { right: -44px; }
}
