:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --cream: #F5F0E8;
  --cream-2: #EDE8DE;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR — always black ── */
#mainNav {
  background: rgba(0,0,0,0.95);
  padding: 0.6rem 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(10px);
}
#mainNav.scrolled {
  background: rgba(0,0,0,1);
  box-shadow: 0 2px 30px rgba(0,0,0,0.8);
}
.navbar-logo-img { height: 48px; width: auto; object-fit: contain; }
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-brand-text strong { font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: 0.18em; color: var(--white); text-transform: uppercase; }
.navbar-brand-text span { font-size: 0.58rem; letter-spacing: 0.3em; color: var(--gold); font-weight: 300; text-transform: uppercase; }
.nav-link { color: rgba(255,255,255,0.85) !important; font-size: 0.78rem; letter-spacing: 0.1em; font-weight: 500; padding: 0.4rem 0.9rem !important; transition: var(--transition); text-transform: uppercase; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.dropdown-menu { background: #0d0d0d; border: 1px solid rgba(201,168,76,0.2); border-radius: 0; }
.dropdown-item { color: rgba(255,255,255,0.8); font-size: 0.75rem; letter-spacing: 0.08em; padding: 0.5rem 1.5rem; transition: var(--transition); }
.dropdown-item:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.btn-book { background: var(--gold); color: var(--dark) !important; padding: 0.45rem 1.3rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; transition: var(--transition); border: 2px solid var(--gold); cursor: pointer; }
.btn-book:hover { background: transparent; color: var(--gold) !important; }
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger-icon span { width: 100%; height: 1.5px; background: var(--white); transition: var(--transition); }

/* ── POPUP ── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.3);
  max-width: 500px; width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.5rem;
  cursor: pointer; transition: var(--transition);
  line-height: 1;
}
.popup-close:hover { color: var(--gold); }
.popup-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 0.3rem; }
.popup-sub { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.8rem; }
.popup-form input, .popup-form select, .popup-form textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 0.75rem 1rem;
  font-size: 0.85rem; font-family: var(--font-body);
  margin-bottom: 1rem; outline: none;
  transition: border-color 0.3s ease;
}
.popup-form input:focus, .popup-form select:focus, .popup-form textarea:focus { border-color: var(--gold); }
.popup-form select option { background: var(--dark-2); }
.popup-form textarea { resize: vertical; min-height: 80px; }
.popup-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; padding: 0.9rem; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.popup-submit:hover { background: var(--gold-light); }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 11000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 1px solid rgba(201,168,76,0.2); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
.lightbox-close:hover { color: var(--gold); }

/* ── HERO ── */
.hero-section { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.75) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 0 2rem; animation: heroFade 1.4s ease forwards; text-align: center; }
@keyframes heroFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 1.1; margin-bottom: 1rem; }
.hero-title strong { font-weight: 700; color: var(--gold); }
.hero-sub { font-size: 1rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.8); text-transform: uppercase; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--dark); padding: 0.9rem 2.2rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; transition: var(--transition); display: inline-block; border: 2px solid var(--gold); cursor: pointer; font-family: var(--font-body); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline-light-custom { background: transparent; color: var(--white); padding: 0.9rem 2.2rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; transition: var(--transition); display: inline-block; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-light-custom:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark-cta { display: inline-block; border: 2px solid var(--gold); color: var(--gold); padding: 0.8rem 2.5rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; transition: var(--transition); }
.btn-dark-cta:hover { background: var(--gold); color: var(--dark); }

/* ── INTRO STRIP ── */
.intro-strip { background: var(--dark-2); padding: 1rem 0; border-top: 1px solid rgba(201,168,76,0.3); border-bottom: 1px solid rgba(201,168,76,0.1); }
.strip-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1.5rem; color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.08); }
.strip-item:last-child { border-right: none; }
.strip-item i { color: var(--gold); font-size: 1rem; }

/* ── SECTIONS ── */
.py-lg-7 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
.section-eyebrow { font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2; color: var(--dark); margin-bottom: 0.5rem; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 0.85rem; color: var(--text-light); letter-spacing: 0.1em; margin-bottom: 1.5rem; text-transform: uppercase; }
.section-body { color: var(--text-light); line-height: 1.85; font-size: 0.95rem; margin-bottom: 2rem; }

/* ── IMG STACK ── */
.img-stack-wrap { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.img-stack-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.img-stack-thumb { position: absolute; bottom: 0; right: 0; width: 45%; aspect-ratio: 1; object-fit: cover; border: 5px solid var(--cream); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

/* ── FEATURE LIST ── */
.feature-list { display: flex; flex-direction: column; gap: 1.2rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon { width: 42px; height: 42px; min-width: 42px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--dark); }
.feature-item strong { display: block; font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ── STATS ── */
.stats-banner { background: var(--dark); padding: 4rem 0; border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
.stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── VILLA CARDS ── */
.villa-card { position: relative; overflow: hidden; cursor: pointer; background: var(--dark); }
.villa-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.7s ease; display: block; }
.villa-card:hover .villa-card-img { transform: scale(1.06); }
.villa-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); padding: 2.5rem 1.8rem 1.5rem; color: var(--white); }
.villa-card-tag { display: inline-block; background: var(--gold); color: var(--dark); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 0.2rem 0.7rem; margin-bottom: 0.7rem; font-weight: 700; }
.villa-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.3rem; }
.villa-card p { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; margin: 0; }

/* ── NIGHT/DAY TABS ── */
.night-day-tabs { display: inline-flex; border: 1px solid rgba(201,168,76,0.3); margin-bottom: 2rem; }
.night-day-tab { background: transparent; border: none; color: var(--text-light); padding: 0.5rem 1.4rem; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.night-day-tab.active, .night-day-tab:hover { background: var(--dark); color: var(--gold); }

/* ── AMENITY CARDS ── */
.amenity-card { background: var(--white); padding: 2rem 1.5rem; text-align: center; border: 1px solid rgba(0,0,0,0.06); transition: var(--transition); height: 100%; }
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: var(--gold); }
.amenity-icon { width: 54px; height: 54px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.2rem; color: var(--dark); }
.amenity-card h5 { font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; font-weight: 600; }
.amenity-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, #0A0A0A 0%, #1A1A0A 100%); padding: 5rem 1rem; border-top: 1px solid rgba(201,168,76,0.3); border-bottom: 1px solid rgba(201,168,76,0.3); }
.cta-sub { font-size: 0.7rem; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.8rem; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.cta-phone { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold); }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 260px); gap: 4px; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-big { grid-column: span 2; grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--white); font-size: 1.5rem; opacity: 0; }
.gal-item:hover .gal-overlay { background: rgba(0,0,0,0.4); opacity: 1; }

/* ── VIDEO SECTION ── */
.video-section { position: relative; overflow: hidden; background: var(--dark); padding: 5rem 0; }
.promo-video-wrap { position: relative; padding-top: 56.25%; border: 2px solid rgba(201,168,76,0.3); }
.promo-video-wrap video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── LOCATION ── */
.location-badge { background: var(--gold); color: var(--dark); display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; }
.dist-item { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.85rem; }
.dist-item:last-child { border-bottom: none; }
.dist-km { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

/* ── APT SPECS ── */
.apt-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.apt-spec { border-left: 3px solid var(--gold); padding-left: 0.8rem; }
.apt-spec span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); display: block; }
.apt-spec strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; height: 55vh; min-height: 350px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.page-hero-content { position: relative; z-index: 2; text-align: center; color: white; }
.page-hero-content h1 { font-family: var(--font-display); font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 300; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; border-top: 1px solid rgba(201,168,76,0.2); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand img { height: 44px; width: auto; }
.footer-brand-name strong { display: block; color: var(--white); font-size: 1rem; letter-spacing: 0.15em; font-weight: 700; text-transform: uppercase; }
.footer-brand-name span { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.footer-desc { font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.75rem; transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 3rem 0 1.5rem; }
.footer-bottom { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP ── */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }

/* ── CONTACT ── */
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; background: var(--white); border: 1px solid rgba(0,0,0,0.12); color: var(--text); padding: 0.75rem 1rem; font-size: 0.85rem; font-family: var(--font-body); margin-bottom: 1rem; outline: none; transition: border-color 0.3s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }

@media(max-width:991px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-big { grid-column: span 2; grid-row: span 1; }
}
@media(max-width:767px) {
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-big { grid-column: span 1; }
  .img-stack-wrap { padding-bottom: 0; padding-right: 0; }
  .img-stack-thumb { display: none; }
}
