/* ═══════════════════════════════════════════════════════════ */
/*  THEME SYSTEM                                              */
/* ═══════════════════════════════════════════════════════════ */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d4a0;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --forest: #0d3830;
  --forest-mid: #1a5246;
  --forest-light: #2a6b5a;
  --sage: #B4C4B4;
  --ease: cubic-bezier(0.25, 0, 0.15, 1);
  --t: 0.7s;
}

[data-theme="light"] {
  --bg: #FAF8F4;
  --bg2: #F0EBE2;
  --bg3: #E6E0D5;
  --card: #FFFFFF;
  --nav-bg: rgba(250, 248, 244, 0.96);
  --text: #1a1a18;
  --text2: #5a574f;
  --text3: #8a8278;
  --border: rgba(13, 56, 48, 0.09);
  --border-a: rgba(201, 168, 76, 0.25);
  --dark-bg: #0d3830;
  --dark-text: #F0EBE2;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  --overlay: linear-gradient(to top, rgba(10, 20, 15, 0.88) 0%, rgba(10, 20, 15, 0.15) 55%, transparent 100%);
  --logo: #0d3830;
  --nav-link: #1a1a18;
  --inf-wm: rgba(180, 196, 180, 0.12);
  --inf-div: rgba(180, 196, 180, 0.35);
}

[data-theme="dark"] {
  --bg: #0B0E0D;
  --bg2: #121716;
  --bg3: #1A1F1E;
  --card: #151A19;
  --nav-bg: rgba(11, 14, 13, 0.96);
  --text: #E6E0D5;
  --text2: #908B82;
  --text3: #5F5B54;
  --border: rgba(230, 224, 213, 0.07);
  --border-a: rgba(201, 168, 76, 0.2);
  --dark-bg: #080B0A;
  --dark-text: #CCC7BD;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  --overlay: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.15) 100%);
  --logo: #E6E0D5;
  --nav-link: #E6E0D5;
  --inf-wm: rgba(201, 168, 76, 0.05);
  --inf-div: rgba(201, 168, 76, 0.2);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Avenir', 'Avenir Next', Montserrat, 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  overflow-x: hidden;
  transition: background var(--t) var(--ease), color var(--t) var(--ease)
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg2)
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px
}

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

a {
  text-decoration: none
}

/* ═══════════════════════════════════════════════════════════ */
/*  CUSTOM CURSOR (desktop)                                   */
/* ═══════════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
  transition: width 0.3s, height 0.3s, opacity 0.3s
}

@media(max-width:768px) {

  .cursor-dot,
  .cursor-ring {
    display: none
  }
}


/* ═══════════════════════════════════════════════════════════ */
/*  NAVIGATION                                                */
/* ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 64px;
  transition: all 0.5s var(--ease)
}

.nav.scrolled {
  margin: 16px 64px;
  width: calc(100% - 128px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px 40px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.3)
}

.nav-logo,
.maa-logo {
  display: flex;
  align-items: center;
  position: relative
}

.logo-white,
.logo-dark,
.maa-white,
.maa-dark {
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  height: 40px;
  width: auto;
}

.maa-white,
.maa-dark {
  height: 24px;
}

.logo-dark,
.maa-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0
}

.nav.scrolled .logo-white,
.nav.scrolled .maa-white {
  opacity: 0;
  transform: translateY(-5px)
}

.nav.scrolled .logo-dark,
.nav.scrolled .maa-dark {
  opacity: 1;
  transform: translateY(0)
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none
}

.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  transition: color 0.3s;
  font-weight: 600;
  position: relative
}

.nav.scrolled .nav-links a {
  color: #0d3830 !important
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-links a:hover {
  color: var(--gold)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  backdrop-filter: blur(10px)
}

.nav.scrolled .theme-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03)
}

.theme-toggle:hover {
  border-color: var(--gold);
  transform: scale(1.1)
}

.theme-toggle i {
  font-size: 18px;
  transition: all 0.4s
}

.theme-toggle .ico-sun {
  display: none;
  color: var(--gold)
}

.theme-toggle .ico-moon {
  display: block;
  color: white
}

.nav.scrolled .theme-toggle .ico-moon,
.nav.scrolled .theme-toggle .ico-sun {
  color: #0d3830 !important
}

[data-theme="dark"] .theme-toggle .ico-sun {
  display: block
}

[data-theme="dark"] .theme-toggle .ico-moon {
  display: none
}

.theme-toggle:hover i {
  transform: rotate(12deg);
  color: var(--gold)
}

.nav-cta {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  transition: all 0.4s;
  font-weight: 400;
  border-radius: 0
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 210
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 0.35s;
  transform-origin: center
}

.nav.scrolled .hamburger span {
  background: #0d3830
}

.hamburger.open span {
  background: white !important
}

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

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

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

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 12, 0.97);
  z-index: 205;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  backdrop-filter: blur(30px)
}

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

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 300;
  color: #E6E0D5;
  letter-spacing: 0.06em;
  transition: color 0.3s
}

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

.mobile-nav .m-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  margin-top: 12px;
  border-radius: 0
}

.mobile-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 220;
  transition: all 0.3s;
}

.mobile-close i {
  font-size: 20px;
}

.mobile-close:hover {
  background: var(--gold);
  color: var(--forest);
  transform: rotate(90deg);
}


/* ═══════════════════════════════════════════════════════════ */
/*  DAY/NIGHT IMAGE SYSTEM                                    */
/* ═══════════════════════════════════════════════════════════ */
.dn-wrap {
  position: relative;
  overflow: hidden
}

.dn-wrap img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover
}

.dn-wrap .day {
  opacity: 1;
  transition: opacity 1.2s var(--ease)
}

.dn-wrap .night {
  opacity: 0;
  transition: opacity 1.2s var(--ease)
}

[data-time="night"] .dn-wrap .day {
  opacity: 0
}

[data-time="night"] .dn-wrap .night {
  opacity: 1
}

/* ═══════════════════════════════════════════════════════════ */
/*  HERO                                                      */
/* ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  text-align: left
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--overlay);
  transition: background var(--t) var(--ease)
}

/* Floating leaf SVGs */



.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 8vw 10vh;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.hero-prelaunch {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-prelaunch::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--gold-light)
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-tagline {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-weight: 400
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  padding: 17px 44px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.45s var(--ease);
  display: inline-block;
  position: relative;
  overflow: hidden
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s var(--ease)
}

.btn-gold:hover::before {
  left: 100%
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.3)
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 4px;
  transition: all 0.3s
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.hero-stats {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 5;
  display: flex;
  gap: 12px
}

.hero-stat {
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 12, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
  transition: transform 0.4s
}

.hero-stat:hover {
  transform: translateY(-4px);
  background: rgba(10, 13, 12, 0.6);
  border-color: rgba(201, 168, 76, 0.3)
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.01em
}

.hero-stat-label {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  font-weight: 500
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite
}

.scroll-hint-text {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3)
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* ═══════════════════════════════════════════════════════════ */
/*  MARQUEE                                                   */
/* ═══════════════════════════════════════════════════════════ */
.marquee {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap
}

.marquee-inner {
  display: inline-block;
  animation: marq 26s linear infinite
}

.marquee-inner span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin: 0 40px
}

.marquee-inner .dot {
  font-size: 5px;
  color: rgba(13, 56, 48, 0.3);
  margin: 0 8px
}

@keyframes marq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════════════════════════════ */
/*  SECTION COMMON                                            */
/* ═══════════════════════════════════════════════════════════ */
.s-eye {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px
}

.s-eye::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.s-head {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--forest) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  display: block;
}

[data-theme="dark"] .s-head,
[data-theme="dark"] .cta-heading,
[data-theme="dark"] .modal-header h3 {
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content .s-head,
.amenities .s-head,
.connectivity .s-head {
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.s-head em,
.cta-heading em {
  font-style: normal;
  color: inherit
}

/* ═══════════════════════════════════════════════════════════ */
/*  ABOUT                                                     */
/* ═══════════════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px
}

.about-img {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  color: var(--forest);
  padding: 26px 36px;
  text-align: center;
  z-index: 3;
  border-top-left-radius: 24px
}

.about-badge strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em
}

.about-badge span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8
}

.about-content {
  background: var(--dark-bg);
  padding: 92px 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background var(--t) var(--ease)
}

.about-content .s-head {
  color: var(--dark-text)
}

.about-content .s-head em {
  color: inherit
}

.about-text {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(230, 224, 213, 0.5);
  margin-bottom: 24px
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0 52px
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(230, 224, 213, 0.65);
  letter-spacing: 0.04em
}

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

.btn-light {
  display: inline-block;
  width: fit-content;
  background: var(--gold);
  color: var(--forest);
  padding: 16px 44px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
  border-radius: 0
}

.btn-light:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3)
}

/* ═══════════════════════════════════════════════════════════ */
/*  SNAPSHOT                                                  */
/* ═══════════════════════════════════════════════════════════ */
.snapshot {
  background: var(--bg2);
  padding: 120px 80px;
  text-align: center;
  transition: background var(--t) var(--ease)
}

.snapshot .s-eye {
  justify-content: center
}

.snap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 72px;
  gap: 16px
}

.snap-item {
  padding: 48px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  cursor: default;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02)
}

.snap-item:last-child {
  border-right: 1px solid var(--border)
}

.snap-item:hover {
  background: var(--forest);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(13, 56, 48, 0.15)
}

.snap-item:hover .snap-num {
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.snap-item:hover .snap-label {
  color: rgba(255, 255, 255, 0.6) !important
}

.snap-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center
}

.luxury-icon {
  background: linear-gradient(135deg, var(--forest) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: inherit;
}

[data-theme="dark"] .luxury-icon {
  background: linear-gradient(135deg, #ffffff 10%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.snap-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(135deg, var(--forest) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.4s;
  letter-spacing: -0.01em
}

.snap-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text3);
  margin-top: 10px;
  font-weight: 500;
  transition: color 0.5s
}

.snap-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap
}

.snap-badge {
  padding: 10px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03)
}

.snap-badge::before {
  content: '\e272';
  font-family: 'Phosphor-Fill';
  color: var(--gold);
  font-size: 14px
}

.snap-badge:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* ═══════════════════════════════════════════════════════════ */
/*  GALLERY                                                   */
/* ═══════════════════════════════════════════════════════════ */
.gallery {
  padding: 120px 0 0
}

.gallery-header {
  padding: 0 80px 68px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px
}

.btn-outline {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text2);
  border-bottom: 1px solid var(--border-a);
  padding-bottom: 4px;
  transition: all 0.3s
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 400px 400px;
  gap: 16px;
  padding: 0 80px
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow)
}

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

.gallery-item img {
  transition: transform 1s var(--ease)
}

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

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  padding: 36px 24px 20px;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.6s var(--ease)
}

.gallery-item:hover .gallery-label {
  transform: none;
  opacity: 1
}

/* ═══════════════════════════════════════════════════════════ */
/*  VILLAS                                                    */
/* ═══════════════════════════════════════════════════════════ */
.villas {
  padding: 120px 80px;
  background: var(--bg);
  transition: background var(--t) var(--ease)
}

.villas-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 76px;
  gap: 40px;
  flex-wrap: wrap
}

.villas-intro-text {
  max-width: 560px
}

.villas-intro-text .s-head {
  margin-bottom: 22px
}

.villas-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text2)
}

.v-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  flex-shrink: 0
}

.v-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 0.04em
}

.v-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.villa-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.villa-tab {
  padding: 18px 38px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text3);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  margin-bottom: -1px
}

.villa-tab:hover {
  color: var(--text2)
}

.villa-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 500
}

.villa-panel {
  display: none
}

.villa-panel.active {
  display: block
}

.villa-locked-wrap {
  position: relative;
  overflow: hidden;
}

.villa-locked .villa-overview {
  filter: blur(15px);
  pointer-events: none;
  opacity: 0.7;
}

.villa-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(13, 56, 48, 0.15);
  backdrop-filter: blur(2px);
}

.villa-lock-btn {
  background: var(--gold);
  color: var(--forest);
  padding: 18px 36px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.villa-lock-btn:hover {
  transform: translateY(-4px);
  background: var(--gold-light);
}

.btn-floor-plan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 32px;
  transition: all 0.4s var(--ease);
  font-weight: 500;
  cursor: pointer;
  background: transparent;
}

.btn-floor-plan:hover {
  background: var(--gold);
  color: var(--forest);
}

.villa-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.villa-hero-img {
  position: relative;
  min-height: 400px
}

.villa-type-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(13, 56, 48, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 10px 22px;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 3
}

.villa-info {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background var(--t) var(--ease)
}

.villa-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 6px
}

.villa-dim {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 36px
}

.villa-stats {
  display: flex;
  border: 1px solid var(--border);
  margin-bottom: 36px;
  background: var(--bg2)
}

.v-stat {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border)
}

.v-stat:last-child {
  border-right: none
}

.v-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.01em
}

[data-theme="dark"] .v-stat-val {
  color: var(--gold-light);
}

.v-stat-key {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text3);
  margin-top: 8px;
  font-weight: 500
}

.villa-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text2)
}

/* Compare */
.villa-compare {
  margin-top: 68px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.cmp-head {
  display: grid;
  grid-template-columns: 140px repeat(4, 1fr);
  background: var(--forest)
}

.cmp-hc {
  padding: 18px 20px;
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.06)
}

.cmp-hc:first-child {
  text-align: left;
  color: rgba(255, 255, 255, 0.35)
}

.cmp-hc:last-child {
  border-right: none
}

.cmp-row {
  display: grid;
  grid-template-columns: 140px repeat(4, 1fr);
  border-top: 1px solid var(--border);
  transition: background 0.3s
}

.cmp-row:hover {
  background: var(--bg2)
}

.cmp-c {
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text);
  border-right: 1px solid var(--border)
}

.cmp-c:first-child {
  text-align: left;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3)
}

.cmp-c:last-child {
  border-right: none
}

.cmp-c strong {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text)
}

.cmp-c .hl {
  color: var(--gold);
  font-weight: 500
}

/* ═══════════════════════════════════════════════════════════ */
/*  AMENITIES                                                 */
/* ═══════════════════════════════════════════════════════════ */
.amenities {
  background: var(--dark-bg);
  padding: 120px 80px;
  transition: background var(--t) var(--ease)
}

.amenities .s-head {
  color: var(--dark-text);
  margin-bottom: 16px
}

.amenities .s-head em {
  color: var(--gold-light)
}

.amenities .s-eye,
.amenities .s-head {
  position: relative;
  z-index: 1
}

.amen-sub {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: rgba(230, 224, 213, 0.4);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 76px
}

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

.amen-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
}

.amen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease)
}

.amen-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 76, 0.15)
}

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

.amen-icon {
  font-size: 42px;
  margin-bottom: 24px;
  display: inline-block
}

.amen-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 22px;
  line-height: 1.2;
  letter-spacing: 0.02em
}

.amen-list {
  list-style: none
}

.amen-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(230, 224, 213, 0.4);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 8px
}

.amen-list li:last-child {
  border-bottom: none
}

.amen-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold)
}

/* ═══════════════════════════════════════════════════════════ */
.specs {
  padding: 120px 80px;
  background: var(--bg2);
  transition: background var(--t) var(--ease);
  position: relative;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 68px;
}

.spec-card {
  padding: 44px;
  border: 1px solid var(--border-a);
  background: var(--card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  opacity: 1 !important;
  visibility: visible !important;
}

[data-theme="dark"] .spec-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(201, 168, 76, 0.1);
}

.spec-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.spec-card-title {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-a);
  display: flex;
  align-items: center;
  gap: 12px
}

.spec-card-title i {
  font-size: 18px
}

.spec-item {
  font-size: 13px;
  color: var(--text2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55
}

.spec-item:last-child {
  border-bottom: none
}

/* Add more breathing room above the bottom CTA in specs */


/* Optional: make it even more generous on larger screens */
@media (min-width: 1100px) {
  .specs .gallery-cta {
    margin-top: 120px;
  }
}

/* Fix tight spacing above Get More Details button in specs */
.specs .spec-grid {
  margin-bottom: 90px;
}

.specs .gallery-cta {
  margin-top: 80px;
}

/* ═══════════════════════════════════════════════════════════ */
/*  PROXIMITY & CONNECTIVITY                                  */
/* ═══════════════════════════════════════════════════════════ */
.proximity,
.connectivity {
  padding: 120px 80px;
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  transition: background var(--t) var(--ease);
}

.connectivity {
  background: var(--dark-bg);
}

.prox-visual,
.conn-visual,
.conn-map-embed {
  height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
}

.prox-visual img,
.conn-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conn-map-embed iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.loc-content .s-head {
  color: var(--text);
  margin-bottom: 40px;
}

.connectivity .s-head {
  color: var(--dark-text);
  margin-bottom: 40px;
}

.prox-list {
  list-style: none;
}

.prox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.connectivity .prox-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prox-name {
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.prox-name i {
  font-size: 20px;
  color: var(--gold)
}

.connectivity .prox-name {
  color: rgba(230, 224, 213, 0.55);
}

.prox-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
}

[data-theme="dark"] .prox-time {
  color: var(--gold-light);
}

.prox-time small {
  font-family: 'Outfit', sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-left: 6px;
}

@media(max-width:1100px) {

  .proximity,
  .connectivity {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 48px;
  }
}

@media(max-width:768px) {

  .proximity,
  .connectivity {
    padding: 60px 24px;
  }

  .conn-map-embed iframe {
    height: 400px;
  }
}


/* ═══════════════════════════════════════════════════════════ */
/*  LEAD CTA                                                  */
/* ═══════════════════════════════════════════════════════════ */
.cta {
  background: var(--bg2);
  padding: 130px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background var(--t) var(--ease)
}

.cta::before {
  content: '';
  font-family: 'Playfair Display', serif;
  font-size: 260px;
  font-weight: 300;
  color: var(--text);
  opacity: 0.025;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.15em
}

.cta .s-eye {
  justify-content: center
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
  position: relative;
  background: linear-gradient(135deg, var(--forest) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.cta-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.9;
  position: relative
}

.lead-form {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

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

.lead-row.full {
  grid-template-columns: 1fr
}

.lead-input {
  width: 100%;
  padding: 18px 24px;
  font-family: 'Avenir', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.3s;
  outline: none
}

[data-theme="dark"] .lead-input {
  background: rgba(21, 26, 25, 0.6)
}

.lead-input::placeholder {
  color: var(--text3)
}

.lead-input:focus {
  border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.12)
}

.lead-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8278' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.45s var(--ease);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15)
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s var(--ease)
}

.btn-submit:hover::before {
  left: 100%
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25)
}

.cta-alt {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text3);
  position: relative
}

.cta-alt a {
  color: var(--gold);
  font-weight: 400;
  transition: color 0.3s
}

.cta-alt a:hover {
  color: var(--gold-light)
}

/* ═══════════════════════════════════════════════════════════ */
/*  FOOTER                                                    */
/* ═══════════════════════════════════════════════════════════ */
.footer {
  background: #0a0d0c;
  padding: 84px 80px 40px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 36px
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 12px
}

.footer-by-maa {
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  width: fit-content
}

.footer-by-maa .by-text {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  text-transform: uppercase
}

.footer-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px
}

.footer-col h5 {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 16px
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
  font-weight: 400
}

.footer-col a:hover {
  color: var(--gold-light)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0
}

.footer-maa-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s
}

.footer-bottom a:hover {
  color: var(--gold-light)
}

.footer-disc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 900px;
  line-height: 1.85;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 36px
}

/* ═══════════════════════════════════════════════════════════ */
/*  RESPONSIVE                                                */
/* ═══════════════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .nav {
    padding: 20px 40px
  }

  .nav.scrolled {
    margin: 16px 40px;
    width: calc(100% - 80px);
    padding: 14px 32px
  }

  .hero-content {
    padding: 0 48px 72px
  }

  .hero-stats {
    display: none
  }

  .scroll-hint {
    display: none
  }

  .about {
    grid-template-columns: 1fr
  }

  .about-content {
    padding: 72px 48px
  }

  .snapshot {
    padding: 92px 48px
  }

  .snap-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .gallery-header {
    padding: 0 48px 52px
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 340px;
    padding: 0 48px
  }

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

  .villas {
    padding: 92px 40px
  }

  .villa-overview {
    grid-template-columns: 1fr
  }

  .villa-info {
    padding: 48px 40px
  }

  .villas-intro {
    flex-direction: column;
    gap: 28px
  }

  .cmp-head,
  .cmp-row {
    grid-template-columns: 100px repeat(4, 1fr)
  }

  .cmp-hc,
  .cmp-c {
    padding: 13px 10px;
    font-size: 11px
  }

  .amenities {
    padding: 92px 48px
  }

  .amen-grid {
    grid-template-columns: 1fr 1fr
  }

  .specs {
    padding: 92px 48px
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr
  }

  .connectivity {
    padding: 92px 48px
  }

  .conn-map {
    height: 400px
  }

  .location {
    grid-template-columns: 1fr
  }

  .loc-content {
    padding: 72px 48px
  }

  .loc-map {
    min-height: 350px
  }

  .cta {
    padding: 100px 48px
  }

  .footer {
    padding: 64px 40px 32px
  }

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

@media(max-width:768px) {
  .nav {
    padding: 16px 24px
  }

  .nav.scrolled {
    margin: 12px 24px;
    width: calc(100% - 48px);
    padding: 12px 24px
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-nav {
    display: flex
  }

  .hero-content {
    padding: 0 24px 60px
  }

  .hero-inf {
    width: 80vw;
    right: -20%
  }

  .about-content {
    padding: 56px 24px
  }

  .about-pillars {
    grid-template-columns: 1fr
  }

  .snapshot {
    padding: 72px 24px
  }

  .snap-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .gallery-header {
    padding: 0 24px 36px
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 24px
  }

  .gallery-item {
    height: 300px
  }

  .gallery-label {
    opacity: 1;
    transform: none
  }

  .villas {
    padding: 72px 24px
  }

  .villa-info {
    padding: 36px 24px
  }

  .villa-tab {
    padding: 14px 18px;
    font-size: 9.5px
  }

  .villa-compare {
    overflow-x: auto
  }

  .cmp-head,
  .cmp-row {
    min-width: 540px
  }

  .amenities {
    padding: 72px 24px
  }

  .amen-grid {
    grid-template-columns: 1fr
  }

  .specs {
    padding: 72px 24px
  }

  .spec-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .connectivity {
    padding: 72px 24px
  }

  .conn-map {
    height: 320px;
    flex-wrap: wrap;
    gap: 4px
  }

  .conn-bar {
    max-width: 90px;
    min-width: 60px
  }

  .conn-bar-name {
    font-size: 11px;
    min-height: 30px
  }

  .loc-content {
    padding: 60px 24px
  }

  .loc-map {
    min-height: 280px
  }

  .cta {
    padding: 80px 24px
  }

  .cta::before {
    font-size: 100px
  }

  .lead-row {
    grid-template-columns: 1fr
  }

  .footer {
    padding: 56px 24px 28px
  }

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

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

/* ═══════════════════════════════════════════════════════════ */
/*  MODAL / POPUP FORM                                        */
/* ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 56, 48, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease);
  padding: 20px;
}

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

.modal-card {
  background: var(--card);
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s var(--ease);
  border: 1px solid var(--border-a);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  color: var(--text);
}

.modal-close:hover {
  background: var(--gold);
  color: var(--forest);
  transform: rotate(90deg);
}

.modal-content {
  padding: 48px;
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  background: linear-gradient(135deg, var(--forest) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.modal-header p {
  font-size: 13px;
  color: var(--text3);
  letter-spacing: 0.02em;
}

.modal-form .lead-input {
  background: var(--bg2);
  margin-bottom: 12px;
}

.modal-form .btn-submit {
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════ */
/*  LIGHTBOX / IMAGE PREVIEW                                  */
/* ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform 0.5s var(--ease);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

/* ═══════════════════════════════════════════════════════════ */
/*  WHATSAPP CHAT WIDGET                                      */
/* ═══════════════════════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #25D366;
  color: white;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.4s var(--ease);
  transform: translateY(0);
}

.wa-widget:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.wa-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.wa-text {
  display: flex;
  flex-direction: column;
}

.wa-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  font-weight: 600;
}

.wa-status {
  font-size: 12px;
  font-weight: 500;
}

@media(max-width: 768px) {
  .wa-widget {
    left: 20px;
    bottom: 20px;
    padding: 10px;
  }

  .wa-text {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/*  FLOATING CTAS (Scroll Triggered)                          */
/* ═══════════════════════════════════════════════════════════ */
.float-btn {
  position: fixed;
  bottom: 40px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.float-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn.chat {
  left: 40px;
}

.float-btn.call {
  right: 40px;
}

.float-btn a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s var(--ease);
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

[data-theme="dark"] .float-btn a {
  background: #0d3830;
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.float-btn.chat a {
  background: #25D366;
  border: none;
  color: white;
}

.float-btn.call a {
  color: #0d3830;
}

[data-theme="dark"] .float-btn.call a {
  color: white;
}

.float-btn.chat a {
  background: #25D366;
  border: none;
  color: white;
  font-size: 32px;
}

.float-btn.call a {
  color: #0d3830;
  font-size: 28px;
}

[data-theme="dark"] .float-btn.call a {
  color: var(--gold-light);
}

.float-btn.call i {
  background: linear-gradient(135deg, var(--forest) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .float-btn.call i {
  background: linear-gradient(135deg, #ffffff 10%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.float-btn i {
  transition: transform 0.4s var(--ease);
}

.btn-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #0d3830;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  margin-bottom: 12px;
}

.float-btn:hover .btn-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.float-btn a:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .float-btn {
    bottom: 20px;
  }

  .float-btn.chat {
    left: 20px;
  }

  .float-btn.call {
    right: 20px;
  }

  .float-btn a {
    width: 52px;
    height: 52px;
  }
}