/* ============================================================
   AURA WORLD — INNER PAGE STYLES
   Shared by: aura-aerth.html, aura-vantaje.html, aura-avenue-79.html
   Theme: Maroon / Burgundy + Gold (matches homepage)
   ============================================================ */

:root {
  --bone:        #FFFFFF;
  --bone-deep:   #F7F0F1;
  --bone-mid:    #EBD9DB;
  --slate:       #5A1224;
  --slate-mid:   #7A1B33;
  --slate-lt:    #9B2D44;
  --gold:        #C9A24B;
  --gold-lt:     #DDBE74;
  --gold-accent: #ECD9A8;
  --charcoal:    #3A0D1A;
  --text-mid:    #6B5258;
  --text-lt:     #A78C90;
  --white:       #FFFFFF;
  --border:      #E6CFD3;
  --border-lt:   #F2E4E6;

  --shadow-xs: 0 1px 4px rgba(90,18,36,0.08);
  --shadow-sm: 0 2px 14px rgba(90,18,36,0.12);
  --shadow-md: 0 8px 36px rgba(90,18,36,0.18);
  --shadow-lg: 0 20px 60px rgba(90,18,36,0.24);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bone);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.06;
}
.display em { font-style: italic; color: var(--gold); }

.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  justify-content: center;
}
.section-label::before, .section-label::after { content: ''; width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }

.rule { width: 40px; height: 1px; background: var(--gold); margin: 16px auto 26px; }
.section-head-wrap { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head-wrap p { font-size: 14.5px; color: var(--text-mid); line-height: 1.78; }
.section-title {
  font-size: clamp(28px, 2.7vw, 46px); color: var(--slate); margin-bottom: 6px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.4px; border-radius: var(--radius-sm);
  transition: all 0.26s var(--ease); white-space: nowrap;
}
.btn--dark  { background: var(--gold); color: var(--white); }
.btn--dark:hover  { background: var(--slate); transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--white); }
.btn--gold  { background: var(--gold); color: var(--white); border: 1px solid rgba(201,162,75,0.4); }
.btn--gold:hover  { background: var(--slate); transform: translateY(-1px); box-shadow: var(--shadow-sm); color: var(--white); }
.btn--ghost { background: transparent; color: var(--slate); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }
.btn--wa    { background: #25D366; color: var(--white); }
.btn--wa:hover { background: #1EB356; color: var(--white); }
.btn--sm    { padding: 9px 18px; font-size: 12px; }
.btn--outline-light { background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn--outline-light:hover { background: rgba(255,255,255,0.18); color: var(--white); border-color: rgba(255,255,255,0.7); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-lt);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(90,18,36,0.10); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px; max-width: 1160px; margin: 0 auto;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 12.5px; font-weight: 500; color: var(--text-mid);
  transition: color 0.2s; letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--slate);
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: all 0.22s;
}
.nav-phone:hover { border-color: var(--gold); }
.nav-phone i { color: var(--gold); font-size: 11px; }
.nav-toggle { display: none; font-size: 20px; color: var(--slate); }

/* ── INNER BANNER ── */
.inner-banner {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  padding-top: 68px; overflow: hidden; background: var(--charcoal);
}
.inner-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.inner-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,13,26,0.35) 0%, rgba(58,13,26,0.55) 55%, rgba(58,13,26,0.92) 100%);
}
.inner-banner-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 40%, transparent 100%); }
.inner-banner-content { position: relative; z-index: 2; width: 100%; padding: 60px 0 56px; }
.inner-banner-loc { font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-accent); margin-bottom: 8px; font-weight: 600; }
.inner-banner-content h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 60px);
  font-weight: 600; color: var(--white); margin-bottom: 18px; line-height: 1.05;
}
.inner-banner-content h1 em { font-style: italic; color: var(--gold-accent); }
.inner-banner-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.ib-tag {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  color: var(--white); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 50px; backdrop-filter: blur(4px);
}
.ib-tag.price { background: var(--gold); border-color: var(--gold); }
.inner-banner-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── TICKER STRIP (replaces marquee) ── */
.info-strip { background: var(--slate); padding: 16px 0; }
.info-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.info-strip-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 13px; }
.info-strip-item i { color: var(--gold-accent); font-size: 15px; }
.info-strip-item strong { color: var(--white); font-weight: 600; }

/* ── OVERVIEW ── */
.overview-section { background: var(--white); padding: 88px 0; }
.overview-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.overview-text p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.overview-img-wrap { position: relative; }
.overview-img-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.overview-img-wrap::after {
  content: ''; position: absolute; top: 18px; left: 18px; right: -18px; bottom: -18px;
  border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: 0; opacity: 0.35;
}
.overview-cta { margin-top: 24px; }

/* ── HIGHLIGHTS / KEY FACTS ── */
.highlights-section { background: var(--bone-deep); padding: 80px 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.highlight-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.highlight-icon {
  width: 50px; height: 50px; border-radius: 12px; margin: 0 auto 16px;
  background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
}
.highlight-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.highlight-card p { font-size: 12.5px; color: #000000; letter-spacing: 0.3px; text-transform: uppercase; }

/* ── PRICE ── */
.price-section { background: var(--white); padding: 88px 0; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.price-card {
  background: var(--bone); border: 1px solid var(--border-lt); border-radius: var(--radius);
  padding: 32px 28px; text-align: center; transition: all 0.3s var(--ease); position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.price-card .ptag {
  position: absolute; top: -12px; right: 24px; background: var(--gold); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
}
.price-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.price-card .pamt { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.price-card .pamt small { font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text-lt); font-weight: 400; }
.price-card .pmeta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; font-size: 13px; color: var(--text-mid); }
.price-card .pmeta span strong { color: var(--charcoal); font-weight: 600; }
.price-card .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; font-size: 12.5px; color: #000000; margin-top: 24px; }

/* ── AMENITIES ── */
.amenities-section { background: var(--bone-deep); padding: 88px 0; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity-card {
  background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius);
  padding: 26px 16px; text-align: center; transition: all 0.25s var(--ease);
}
.amenity-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.amenity-icon {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(201,162,75,0.12); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 19px;
}
.amenity-card p { font-size: 12.5px; font-weight: 500; color: var(--charcoal); }

/* ── FLOOR PLANS ── */
.floorplan-section { background: var(--white); padding: 88px 0; }
.floorplan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.floorplan-card {
  background: var(--bone); border: 1px solid var(--border-lt); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s var(--ease);
}
.floorplan-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.floorplan-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bone-mid); display: flex; align-items: center; justify-content: center; }
.floorplan-img img { width: 100%; height: 100%; object-fit: cover; }
.floorplan-card-body { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.floorplan-card-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--slate); }
.floorplan-card-body span { font-size: 12.5px; color: #000000; }

/* ── GALLERY ── */
.gallery-section { background: var(--bone-deep); padding: 88px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid > a, .gallery-grid > div { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-xs); display: block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.06); }

/* ── LOCATION ── */
.location-section { background: var(--white); padding: 88px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-points { display: flex; flex-direction: column; gap: 0; }
.location-point {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border-lt);
}
.location-point:first-child { padding-top: 0; }
.lp-left { display: flex; align-items: center; gap: 12px; }
.lp-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: rgba(201,162,75,0.12); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 13px;
}
.lp-left p { font-size: 13.5px; color: var(--text-mid); }
.lp-time { font-size: 12.5px; font-weight: 700; color: var(--slate); background: var(--bone-deep); padding: 5px 12px; border-radius: 50px; white-space: nowrap; }
.location-map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.location-map-wrap iframe, .location-map-wrap img { width: 100%; height: 100%; object-fit: cover; border: 0; }

/* ── ABOUT DEVELOPER ── */
.about-dev-section { background: var(--bone-deep); padding: 88px 0; }
.about-dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-dev-text p { font-size: 14.5px; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.about-dev-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.ad-stat { background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius-sm); padding: 18px 12px; text-align: center; }
.ad-stat h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: #481a1a; }
.ad-stat p { font-size: 11px; color: var(--text-lt); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── CTA STRIP ── */
.cta-strip { background: linear-gradient(135deg, var(--gold) 0%, var(--slate) 100%); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 600; color: var(--white); margin-bottom: 6px; line-height: 1.15; }
.cta-text p { font-size: 14px; color: rgba(255,255,255,0.85); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-strip .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }
.cta-strip .btn--ghost:hover { background: var(--white); color: var(--slate); border-color: var(--white); }
.cta-strip .btn--dark { background: var(--white); color: var(--slate); }
.cta-strip .btn--dark:hover { background: var(--charcoal); color: var(--white); }

/* ── CONTACT FORM (sticky side) ── */
.contact-section { background: var(--white); padding: 88px 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.contact-content p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.c-detail { display: flex; align-items: center; gap: 12px; }
.c-detail-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--bone); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; flex-shrink: 0; }
.c-detail-text span { display: block; }
.c-detail-text span:first-child { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-lt); margin-bottom: 2px; }
.c-detail-text span:last-child { font-size: 14px; font-weight: 500; color: var(--slate); }
.contact-form-card {
  background: var(--bone); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.contact-form-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.contact-form-card .sub { font-size: 12.5px; color: var(--text-lt); margin-bottom: 24px; }
.cfc-field { margin-bottom: 11px; }
.cfc-field input, .cfc-field select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px; font-family: 'Inter', sans-serif;
  color: var(--charcoal); background: var(--white);
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.cfc-field input:focus, .cfc-field select:focus { border-color: var(--gold); }
.cfc-field input::placeholder { color: var(--text-lt); font-size: 12.5px; }
.cfc-submit {
  width: 100%; padding: 13px; background: var(--gold); color: var(--white);
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  transition: all 0.22s; cursor: pointer; letter-spacing: 0.2px;
}
.cfc-submit:hover { background: var(--slate); transform: translateY(-1px); }
.cfc-alts { display: flex; gap: 8px; margin-top: 10px; }
.cfc-alts .btn { flex: 1; justify-content: center; font-size: 12px; padding: 10px 8px; }
.cfc-consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; }
.cfc-consent input { margin-top: 3px; accent-color: var(--gold); }
.cfc-consent p { font-size: 10.5px; color: var(--text-lt); line-height: 1.6; }

/* ── FOOTER ── */
.footer { background: var(--charcoal); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1) opacity(0.7); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.78; max-width: 240px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.f-social {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 12px; transition: all 0.2s;
}
.f-social:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(236,217,168,0.55); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.50); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.30); }
.footer-bottom a { font-size: 11.5px; color: rgba(255,255,255,0.34); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-accent); }
.footer-links { display: flex; gap: 20px; }
.footer-disclaimer { font-size: 10.5px; color: rgba(255,255,255,0.24); line-height: 1.7; margin-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; }

/* ── FLOAT BUTTONS ── */
.float-wa-btn {
  position: fixed; bottom: 86px; right: 22px; z-index: 997;
  width: 50px; height: 50px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px; box-shadow: var(--shadow-md);
  transition: transform 0.22s;
}
.float-wa-btn:hover { transform: scale(1.08); color: var(--white); }
.float-call-btn {
  position: fixed; bottom: 22px; right: 22px; z-index: 997;
  width: 50px; height: 50px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; box-shadow: var(--shadow-md);
  transition: transform 0.22s;
}
.float-call-btn:hover { transform: scale(1.08); background: var(--slate); color: var(--white); }

/* ── MOBILE STICKY ── */
.sticky-mob {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 10px 14px 14px; z-index: 998; gap: 7px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-mob a {
  flex: 1; padding: 11px 6px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 700; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.s-call { background: var(--gold); color: var(--white) !important; }
.s-enq  { background: var(--slate); color: var(--white) !important; }
.s-wa   { background: #25D366; color: var(--white) !important; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(58,13,26,0.55); backdrop-filter: blur(8px);
  z-index: 9999; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  width: 100%; max-width: 400px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: pop 0.28s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes pop { from { opacity:0; transform: scale(0.94) translateY(12px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-head {
  background: linear-gradient(135deg, var(--gold) 0%, var(--slate) 100%); padding: 22px 24px; position: relative;
  border-bottom: 2px solid rgba(236,217,168,0.4);
}
.modal-head h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.modal-head p { font-size: 12px; color: rgba(255,255,255,0.65); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 11px; transition: background 0.18s;
}
.modal-close:hover { background: rgba(255,255,255,0.28); }
.modal-body { padding: 22px; }
.m-field { margin-bottom: 11px; }
.m-field input, .m-field select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; font-family: 'Inter', sans-serif;
  color: var(--charcoal); background: var(--bone); outline: none;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.m-field input:focus, .m-field select:focus { border-color: var(--gold); background: var(--white); }
.m-field input::placeholder { color: var(--text-lt); font-size: 12.5px; }
.m-submit {
  width: 100%; padding: 13px; cursor: pointer;
  background: var(--gold); color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; transition: all 0.22s;
}
.m-submit:hover { background: var(--slate); transform: translateY(-1px); }
.m-note { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 10px; font-size: 10.5px; color: var(--text-lt); }
.m-note i { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .overview-grid, .location-grid, .about-dev-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .overview-img-wrap { order: -1; max-width: 460px; margin: 0 auto; }
  .overview-img-wrap::after { display: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .floorplan-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border-lt);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 32px 16px;
    box-shadow: var(--shadow-sm);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border-lt); }
  .nav-toggle { display: block; }
}
@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .float-wa-btn, .float-call-btn { display: none; }
  .sticky-mob { display: flex; }
  .about-dev-stats { grid-template-columns: repeat(3, 1fr); }
  body { padding-bottom: 68px; }
}
@media (max-width: 480px) {
  .inner-banner-content h1 { font-size: 38px; }
  .inner-banner-ctas { flex-direction: column; align-items: stretch; }
  .inner-banner-ctas .btn { justify-content: center; }
  .info-strip .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 22px 16px; }
}

@media (max-width: 768px) {
  .nav-phone {
    padding: 0;
    width: 38px;
    height: 38px;
    justify-content: center;
    border-radius: 50%;
  }
  .nav-phone span { display: none; }
  .nav-phone i { font-size: 14px; }
}

.faq-section{ background:var(--white); padding:88px 0; }
.faq-wrap{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:var(--bone-deep); border:1px solid var(--border-lt); border-radius:var(--radius);
  overflow:hidden; transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item:hover{ border-color:var(--gold); }
.faq-item[open]{ border-color:var(--gold); box-shadow:var(--shadow-sm); background:var(--white); }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px; cursor:pointer; list-style:none;
  font-family:'Cormorant Garamond', serif; font-size:17px; font-weight:600; color:var(--slate);
}
.faq-q::-webkit-details-marker{ display:none; }
.faq-q::marker{ content:''; }
.faq-icon{
  width:30px; height:30px; border-radius:50%; flex-shrink:0;
  background:rgba(201,162,75,0.12); border:1px solid rgba(201,162,75,0.3);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:12px; transition:transform .3s var(--ease), background .25s, color .25s;
}
.faq-item[open] .faq-icon{ transform:rotate(45deg); background:var(--gold); color:var(--white); }
.faq-a{ padding:0 24px 22px; font-size:14px; color:var(--text-mid); line-height:1.8; }

@media (max-width:768px){
  .faq-q{ font-size:15.5px; padding:16px 18px; }
  .faq-a{ padding:0 18px 18px; font-size:13.5px; }
}


.rera-btn{
    cursor: default;
    pointer-events: none;
    white-space: normal;
    text-align: center;
}
.rera-btn a{
    pointer-events: auto;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 6px;
}

.m-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
}
.m-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.m-consent label {
  font-size: 10.5px;
  color: var(--text-lt);
  line-height: 1.6;
  cursor: pointer;
}