/* ============================================================
   OJEL HOMES — COMPLETE STYLESHEET
   Design: Dark luxury (#0F0F0F bg, #C9A646 gold, #F5F5F5 text)
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  /* Colours */
  --bg:           #0F0F0F;
  --surface:      #1A1A1A;
  --surface-2:    #222222;
  --gold:         #C9A646;
  --gold-light:   #E0BA60;
  --gold-dark:    #A88530;
  --gold-glow:    rgba(201, 166, 70, 0.25);
  --text:         #F5F5F5;
  --text-muted:   #888888;
  --white:        #FFFFFF;
  --green:        #25D366;
  --red-muted:    rgba(255, 80, 80, 0.65);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:  110px 0;
  --container:    1200px;

  /* Borders & Radius */
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  /* Transitions */
  --t:            0.3s ease;
  --t-slow:       0.6s ease;

  /* Shadows */
  --shadow-gold:  0 0 40px rgba(201, 166, 70, 0.25);
  --shadow-card:  0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-float: 0 6px 28px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

address { font-style: normal; }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.center-label { text-align: center; }

.section-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.center-title { text-align: center; }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.gold-text { color: var(--gold); }

.danger-label { color: #FF7040; }

.light-label { color: rgba(201, 166, 70, 0.75); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}

.btn-lg { padding: 17px 36px; font-size: 13px; }

.btn-full { width: 100%; justify-content: center; }

/* Gold solid */
.btn-gold {
  background: var(--gold);
  color: #0d0d0d;
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Gold outline */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #0d0d0d;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* White outline */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  font-size: 13px;
  padding: 16px 32px;
}
.btn-whatsapp:hover {
  background: #1ebe5e;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--green);
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--t);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 10px 0;
  background: #000000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 166, 70, 0.12);
  transition: all var(--t);
}

.navbar.scrolled {
  padding: 6px 0;
  background: #000000;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.logo-ojel { color: var(--gold); }
.logo-homes { color: var(--text); font-weight: 400; }

/* Logo image — mix-blend-mode removes any background box */
.logo-img {
  width: 160px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.1);
}
.logo-img--footer {
  width: 220px;
  height: auto;
  mix-blend-mode: lighten;
  filter: brightness(1.15) contrast(1.1);
}

/* Brand name text beside logo */
.logo-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
}
.logo-name small {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.85);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.nav-links a.nav-active { color: var(--text); }
.nav-links a.nav-active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 810;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
  transform-origin: center;
}
.navbar.mobile-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.mobile-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar.mobile-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #1a1208 0%, #0f0f0f 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 10, 10, 0.94) 0%,
    rgba(10, 10, 10, 0.75) 55%,
    rgba(10, 10, 10, 0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 130px 40px 100px;
}

.hero-text { max-width: 620px; }

.hero-badge {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(201, 166, 70, 0.12);
  border: 1px solid rgba(201, 166, 70, 0.3);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 44px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 245, 245, 0.3);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.2; transform: scaleY(0.5); }
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  background: var(--surface);
  padding: 28px 0;
  border-top: 1px solid rgba(201, 166, 70, 0.08);
  border-bottom: 1px solid rgba(201, 166, 70, 0.08);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
}
.trust-icon { font-size: 20px; }
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201, 166, 70, 0.2);
  flex-shrink: 0;
}

/* ========================================
   APARTMENT / BENEFITS
   ======================================== */
.apartment {
  padding: var(--section-pad);
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(201, 166, 70, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

/* Animated top-left corner accent */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: conic-gradient(from 180deg at 0% 0%, var(--gold), transparent 40%);
  opacity: 0.35;
  transition: opacity 0.35s, width 0.35s, height 0.35s;
  border-radius: var(--radius-lg) 0 0 0;
}

/* Scan-line sweep on hover */
.benefit-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(201,166,70,0.04) 50%, transparent);
  transition: top 0.6s ease;
  pointer-events: none;
}

.benefit-card:hover {
  border-color: rgba(201, 166, 70, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(201,166,70,0.15), 0 8px 40px rgba(201,166,70,0.1), 0 24px 60px rgba(0,0,0,0.5);
}
.benefit-card:hover::before {
  opacity: 0.7;
  width: 90px;
  height: 90px;
}
.benefit-card:hover::after {
  top: 140%;
}

/* Stagger entrance delays */
.benefit-card:nth-child(1) { transition-delay: 0s; }
.benefit-card:nth-child(2) { transition-delay: 0.05s; }
.benefit-card:nth-child(3) { transition-delay: 0.1s; }
.benefit-card:nth-child(4) { transition-delay: 0.15s; }
.benefit-card:nth-child(5) { transition-delay: 0.2s; }
.benefit-card:nth-child(6) { transition-delay: 0.25s; }

.benefit-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(201, 166, 70, 0.08);
  border: 1px solid rgba(201, 166, 70, 0.18);
  transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
  position: relative;
  z-index: 1;
}
.benefit-card:hover .benefit-icon {
  background: rgba(201, 166, 70, 0.15);
  box-shadow: 0 0 20px rgba(201, 166, 70, 0.25);
  transform: scale(1.08);
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ========================================
   AMENITIES GRID
   ======================================== */
.amenities-wrap {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 166, 70, 0.1);
}
.amenities-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-align: center;
}
.amenities-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 0;
}
.amenities-sub {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin: 0 auto 32px;
  max-width: 520px;
}

/* ---- Grouped categories ---- */
.amenities-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.am-group {
  position: relative;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(201,166,70,0.06) 0%, rgba(255,255,255,0.01) 60%, rgba(201,166,70,0.04) 100%);
  border: 1px solid rgba(201, 166, 70, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.am-group::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(201,166,70,0.08) 50%, transparent 60%);
  transform: skewX(-12deg);
  pointer-events: none;
  transition: left 0.9s ease;
}
.amenities-wrap.am-visible .am-group {
  opacity: 1;
  transform: translateY(0);
}
.amenities-wrap.am-visible .am-group:hover::before { left: 160%; }

.am-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(201, 166, 70, 0.14);
}
.am-group-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,166,70,0.18), rgba(201,166,70,0.04));
  border: 1px solid rgba(201, 166, 70, 0.3);
  box-shadow: 0 0 14px rgba(201,166,70,0.12), inset 0 0 10px rgba(201,166,70,0.08);
  flex-shrink: 0;
}
.am-group-head h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.am-group-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gold);
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(201, 166, 70, 0.1);
  border: 1px solid rgba(201, 166, 70, 0.22);
}

.amenities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@keyframes amenity-pop {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes icon-pulse {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 10px rgba(201, 166, 70, 0.65); }
}
.amenities-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 166, 70, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.35;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
/* Items animate in once .amenities-wrap has .am-visible */
.amenities-wrap.am-visible .amenities-grid li {
  animation: amenity-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.am-group:nth-child(1) .amenities-grid li:nth-child(1) { animation-delay: 0.20s; }
.am-group:nth-child(1) .amenities-grid li:nth-child(2) { animation-delay: 0.25s; }
.am-group:nth-child(1) .amenities-grid li:nth-child(3) { animation-delay: 0.30s; }
.am-group:nth-child(2) .amenities-grid li:nth-child(1) { animation-delay: 0.30s; }
.am-group:nth-child(2) .amenities-grid li:nth-child(2) { animation-delay: 0.35s; }
.am-group:nth-child(2) .amenities-grid li:nth-child(3) { animation-delay: 0.40s; }
.am-group:nth-child(2) .amenities-grid li:nth-child(4) { animation-delay: 0.45s; }
.am-group:nth-child(2) .amenities-grid li:nth-child(5) { animation-delay: 0.50s; }
.am-group:nth-child(2) .amenities-grid li:nth-child(6) { animation-delay: 0.55s; }
.am-group:nth-child(3) .amenities-grid li:nth-child(1) { animation-delay: 0.40s; }
.am-group:nth-child(3) .amenities-grid li:nth-child(2) { animation-delay: 0.45s; }
.am-group:nth-child(3) .amenities-grid li:nth-child(3) { animation-delay: 0.50s; }
.am-group:nth-child(4) .amenities-grid li:nth-child(1) { animation-delay: 0.50s; }
.am-group:nth-child(4) .amenities-grid li:nth-child(2) { animation-delay: 0.55s; }
.am-group:nth-child(4) .amenities-grid li:nth-child(3) { animation-delay: 0.60s; }
.am-group:nth-child(4) .amenities-grid li:nth-child(4) { animation-delay: 0.65s; }
.amenities-grid li:hover {
  border-color: rgba(201, 166, 70, 0.45);
  background: rgba(201, 166, 70, 0.09);
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(201, 166, 70, 0.12);
}
.am-icon {
  font-size: 18px;
  flex-shrink: 0;
  animation: icon-pulse 2.8s ease-in-out infinite;
}
.amenities-grid li:nth-child(2n) .am-icon  { animation-delay: 0.4s; }
.amenities-grid li:nth-child(3n) .am-icon  { animation-delay: 0.8s; }

/* ========================================
   CHECK-IN / CHECK-OUT BAR
   ======================================== */
.checkinout-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 36px auto 0;
  max-width: 420px;
  background: rgba(201, 166, 70, 0.05);
  border: 1px solid rgba(201, 166, 70, 0.2);
  border-radius: 16px;
  overflow: hidden;
}
.checkinout-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
}
.checkinout-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.checkinout-item div {
  display: flex;
  flex-direction: column;
}
.checkinout-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.checkinout-time {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.checkinout-divider {
  width: 1px;
  height: 52px;
  background: rgba(201, 166, 70, 0.2);
  flex-shrink: 0;
}
.controversial {
  padding: var(--section-pad);
  background: var(--surface);
}

.comparison-table {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 166, 70, 0.12);
  margin-top: 12px;
}

.comparison-col {
  flex: 1;
  padding: 52px 44px;
}

.comparison-bad  { background: #0a0a0a; }
.comparison-good { background: linear-gradient(150deg, #121008, #0f0e06); }

/* Gold divider */
.comparison-divider {
  width: 3px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.divider-badge {
  background: var(--gold);
  color: #0d0d0d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.col-icon { font-size: 26px; }
.col-header h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.bad-list li {
  color: rgba(245, 245, 245, 0.4);
}
.bad-list li::before {
  content: '✕';
  color: var(--red-muted);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
  font-size: 13px;
}
.good-list li { color: var(--text); }
.good-list li::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
  font-size: 13px;
}

.controversial-cta {
  text-align: center;
  margin-top: 64px;
}
.cta-caption {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding: var(--section-pad);
  background: var(--bg);
}
.gallery .container { margin-bottom: 36px; }

/* ---- Gallery category tabs ---- */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 32px;
  padding: 0 var(--side-pad);
}
.gallery-tab {
  background: transparent;
  border: 1px solid rgba(201, 166, 70, 0.35);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
}
.gallery-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.gallery-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0F0F0F;
  font-weight: 700;
}

/* hide/show items when filtered */
.gallery-item.gallery-hidden {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Editorial "All" mode — hero + wide spans */
.gallery-grid.gallery-editorial {
  grid-auto-rows: 240px;
}
.gallery-grid.gallery-editorial .gallery-item {
  aspect-ratio: unset;
}
.gallery-grid.gallery-editorial .gallery-hero {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid.gallery-editorial .gallery-wide {
  grid-column: span 2;
}

/* Filtered mode — equal tiles */
.gallery-grid:not(.gallery-editorial) .gallery-item {
  aspect-ratio: 4 / 3;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  background: linear-gradient(135deg, #1a1510, #0f0f0f);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--gold-dark), var(--gold));
  transform: translateX(0%);
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 2;
  pointer-events: none;
}
.gallery-item.curtain-revealed::after {
  transform: translateX(101%);
}
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px 22px;
  opacity: 0;
  transition: opacity var(--t);
  z-index: 3;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.gallery-zoom {
  font-size: 11px;
  color: rgba(245,245,245,0.6);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Gold border on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color var(--t);
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover::after { border-color: var(--gold); }

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   GALLERY LIGHTBOX MODAL
   ======================================== */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.gallery-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-img-wrap {
  max-width: 88vw;
  max-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-wrap img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 166, 70, 0.18);
}

.modal-close,
.modal-prev,
.modal-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all var(--t);
  z-index: 1001;
  line-height: 1;
}
.modal-close {
  top: 20px;
  right: 20px;
  font-size: 15px;
  width: 40px;
  height: 40px;
}
.modal-prev { left: 20px;  top: 50%; transform: translateY(-50%); }
.modal-next { right: 20px; top: 50%; transform: translateY(-50%); }

.modal-close:hover,
.modal-prev:hover,
.modal-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0d0d0d;
}

/* ========================================
   EXPERIENCE / MOOD SECTION
   ======================================== */
.experience-section {
  position: relative;
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
}
.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1208, #0f0f0f);
}
.experience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.experience-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.experience-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 22px;
  border: none;
}
.experience-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ========================================
   REAL VS FAKE LUXURY
   ======================================== */
.real-vs-fake {
  padding: var(--section-pad);
  background: var(--bg);
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 44px;
}

.split-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

/* Placeholder gradients when no images */
.fake-side { background: linear-gradient(135deg, #0d0d12, #0a0810); }
.real-side { background: linear-gradient(135deg, #1a1208, #0f0c00); }

.split-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.split-img-wrap:hover img { transform: scale(1.04); }

.split-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 36px;
}
.dark-overlay { background: linear-gradient(to top, rgba(10,5,5,0.92) 35%, rgba(0,0,0,0.35) 100%); }
.gold-overlay { background: linear-gradient(to top, rgba(8,7,0,0.92) 35%, rgba(0,0,0,0.25) 100%); }

.split-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-icon { font-size: 28px; }
.split-label strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.split-label-bad strong  { color: rgba(245,245,245,0.45); }
.split-label-good strong { color: var(--gold); }

.split-label ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.split-label li { font-size: 14px; line-height: 1.4; }

.split-label-bad li {
  color: rgba(245,245,245,0.4);
}
.split-label-bad li::before {
  content: '✕ ';
  color: var(--red-muted);
}
.split-label-good li { color: var(--text); }
.split-label-good li::before {
  content: '✓ ';
  color: var(--gold);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose {
  padding: var(--section-pad);
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 22px;
  border: 1px solid rgba(201, 166, 70, 0.07);
  border-radius: var(--radius);
  transition: all var(--t);
}
.why-item:hover {
  border-color: rgba(201, 166, 70, 0.28);
  background: rgba(201, 166, 70, 0.025);
}

.why-check {
  width: 36px;
  height: 36px;
  background: rgba(201, 166, 70, 0.14);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(201, 166, 70, 0.25);
}

.why-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.why-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-cta {
  text-align: center;
  margin-top: 52px;
}

/* ========================================
   BOOKING
   ======================================== */
.booking {
  padding: var(--section-pad);
  background: var(--bg);
}

.booking-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(201, 166, 70, 0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.booking-form { padding: 48px 48px 36px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder { color: rgba(245,245,245,0.25); }

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-group select option { background: var(--surface); color: var(--text); }

/* Date picker icon tint */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.55);
  cursor: pointer;
}

.booking-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 48px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
}
.booking-divider::before,
.booking-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.booking-whatsapp {
  padding: 28px 48px 48px;
  text-align: center;
}
.booking-whatsapp p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--surface);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid rgba(201, 166, 70, 0.09);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--t);
}
.testimonial-card:hover {
  border-color: rgba(201, 166, 70, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.stars {
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 166, 70, 0.15);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 166, 70, 0.28);
}
.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.author-info span { font-size: 12px; color: var(--text-muted); }

.testimonials-cta {
  text-align: center;
  margin-top: 52px;
}

/* ========================================
   LOCATION
   ======================================== */
.location {
  padding: var(--section-pad);
  background: var(--bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.location-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Exact address block */
.location-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(201, 166, 70, 0.06);
  border: 1px solid rgba(201, 166, 70, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.location-address .landmark-icon { font-size: 20px; margin-top: 2px; }
.location-address address {
  font-style: normal;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}
.plus-code {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.location-landmarks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}
.location-landmarks li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.landmark-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 166, 70, 0.14);
  box-shadow: var(--shadow-card);
}
.location-map iframe {
  display: block;
  filter: grayscale(1) invert(1) brightness(0.8) contrast(0.9);
  transition: filter var(--t);
}
.location-map:hover iframe {
  filter: grayscale(0.4) invert(0) brightness(1);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  padding: var(--section-pad);
  background: var(--surface);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid rgba(201, 166, 70, 0.12);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  position: relative;
  transition: all var(--t);
}
.pricing-card:first-child {
  border-color: rgba(201, 166, 70, 0.5);
  box-shadow: 0 0 48px rgba(201, 166, 70, 0.1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  margin-bottom: 12px;
}

.pricing-plan {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 8px;
}
.pricing-currency {
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-per {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 2px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 28px;
  font-style: italic;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1208, #0f0f0f);
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.final-cta-headline {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 18px;
  color: rgba(245, 245, 245, 0.9);
  line-height: 1.7;
  margin-bottom: 44px;
}

.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-trust {
  font-size: 13px;
  color: rgba(245, 245, 245, 0.75);
  letter-spacing: 0.5px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #000000;
  padding: 48px 0 0;
  border-top: 1px solid rgba(201, 166, 70, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
  align-items: stretch;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 14px 0 24px;
  max-width: 260px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--t);
}
.footer-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-style: normal;
}
.footer-contact p { font-size: 14px; color: var(--text-muted); }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }

/* Social icons — stacked rows with label */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,166,70,0.12);
  color: var(--text-muted);
  font-size: 13px;
  transition: background var(--t), color var(--t), border-color var(--t), transform 0.18s;
}
.social-link:hover {
  background: rgba(201, 166, 70, 0.08);
  color: var(--gold);
  border-color: rgba(201,166,70,0.35);
  transform: translateX(4px);
}
.social-link svg { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(245,245,245,0.25);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  .benefits-grid        { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid       { grid-template-columns: repeat(2, 1fr); }
  .location-grid        { grid-template-columns: 1fr; gap: 44px; }
  .why-grid             { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }

  .comparison-col { padding: 40px 32px; }
}

/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }

  .container { padding: 0 22px; }

  /* ---- Nav ---- */
  .navbar { padding: 8px 0; }
  .navbar.scrolled { padding: 6px 0; }
  .nav-container { padding: 0 14px; flex-wrap: nowrap; gap: 0; align-items: center; }
  .nav-cta {
    display: inline-flex;
    margin-left: 8px;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.8px;
    border-radius: 8px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .nav-toggle { display: none !important; }
  .logo-img { width: 92px; flex-shrink: 0; }

  /* Inline nav links beside logo — desktop-style frozen in header */
  .nav-links {
    flex-direction: row;
    position: static;
    inset: auto;
    width: auto;
    flex: 1;
    height: auto;
    margin: 0 0 0 10px;
    padding: 0;
    gap: 2px;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: auto;
    border-top: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .nav-links li { list-style: none; display: flex; }
  .nav-links a {
    display: block;
    padding: 8px 7px 10px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.78);
    white-space: nowrap;
    position: relative;
    transition: color 0.25s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .nav-links a.nav-active { color: var(--gold); }
  .nav-links a.nav-active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }

  /* ---- Hero ---- */
  .hero-content { padding: 120px 22px 72px; }
  .hero-overlay {
    background: linear-gradient(170deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 55%, rgba(10,10,10,0.55) 100%);
  }
  .hero-sub { font-size: 15px; line-height: 1.55; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* ---- Trust — sleek pill grid (all visible, no scroll) ---- */
  .trust-strip { padding: 22px 0 18px; }
  .trust-divider { display: none; }
  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 4px 18px;
  }
  .trust-item {
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(201,166,70,0.10), rgba(201,166,70,0.03));
    border: 1px solid rgba(201, 166, 70, 0.22);
    border-radius: 999px;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    min-width: 0;
  }
  /* 4 items = clean 2×2 grid, no span needed */
  .trust-icon { font-size: 14px; flex-shrink: 0; }
  .trust-label {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(245,245,245,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ---- Benefits ---- */
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .amenities-groups { grid-template-columns: 1fr; gap: 14px; }
  .am-group { padding: 18px 16px 14px; border-radius: 16px; }
  .am-group-head { padding-bottom: 12px; margin-bottom: 12px; gap: 10px; }
  .am-group-icon { width: 34px; height: 34px; font-size: 16px; border-radius: 9px; }
  .am-group-head h4 { font-size: 14px; }
  .am-group-count { font-size: 10px; padding: 2px 8px; }
  .amenities-grid { gap: 7px; }
  .amenities-grid li { padding: 9px 11px; font-size: 12.5px; border-radius: 9px; }
  .am-icon { font-size: 16px; }
  .checkinout-bar { max-width: 100%; }

  /* ---- Controversial ---- */
  .comparison-table { flex-direction: column; }
  .comparison-divider {
    width: 100%;
    height: 3px;
    flex-direction: row;
    justify-content: center;
  }
  .comparison-col { padding: 32px 24px; }

  /* ---- Gallery ---- */
  .gallery-grid,
  .gallery-grid.gallery-editorial { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-grid.gallery-editorial .gallery-hero { grid-column: span 2; grid-row: span 1; }
  .gallery-grid.gallery-editorial .gallery-wide { grid-column: span 2; }

  /* ---- Split ---- */
  .split-screen { grid-template-columns: 1fr; }

  /* ---- Booking ---- */
  .booking-form { padding: 32px 22px 24px; }
  .booking-divider { padding: 0 22px; }
  .booking-whatsapp { padding: 20px 22px 36px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  /* ---- Testimonials ---- */
  .testimonials-track { grid-template-columns: 1fr; gap: 14px; }

  /* ---- Pricing ---- */
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* ---- Final CTA ---- */
  .final-cta-content { padding: 0 22px; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn { width: 100%; max-width: 320px; }

  /* ---- Footer ---- */
  .footer-grid  { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ---- WhatsApp Float ---- */
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }

  /* ---- Section sub ---- */
  .section-sub { max-width: 100%; }

  /* ---- Experience ---- */
  .experience-section { padding: 100px 22px; }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ======================================== */
@media (max-width: 480px) {
  .logo-img { width: 78px; }
  .nav-links a { font-size: 9px; padding: 8px 4px 10px; letter-spacing: 0.7px; }
  .nav-container { padding: 0 10px; }
  .nav-cta { padding: 6px 10px; font-size: 9px; margin-left: 6px; }

  .gallery-grid,
  .gallery-grid.gallery-editorial { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 8px; }
  .gallery-grid.gallery-editorial .gallery-hero,
  .gallery-grid.gallery-editorial .gallery-wide { grid-column: span 1; grid-row: span 1; }

  .hero-headline { font-size: 30px; line-height: 1.15; }
  .hero-content { padding: 110px 20px 64px; }

  .comparison-col { padding: 26px 18px; }

  .benefit-card { padding: 28px 22px; }

  .checkinout-bar { flex-direction: column; border-radius: 12px; }
  .checkinout-divider { width: 80%; height: 1px; }
}

/* ============================================================
   OJEL HOMES — PREMIUM VISUAL UPGRADES
   Glass · Custom Cursor · Loader · Orbs · Animations
   ============================================================ */

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  box-shadow: 0 0 8px rgba(201, 166, 70, 0.6);
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* ========================================
   GOLD TEXT GLINT SWEEP
   ======================================== */
.gold-text {
  position: relative;
  display: inline;
  background: linear-gradient(
    105deg,
    var(--gold) 0%,
    var(--gold) 40%,
    #fff9e6 50%,
    var(--gold) 60%,
    var(--gold) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldGlint 4s ease-in-out infinite;
}
@keyframes goldGlint {
  0%   { background-position: 200% center; }
  60%  { background-position: -50% center; }
  100% { background-position: -50% center; }
}

/* ========================================
   3D TILT — BENEFIT & PRICING CARDS
   ======================================== */
.benefit-card,
.pricing-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ========================================
   TYPEWRITER HERO SUBTITLE
   ======================================== */
.typewriter {
  color: var(--gold);
  font-style: italic;
  border-right: 2px solid var(--gold);
  padding-right: 3px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: tw-caret 0.7s step-end infinite;
}
@keyframes tw-caret {
  0%, 100% { border-color: var(--gold); }
  50%       { border-color: transparent; }
}

/* ========================================
   IMAGE CURTAIN REVEAL
   ======================================== */
.curtain-wrap {
  position: relative;
  overflow: hidden;
}
.curtain-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--gold-dark), var(--gold));
  transform: translateX(0%);
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 2;
  pointer-events: none;
}
.curtain-wrap.curtain-revealed::after {
  transform: translateX(101%);
}

/* ========================================
   PAGE LOADER
   ======================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  animation: loaderAppear 0.5s ease 0.15s forwards;
}
.loader-logo span { color: var(--gold); font-weight: 400; }

/* Real logo in loader */
.loader-logo-img {
  height: 80px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  opacity: 0;
  animation: loaderAppear 0.5s ease 0.15s forwards;
}

@keyframes loaderAppear { to { opacity: 1; } }

.loader-bar-wrap {
  width: 190px;
  height: 1px;
  background: rgba(201, 166, 70, 0.14);
  border-radius: 1px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: width 0.04s linear;
  box-shadow: 0 0 10px rgba(201, 166, 70, 0.7);
}

/* Custom cursor removed — using default OS cursor */

/* ========================================
   GRAIN TEXTURE
   ======================================== */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9500;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  animation: grainShift 7s steps(8) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,   0);   }
  12%  { transform: translate(-2%, 3%);  }
  25%  { transform: translate(3%, -2%);  }
  37%  { transform: translate(-3%,-3%);  }
  50%  { transform: translate(2%,  3%);  }
  62%  { transform: translate(-2%,-1%);  }
  75%  { transform: translate(3%,  2%);  }
  87%  { transform: translate(-1%, 3%);  }
  100% { transform: translate(0,   0);   }
}

/* ========================================
   HERO GLOW ORBS
   ======================================== */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  will-change: transform;
}
.hero-orb-1 {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.12) 0%, transparent 65%);
  top: -80px;
  right: -60px;
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.07) 0%, transparent 65%);
  bottom: 120px;
  left: 8%;
  animation: orbFloat2 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0)   scale(1);    }
  33%       { transform: translate(-24px, 18px) scale(1.04); }
  66%       { transform: translate(18px, -24px) scale(0.96); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(22px, -18px) scale(1.06); }
}

/* Hero image parallax base */
.hero-img { transform: scale(1.06); transform-origin: center; }

/* Glass morphism on benefit cards — overlay on top of techy base */
.benefit-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.testimonial-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.025);
}
.why-item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
}
.booking-wrap {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.025);
}

/* ========================================
   GOLD ANIMATED GRADIENT TEXT
   ======================================== */
.gold-gradient-text {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold)      25%,
    var(--gold-light) 50%,
    var(--gold)      75%,
    var(--gold-dark) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldFlow 4s linear infinite;
}
@keyframes goldFlow {
  0%   { background-position: 0%   center; }
  100% { background-position: 300% center; }
}

/* ========================================
   STATS STRIP
   ======================================== */
.stats-strip {
  padding: 80px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 200px;
  background: radial-gradient(ellipse, rgba(201, 166, 70, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 32px;
}
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  margin-bottom: 10px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
  min-width: 2ch;
  text-align: center;
}
.stat-suffix, .stat-prefix {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  color: var(--gold);
  opacity: 0.65;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, transparent, rgba(201, 166, 70, 0.25), transparent);
  flex-shrink: 0;
}

/* ========================================
   PRICING CARD SHIMMER
   ======================================== */
.pricing-card:first-child { overflow: hidden; }
.shimmer-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(201, 166, 70, 0.06) 50%,
    transparent 60%
  );
  animation: shimmerSlide 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSlide {
  0%   { left: -60%;  }
  100% { left:  160%; }
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
.testimonials-carousel {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  margin-top: 16px;
}
.testimonials-carousel:active { cursor: grabbing; }

/* Override grid layout from original .testimonials-track rule */
.testimonials-track {
  display: flex !important;
  grid-template-columns: unset !important;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 166, 70, 0.22);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ========================================
   RESPONSIVE — NEW SECTIONS
   ======================================== */
@media (max-width: 1024px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  .stats-strip { padding: 48px 0; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 18px;
  }
  .stat-item {
    padding: 20px 12px;
    background: linear-gradient(160deg, rgba(201,166,70,0.08), rgba(201,166,70,0.02));
    border: 1px solid rgba(201, 166, 70, 0.18);
    border-radius: 16px;
  }
  .stat-num { font-size: 36px; }
  .stat-suffix, .stat-prefix { font-size: 18px; }
  .stat-num-wrap { margin-bottom: 8px; }
  .stat-label { font-size: 9px; letter-spacing: 1.6px; }
  .stat-divider { display: none; }
  .testimonials-track .testimonial-card { flex: 0 0 100%; }
}
@media (max-width: 480px) {
  .stat-item { padding: 18px 10px; }
  .stat-num { font-size: 32px; }
}
