/* ============================================================
   JHANGI HOUSE — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@400;500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --forest-green: #1B3A2D;
  --forest-green-light: #254d3c;
  --gold: #C9A84C;
  --gold-hover: #b8942d;
  --text: #1a1a1a;
  --text-light: #f5f0e8;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f9f6f1;
  --bg-dark: #111c17;
  --border: #e5e0d6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --nav-height: 72px;
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-green { color: var(--forest-green); }
.text-center { text-align: center; }
.text-light { color: var(--text-light); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-green);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--forest-green);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  background: rgba(27, 58, 45, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: var(--forest-green);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold);
  color: var(--forest-green) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 500 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--forest-green);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 18, 0.55) 0%,
    rgba(10, 25, 18, 0.45) 50%,
    rgba(10, 25, 18, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Small hero variant */
.hero-sm {
  min-height: 340px;
  padding-top: var(--nav-height);
}

.hero-sm .hero-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-sm .hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ── Stats/Highlights Bar ── */
.highlights-bar {
  background: var(--forest-green);
  padding: 40px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.highlight-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.highlight-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── Two-Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse .two-col-image {
  order: -1;
}

.two-col-content .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.two-col-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.two-col-image:hover img {
  transform: scale(1.03);
}

.two-col-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--forest-green);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── Amenities Grid ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.amenity-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.amenity-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.amenity-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Gallery Teaser ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-mosaic-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-mosaic-item:first-child {
  grid-row: 1 / 3;
}

.gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-mosaic-item:hover img {
  transform: scale(1.08);
}

.gallery-mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 45, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-mosaic-item:hover .gallery-mosaic-overlay {
  background: rgba(27, 58, 45, 0.35);
}

.gallery-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--forest-green);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), gap var(--transition);
}

.gallery-view-link:hover {
  color: var(--gold);
  gap: 14px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--forest-green);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.07);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.4);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
  transition: all var(--transition);
}

.footer-wa-btn:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ── Gallery Page ── */
.gallery-header {
  background: var(--forest-green);
  padding: 140px 0 80px;
  text-align: center;
}

.gallery-header h1 {
  color: #fff;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 40px 0 48px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-tab:hover {
  border-color: var(--forest-green);
  color: var(--forest-green);
}

.filter-tab.active {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: #fff;
}

/* ── Masonry Gallery ── */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
  padding-bottom: 80px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 45, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(27, 58, 45, 0.4);
}

.gallery-item-overlay svg {
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hidden {
  display: none;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background var(--transition), transform var(--transition);
  z-index: 10;
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,0.22);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(2px);
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  z-index: 10;
}

/* ── Room Cards ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: #fff;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.room-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-img {
  transform: scale(1.05);
}

.room-card-img-wrapper {
  overflow: hidden;
}

.room-card-body {
  padding: 24px;
}

.room-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.room-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Outdoor Features ── */
.outdoor-features {
  background: var(--bg-soft);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(27, 58, 45, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h4 {
  font-size: 1rem;
  color: var(--forest-green);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Property Details ── */
.property-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.details-list-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--forest-green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

.details-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Explore / Attractions ── */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.attraction-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.attraction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.attraction-card:hover::before {
  transform: scaleX(1);
}

.attraction-distance {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.attraction-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--forest-green);
  margin-bottom: 10px;
}

.attraction-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Getting There ── */
.getting-there {
  background: var(--forest-green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  margin: 64px 0;
}

.getting-there h3 {
  color: #fff;
  margin-bottom: 20px;
}

.getting-there p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.route-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.route-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

.route-step-icon {
  color: var(--gold);
}

.route-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── Season Cards ── */
.seasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.season-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
}

.season-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.season-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.season-months {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.season-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.wa-card {
  background: var(--forest-green);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

.wa-card-icon {
  width: 72px;
  height: 72px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.wa-card-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.wa-card h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.wa-card-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  margin: 12px 0;
}

.wa-card-note {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.wa-card .btn {
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  padding: 16px 40px;
}

.wa-card .btn:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.message-checklist {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}

.message-checklist h3 {
  font-size: 1.15rem;
  color: var(--forest-green);
  margin-bottom: 20px;
}

.message-checklist ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.message-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B3A2D'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Pricing Card ── */
.pricing-card {
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  background: #fff;
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 4px;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pricing-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--forest-green);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Location Map ── */
.location-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.location-map-placeholder {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.location-map-placeholder::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  top: -40px;
  right: -40px;
}

.location-pin {
  text-align: center;
  color: #fff;
}

.location-pin svg {
  color: var(--gold);
  margin-bottom: 12px;
}

.location-pin p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.location-info {
  padding: 28px;
}

.location-info h4 {
  font-size: 1.05rem;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.location-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Contact Sidebar ── */
.contact-sidebar h3 {
  font-size: 1.4rem;
  color: var(--forest-green);
  margin-bottom: 24px;
}

.sidebar-section {
  margin-bottom: 36px;
}

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
}

.divider-center {
  margin: 20px auto;
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--forest-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .two-col { gap: 48px; }
  .gallery-grid { columns: 2; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

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

  .highlight-item:nth-child(2) { border-right: none; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse .two-col-image {
    order: unset;
  }

  .two-col-image img {
    height: 300px;
  }

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

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-mosaic-item:first-child {
    grid-row: auto;
  }

  .gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  .gallery-mosaic-item:first-child {
    grid-row: 1 / 3;
  }

  .gallery-grid { columns: 2; }

  .rooms-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .property-details-grid { grid-template-columns: 1fr; gap: 32px; }
  .attractions-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }

  .getting-there {
    padding: 36px 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner { padding: 64px 0; }

  .lightbox-arrow { display: none; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px 200px 200px;
  }
  .gallery-mosaic-item:first-child { grid-row: auto; }
  .getting-there { padding: 28px 20px; }
  .route-steps { flex-direction: column; align-items: flex-start; }
}

/* ── Attraction Panels ── */
.attraction-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.attraction-panel {
  position: relative;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
}

.attraction-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.attraction-panel:hover .attraction-panel-bg {
  transform: scale(1.06);
}

.attraction-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 45%, rgba(0,0,0,0.15) 100%);
}

.attraction-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  color: #fff;
}

.attraction-distance-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.attraction-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.attraction-panel-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

@media (max-width: 768px) {
  .attraction-panels {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .attraction-panel {
    height: 300px;
  }
  .attraction-panel-content {
    padding: 20px 24px;
  }
  .attraction-panel-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .attraction-panel {
    height: 260px;
  }
  .attraction-panel-content {
    padding: 16px 18px;
  }
  .attraction-panel-desc {
    display: none;
  }
  .attraction-panel-title {
    font-size: 1.25rem;
  }
}
