/* ═══════════════════════════════════════════════════════
   AMORA — Premium Residences | Adani Realty
   styles.css  ·  Light Theme
═══════════════════════════════════════════════════════ */

@font-face {
    font-family: "adaniregular";
    src: url("../../fonts/adani-regular-webfont.eot");
    src: url("../../fonts/adani-regular-webfont.eot?#iefix") format("embedded-opentype"),url("../../fonts/adani-regular-webfont.woff2") format("woff2"),url("../../fonts/adani-regular-webfont.woff") format("woff"),url("../../fonts/adani-regular-webfont.svg#adaniregular") format("svg");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "adanimedium";
    src: url("../../fonts/adani-medium-webfont.eot");
    src: url("../../fonts/adani-medium-webfont.eot?#iefix") format("embedded-opentype"),url("../../fonts/adani-medium-webfont.woff2") format("woff2"),url("../../fonts/adani-medium-webfont.woff") format("woff"),url("../../fonts/adani-medium-webfont.svg#adanimedium") format("svg");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "adanisemibold";
    src: url("../../fonts/adani-semibold-webfont.eot");
    src: url("../../fonts/adani-semibold-webfont.eot?#iefix") format("embedded-opentype"),url("../../fonts/adani-semibold-webfont.woff2") format("woff2"),url("../../fonts/adani-semibold-webfont.woff") format("woff"),url("../../fonts/adani-semibold-webfont.svg#adanisemibold") format("svg");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "adanibold";
    src: url("../../fonts/adani-bold-webfont.eot");
    src: url("../../fonts/adani-bold-webfont.eot?#iefix") format("embedded-opentype"),url("../../fonts/adani-bold-webfont.woff2") format("woff2"),url("../../fonts/adani-bold-webfont.woff") format("woff"),url("../../fonts/adani-bold-webfont.svg#adanibold") format("svg");
    font-weight: normal;
    font-style: normal
}

/* ── Variables ─────────────────────────────────────── */
:root {
  /* Gold palette */
  --gold:        #b8934a;
  --gold-light:  #d4aa6a;
  --gold-dark:   #9a7a3a;
  --gold-glow:   rgba(184, 147, 74, 0.10);
  --gold-border: rgba(184, 147, 74, 0.30);

  /* Light backgrounds */
  --bg:          #faf6f0;
  --bg-alt:      #f2ebe0;
  --bg-white:    #ffffff;
  --bg-card:     #ffffff;

  /* Text */
  --text:        #1c1410;
  --text-sub:    #4a433c;
  --text-muted:  #7a6f67;
  --text-light:  #a09890;

  /* Dark (footer only) */
  --dark-footer: #171210;

  /* Borders */
  --border:      rgba(184, 147, 74, 0.28);
  --border-dim:  rgba(28, 20, 16, 0.09);

  /* Misc */
  --shadow:      0 4px 32px rgba(28, 20, 16, 0.08);
  --shadow-lg:   0 12px 60px rgba(28, 20, 16, 0.12);
  --nav-h:       80px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'adaniregular', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography ────────────────────────────────────── */
.sec-label {
  display: inline-block;
  font-family: 'adanisemibold', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sec-title {
  font-family: 'adaniregular', sans-serif;
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}
.sec-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── Scroll color-reveal on headings ─────────────────── */
.sec-label.cr {
  background: linear-gradient(90deg, var(--gold) 50%, rgba(184,147,74,0.18) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.85s cubic-bezier(0.4,0,0.2,1);
}
.sec-title.cr {
  background: linear-gradient(90deg, var(--text) 50%, rgba(28,20,16,0.15) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1.1s cubic-bezier(0.4,0,0.2,1);
}
.sec-title.cr em {
  background: linear-gradient(90deg, var(--gold) 50%, rgba(184,147,74,0.18) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1.3s cubic-bezier(0.4,0,0.2,1) 0.1s;
}
.sec-label.cr.cr-live,
.sec-title.cr.cr-live {
  background-position: 0% 0;
}
.sec-title.cr.cr-live em {
  background-position: 0% 0;
}

.sec-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 18px;
}
.sec-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: -10px;
  margin-bottom: 0;
}
.sec-header {
  text-align: center;
  margin-bottom: 64px;
}
.sec-header .sec-body {
  max-width: 640px;
  margin: 0 auto;
}

/* ── Layout ────────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 110px 0;
  position: relative;
}

/* ── Buttons ───────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #ffffff;
  font-family: 'adanibold', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1.5px solid var(--gold);
  transition: all 0.32s var(--ease);
  cursor: pointer;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--gold);
  font-family: 'adanibold', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1.5px solid var(--gold);
  transition: all 0.32s var(--ease);
  cursor: pointer;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #ffffff;
}
.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #ffffff;
  font-family: 'adanibold', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 20px 48px;
  border: 1.5px solid var(--gold);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.btn-gold-lg:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #ffffff;
  font-family: 'adanimedium', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 20px 48px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.35s var(--ease);
}
.btn-outline-lg:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-enquire {
  background: var(--gold);
  color: #ffffff;
  font-family: 'adanibold', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1.5px solid var(--gold);
  transition: all 0.3s var(--ease);
}
.btn-enquire:hover {
  background: transparent;
  color: var(--gold);
}

/* ── Loader ────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'adaniregular', sans-serif;
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--text);
  animation: loaderFade 0.8s var(--ease) forwards;
  opacity: 0;
}
.loader-line {
  width: 200px;
  height: 1px;
  background: var(--border-dim);
  margin: 24px auto 16px;
  overflow: hidden;
}
.loader-line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderBar 1.8s var(--ease) 0.4s forwards;
}
.loader-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFade 0.8s var(--ease) 0.6s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar  { to { width: 100%; } }

/* ── Navigation ────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(28, 20, 16, 0.08);
  border-bottom: 1px solid var(--border-dim);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 52px; width: auto; display: block; transition: opacity 0.3s; }
.nav-logo-white { display: none; }
.nav-logo-dark  { opacity: 1; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28, 20, 16, 0.65);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-amora-logo { height: 52px; width: auto; display: block; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg-white);
  border-left: 1px solid var(--border-dim);
  box-shadow: -8px 0 40px rgba(28,20,16,0.12);
  z-index: 1100;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.45s var(--ease);
}
.mob-menu.open { right: 0; }
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(28, 20, 16, 0.4);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mob-overlay.show { opacity: 1; pointer-events: all; }
.mob-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.mob-close:hover { color: var(--gold); }
.mob-menu ul { flex: 1; }
.mob-menu ul li { border-bottom: 1px solid var(--border-dim); }
.mob-link {
  display: block;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: color 0.3s;
}
.mob-link:hover { color: var(--gold); }
.mob-cta {
  display: block;
  margin-top: 32px;
  background: var(--gold);
  color: #ffffff !important;
  text-align: center;
  padding: 16px 32px !important;
  font-weight: 700;
  border: none;
}
.mob-footer-info {
  padding-top: 32px;
  border-top: 1px solid var(--border-dim);
}
.mob-footer-info a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s;
}
.mob-footer-info a:hover { color: var(--gold); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: var(--nav-h);
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.hero-bg-wrap {
    display: block;
    max-height: calc(100vh - var(--nav-h));
    width:auto;
    line-height: 0;
}
.hero-bg-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,14,8,0.15) 0%,
    rgba(20,14,8,0.10) 40%,
    rgba(20,14,8,0.28) 72%,
    rgba(20,14,8,0.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease-out) 0.2s forwards;
}
.hero-title {
  font-family: 'adaniregular', sans-serif;
  font-size: clamp(100px, 16vw, 180px);
  font-weight: 300;
  letter-spacing: 0.32em;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroUp 1s var(--ease-out) 0.5s forwards;
}
.hero-sub {
  font-family: 'adaniregular', sans-serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease-out) 0.8s forwards;
}
.hero-tagline {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 52px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease-out) 1s forwards;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 0.9s var(--ease-out) 1.2s forwards;
}
.hero-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  background: rgba(250, 246, 240, 0.97);
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: heroFade 0.9s var(--ease-out) 1.5s forwards;
}
.hero-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  gap: 6px;
  transition: background 0.3s;
}
.hero-bar-item:hover { background: var(--gold-glow); }
.hb-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.hb-value {
  font-family: 'adanisemibold', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.hb-value.font-sm{
    font-size: 18px;
}

.hb-divider {
  width: 1px;
  background: var(--border-dim);
  align-self: stretch;
  margin: 18px 0;
}
.hero-scroll-ind {
  position: absolute;
  right: 40px; bottom: 110px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFade 0.9s var(--ease-out) 1.8s forwards;
}
.scroll-line-wrap {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}
.scroll-line {
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollDrop 1.5s var(--ease) infinite;
}
.hero-scroll-ind span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes heroUp  { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* ── Reveal animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Overview ──────────────────────────────────────── */
.overview { background: var(--bg-white); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.overview-text .sec-body { max-width: 560px; }
.overview-text .btn-gold-outline { margin-top: 16px; }
.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border-dim);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.stat-card:hover {
  background: var(--bg-white);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-num-wrap { display: flex; align-items: baseline; gap: 0; }
.stat-num {
  font-family: 'adaniregular', sans-serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}
.stat-unit {
  font-family: 'adaniregular', sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  margin-left: 3px;
}
.stat-lbl {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Basement info */
.basement-info {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 22px 26px;
  margin: 28px 0;
}
.basement-info h4 {
  font-family: 'adanimedium', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.basement-info ul { display: flex; flex-direction: column; gap: 10px; }
.basement-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
}
.basement-info li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── Highlights ────────────────────────────────────── */
.highlights { background: var(--bg-alt); overflow: hidden; }
.highlights-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1920&q=40&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hl-card {
  background: var(--bg-white);
  border: 1px solid var(--border-dim);
  padding: 48px 36px;
  position: relative;
  transition: box-shadow 0.4s, border-color 0.4s, transform 0.4s;
  overflow: hidden;
}
.hl-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.hl-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
  transform: translateY(-4px);
}
.hl-card:hover::after { transform: scaleX(1); }
.hl-num {
  font-family: 'adaniregular', sans-serif;
  font-size: 88px;
  font-weight: 300;
  line-height: 1;
  color: rgba(184, 147, 74, 0.07);
  position: absolute;
  top: 12px; right: 20px;
  pointer-events: none;
}
.hl-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 28px;
  transition: transform 0.4s var(--ease);
}
.hl-card:hover .hl-icon { transform: scale(1.1) rotate(-3deg); }
.hl-icon svg { width: 100%; height: 100%; }
.hl-card h3 {
  font-family: 'adanimedium', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}
.hl-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-sub);
}

/* ── Amenities ─────────────────────────────────────── */
.amenities { background: var(--bg-white); }
.amenity-category {}
.am-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-dim);
}
.am-cat-header svg { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.am-cat-header h3 {
  font-family: 'adaniregular', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}
.amenities-grid--retail {
  grid-template-columns: repeat(4, 1fr) !important;
}
.am-item {
  background: var(--bg-white);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: background 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
}
.am-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.am-item:hover { background: var(--bg); }
.am-item:hover::after { transform: scaleX(1); }
.am-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.am-item:hover .am-icon { transform: translateY(-5px); }
.am-icon svg { width: 100%; height: 100%; }
.am-item span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ── Gallery ───────────────────────────────────────── */
.gallery { background: var(--bg-alt); padding-bottom: 0; }
.gallery .container { padding-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 340px;
  gap: 4px;
  position: relative;
}
.gal-disclaimer {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: 'adaniregular', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-large { grid-column: 1; grid-row: 1 / 3; }
.gal-wide  { grid-column: 2 / 4; grid-row: 2; }
.gal-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.gal-item:hover .gal-img { transform: scale(1.06); }
.gal-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gal-item:hover .gal-over { opacity: 1; }
.gal-over span {
  font-family: 'adaniregular', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
}
.gal-zoom {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.gal-item:hover .gal-zoom { background: var(--gold); border-color: var(--gold); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,14,8,0.96);
  cursor: pointer;
}
.lb-img-wrap {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 85vh;
}
.lb-img-wrap img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; display: block;
}
.lb-close {
  position: absolute;
  top: 24px; right: 32px;
  z-index: 2;
  font-size: 42px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
  line-height: 1;
}
.lb-close:hover { color: #ffffff; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; z-index: 2;
  transform: translateY(-50%);
  font-size: 64px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  line-height: 1; padding: 0 20px;
  user-select: none;
}
.lb-prev { left: 0; }
.lb-next { right: 0; }
.lb-prev:hover, .lb-next:hover { color: var(--gold-light); }
.lb-caption {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'adaniregular', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.65);
}

/* ── Floor Plans ───────────────────────────────────── */
.floor-plans { background: var(--bg-white); }
.plan-tabs {
  display: flex;
  border: 1.5px solid var(--border);
  width: fit-content;
  margin: 0 auto 56px;
  overflow: hidden;
}
.plan-tab {
  font-family: 'adanisemibold', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 44px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  transition: all 0.35s var(--ease);
}
.plan-tab.active { background: var(--gold); color: #ffffff; }
.plan-tab:not(.active):hover { background: var(--gold-glow); color: var(--gold); }
.plan-panel { display: none; }
.plan-panel.active { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: start; }
.plan-details {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border-dim);
}
.plan-spec {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dim);
}
.plan-spec:first-child { padding-top: 0; }
.ps-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.ps-val {
  font-family: 'adanimedium', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
}
.ps-price { color: var(--gold-dark); }
.plan-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
}
.room-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-sub);
  border: 1px solid var(--border-dim);
  background: var(--bg-white);
  padding: 7px 14px;
  transition: all 0.3s;
}
.room-tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.plan-details .btn-gold { margin-top: 8px; width: 100%; justify-content: center; }
.plan-visual {
  background: var(--bg);
  border: 1px solid var(--border-dim);
  padding: 32px;
}
.fp-blueprint {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 90px);
  gap: 3px;
  background: rgba(184,147,74,0.06);
  border: 1px solid var(--border);
  padding: 3px;
  position: relative;
}
.fp-blueprint::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,147,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,74,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.fp-room {
  background: var(--bg-white);
  border: 1.5px solid rgba(184,147,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: background 0.3s, border-color 0.3s;
}
.fp-room:hover { background: var(--gold-glow); border-color: var(--gold); }
.fp-room span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-sub);
  text-align: center;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.fp-room span small {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
/* 3BHK grid */
.fp-living   { grid-column: 1 / 3; grid-row: 1 / 3; }
.fp-master   { grid-column: 3 / 5; grid-row: 1 / 3; }
.fp-bed2     { grid-column: 1 / 3; grid-row: 3 / 5; }
.fp-bed3     { grid-column: 3 / 5; grid-row: 3 / 4; }
.fp-study    { grid-column: 3 / 5; grid-row: 4 / 5; }
.fp-kitchen  { grid-column: 5 / 7; grid-row: 1 / 3; }
.fp-util     { grid-column: 5 / 7; grid-row: 3 / 5; }
/* 4BHK */
.fp-4bhk .fp-living-lg  { grid-column: 1 / 4; grid-row: 1 / 3; }
.fp-4bhk .fp-master-lg  { grid-column: 4 / 7; grid-row: 1 / 3; }
.fp-4bhk .fp-bed2       { grid-column: 1 / 3; grid-row: 3 / 5; }
.fp-4bhk .fp-bed3       { grid-column: 3 / 5; grid-row: 3 / 5; }
.fp-4bhk .fp-bed4       { grid-column: 5 / 7; grid-row: 3 / 4; }
.fp-4bhk .fp-study      { grid-column: 5 / 7; grid-row: 4 / 5; }
.fp-4bhk .fp-kitchen-lg { grid-column: 4 / 7; grid-row: 1 / 2; }
.fp-4bhk .fp-util       { grid-column: 4 / 7; grid-row: 2 / 3; }
.fp-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* Retail plan */
.retail-plan-info { display: flex; flex-direction: column; gap: 20px; }
.rp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-dim);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.rp-item:hover { border-color: var(--border); box-shadow: var(--shadow); }
.rp-item svg { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.rp-title {
  display: block;
  font-family: 'adanimedium', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.rp-desc {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ── Plan showcase (pv-*) ──────────────────────────── */
.pv-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-dim);
  overflow: hidden;
}
.pv-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 28px;
  background: var(--charcoal, #3a3f4b);
}
.pv-type {
  font-family: 'adanisemibold', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02em;
}
.pv-area {
  font-family: 'adaniregular', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.pv-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-dim);
}
.pv-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 22px 12px;
  border-right: 1px solid var(--border-dim);
  text-align: center;
}
.pv-metric:last-child { border-right: none; }
.pv-metric-val {
  font-family: 'adanibold', sans-serif;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.pv-metric-lbl {
  font-family: 'adaniregular', sans-serif;
  font-size: 11px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pv-features {
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--border-dim);
}
.pv-features li {
  font-family: 'adaniregular', sans-serif;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.pv-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.pv-price-band {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: rgba(193,155,95,0.07);
  flex-wrap: wrap;
}
.pv-price-lbl {
  font-family: 'adaniregular', sans-serif;
  font-size: 12px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pv-price-val {
  font-family: 'adanibold', sans-serif;
  font-size: 22px;
  color: var(--gold);
}
.pv-price-note {
  font-family: 'adaniregular', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  margin-left: auto;
}

@media (max-width: 768px) {
  .pv-metrics { grid-template-columns: repeat(2, 1fr); }
  .pv-metric:nth-child(2) { border-right: none; }
  .pv-metric:nth-child(3) { border-right: 1px solid var(--border-dim); border-top: 1px solid var(--border-dim); }
  .pv-metric:nth-child(4) { border-top: 1px solid var(--border-dim); }
  .pv-header { flex-direction: column; gap: 4px; padding: 16px 20px; }
  .pv-features { padding: 20px; }
  .pv-price-band { padding: 16px 20px; gap: 8px; }
  .pv-price-note { margin-left: 0; width: 100%; }
}

@media (max-width: 480px) {
  .pv-metric-val { font-size: 22px; }
  .pv-type { font-size: 16px; }
}

/* ── Location ──────────────────────────────────────── */
.location { background: var(--bg-alt); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}
.loc-map {
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  box-shadow: var(--shadow);
}
.loc-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: saturate(0.8) contrast(1.05);
}
.loc-map-note {
  font-size: 11px;
  color: var(--text-muted, #888);
  margin-top: 8px;
}
.loc-advantages { display: flex; flex-direction: column; gap: 32px; }
.adv-group {}
.adv-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'adanimedium', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dim);
}
.adv-title svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.adv-list { display: flex; flex-direction: column; gap: 12px; }
.adv-list li { display: flex; align-items: center; gap: 16px; }
.adv-dist {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-glow);
  border: 1px solid var(--border);
  padding: 5px 12px;
  min-width: 64px;
  text-align: center;
  flex-shrink: 0;
}
.adv-place {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-sub);
}

/* ── FAQ section ───────────────────────────────────── */
.faq-section { background: var(--bg-white); }
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--border-dim); }
.faq-item:first-child { border-top: 1px solid var(--border-dim); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}
.faq-q span {
  font-family: 'adaniregular', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.3s;
}
.faq-q:hover span { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-q span { color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }
.faq-a p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-sub);
  padding-left: 2px;
}
.faq-a p strong { color: var(--text); font-weight: 600; }
.faq-a p a { color: var(--gold); }
.faq-a p a:hover { text-decoration: underline; }

/* ── Contact ───────────────────────────────────────── */
.contact { background: var(--bg-alt); }
.contact-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?w=1920&q=50&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}
.contact-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(242,235,224,0.97) 0%, rgba(250,246,240,0.95) 100%);
}
.contact .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 88px;
  align-items: start;
}
.contact-left .sec-title { max-width: 520px; }
.contact-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 40px;
  max-width: 460px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-item svg { width: 18px; height: 18px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.ci-lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ci-val { font-size: 15px; font-weight: 300; color: var(--text-sub); }
.ci-val a { color: var(--text-sub); transition: color 0.3s; }
.ci-val a:hover { color: var(--gold); }

/* Invest reasons */
.invest-reasons {
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--gold);
}
.invest-reasons h4 {
  font-family: 'adanimedium', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}
.invest-reasons ul { display: flex; flex-direction: column; gap: 10px; }
.invest-reasons li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.invest-reasons li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* Form */
.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-dim);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'adaniregular', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dim);
}
.fg { margin-bottom: 16px; position: relative; }
.fg-row { display: flex; gap: 8px; align-items: stretch; }
.fg-row .fg-code { flex: 0 0 130px; width: 130px; min-width: 0; }
.fg-row .fg-phone { flex: 1 1 0; width: 0; min-width: 0; }
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border-dim);
  color: var(--text);
  font-size: 15px;
  font-weight: 300;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237a6f67' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.fg select option { background: var(--bg-white); color: var(--text); }
.fg textarea { resize: none; line-height: 1.6; }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(184,147,74,0.1);
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--text-light); }

/* ── Field validation states ───────────────────────── */
.fg.is-error input,
.fg.is-error select,
.fg.is-error textarea {
  border-color: #c0392b !important;
  background: rgba(192, 57, 43, 0.04) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08) !important;
}
.fg.is-valid input,
.fg.is-valid select,
.fg.is-valid textarea {
  border-color: #27ae60 !important;
  background: rgba(39, 174, 96, 0.04) !important;
}
.fg-check.is-error label { color: #c0392b; }
.field-err {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #c0392b;
  margin-top: 5px;
  min-height: 16px;
  line-height: 1.4;
  transition: opacity 0.2s;
}
.field-err:empty { min-height: 0; margin-top: 0; }
.field-err--row {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 4px;
}
.field-err--check {
  margin-top: -16px;
  margin-bottom: 16px;
  padding-left: 2px;
}
.fg.fg-row {
  flex-wrap: wrap; /* allow error span to wrap below */
}
.char-count-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5px;
}
.char-count {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: auto;
}
.char-count.warn { color: #e67e22; }
.char-count.limit { color: #c0392b; font-weight: 600; }

.fg-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 0;
}
.fg-check input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.fg-check label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.fg-check label a { color: var(--gold); }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #ffffff;
  font-family: 'adanibold', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 19px 32px;
  border: 1.5px solid var(--gold);
  transition: all 0.35s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.btn-submit:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  padding: 14px;
  display: none;
  border-radius: 0;
}
.form-msg.success {
  display: block;
  background: rgba(60, 160, 80, 0.08);
  border: 1.5px solid rgba(60, 160, 80, 0.3);
  color: #2a7a40;
}
.form-msg.error {
  display: block;
  background: rgba(180, 60, 60, 0.08);
  border: 1.5px solid rgba(180, 60, 60, 0.3);
  color: #9a2020;
}
.spin { animation: spinAnim 1s linear infinite; }
@keyframes spinAnim { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--dark-footer);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo-img { height: 80px; width: auto; display: block; }
.footer-tag { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  max-width: 540px;
  justify-content: flex-end;
  padding-top: 8px;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-about {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.footer-about h4 {
  font-family: 'adaniregular', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-about p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 10px;
  max-width: 960px;
}
.footer-about p strong { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-rera {
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-rera p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-rera p:last-child { margin-bottom: 0; }
.footer-rera strong { color: rgba(255,255,255,0.65); font-weight: 500; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }

/* ── Thank You Popup ───────────────────────────────── */
.ty-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 14, 8, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.ty-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.ty-card {
  position: relative;
  background: var(--bg-white);
  width: 100%;
  max-width: 480px;
  padding: 56px 48px 48px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(20, 14, 8, 0.22);
  border-top: 3px solid var(--gold);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--ease);
}
.ty-overlay.open .ty-card {
  transform: translateY(0) scale(1);
}
.ty-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 26px;
  line-height: 1;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
  padding: 4px;
}
.ty-close:hover { color: var(--text); }
.ty-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  color: var(--gold);
  animation: tyIconPop 0.55s var(--ease) 0.2s both;
}
.ty-icon svg { width: 100%; height: 100%; }
@keyframes tyIconPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.ty-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ty-title {
  font-family: 'adaniregular', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 20px;
}
.ty-msg {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-sub);
  margin-bottom: 0;
}
.ty-msg strong { color: var(--text); font-weight: 600; }
.ty-divider {
  width: 48px; height: 1.5px;
  background: var(--border);
  margin: 28px auto;
}
.ty-contact-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ty-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'adanimedium', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  transition: color 0.3s;
}
.ty-phone:hover { color: var(--gold); }
.ty-btn {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #ffffff;
  font-family: 'adanibold', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.ty-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

@media (max-width: 480px) {
  .ty-card { padding: 44px 24px 36px; }
  .ty-title { font-size: 40px; }
  .ty-phone { font-size: 22px; }
}

/* ── Back to top ───────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 50px; height: 50px;
  background: var(--gold);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(184,147,74,0.35);
}
.btt.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.btt:hover { background: var(--gold-dark); }

/* ── Mobile enquire bar ────────────────────────────── */
.mob-enquire-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--bg-white);
  border-top: 1px solid var(--border-dim);
  box-shadow: 0 -4px 20px rgba(28,20,16,0.1);
  padding: 12px 20px;
  gap: 12px;
}
.meb-enquire {
  width: 100%;
  background: var(--gold);
  color: #ffffff;
  font-family: 'adanibold', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  transition: all 0.3s;
}
.meb-enquire:hover { background: var(--gold-dark); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1200px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .amenities-grid--retail { grid-template-columns: repeat(2, 1fr) !important; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .loc-map { height: 380px; }
}

@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; gap: 56px; }
  .overview-stats { max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .plan-panel.active { grid-template-columns: 1fr; }
  .plan-visual { display: none; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  html { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-amora-logo { display: none; }
  .hamburger { display: flex; }
  .hero-bar { flex-wrap: wrap; }
  .hero-bar-item { flex: 0 0 50%; }
  .hb-divider { display: none; }
  .hero-scroll-ind { display: none; }
  .hero-content { bottom: 32px; }
  .overview-stats { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr; gap: 16px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid--retail { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gal-large { grid-column: 1 / 3; grid-row: 1; }
  .gal-wide  { grid-column: 1 / 3; grid-row: 3; }
  .plan-tabs { width: 100%; }
  .plan-tab { flex: 1; padding: 14px 16px; font-size: 12px; }
  .form-card { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btt { display: flex; bottom: 84px; right: 16px; width: 44px; height: 44px; }
  .mob-enquire-bar { display: flex; }
  .faq-q span { font-size: 18px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-stats { grid-template-columns: 1fr; }
  .stat-num { font-size: 56px; }
  .hero-title { letter-spacing: 0.2em; }
  .contact-grid { gap: 40px; }
  .fg-row { flex-direction: column; }
  .fg-row .fg-code { flex: 0 0 auto; width: 100%; }
   .loader-logo {
        letter-spacing: 0.3em;
   }
}
