/* Godrej Vanantara — Nambiar District25 inspired layout, custom midnight-blue/gold theme */

:root {
  /* Legacy aliases for privacy-policy page */
  --color-warm-white: #f6f8fc;
  --color-muted: #596579;
  --color-forest: #101828;
  --color-forest-dark: #0b1220;
  --para-size: 15px;

  --primary: #101828;
  --primary-dark: #0b1220;
  --primary-mid: #1e2f4d;
  --accent: #d4af37;
  --accent-light: #f2cf63;
  --accent-bright: #b8891f;
  --text: #1d2939;
  --text-muted: #596579;
  --white: #ffffff;
  --card-dark: #0f1e3a;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  --section-radius: 20px;
  --section-shadow: 0 18px 50px rgba(16, 24, 40, 0.12), 0 4px 14px rgba(16, 24, 40, 0.06);
  --section-border: 1px solid rgba(16, 24, 40, 0.08);
  --section-gap: clamp(1rem, 2.5vw, 1.75rem);
  --section-outer-max: min(99vw, 1920px);
  --section-gutter: clamp(6px, 0.85vw, 14px);
  --section-pad-y: clamp(2.5rem, 4.5vw, 3.5rem);
  --section-pad-x: clamp(1.25rem, 2.5vw, 2rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #f6f8fc;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.25s ease; }
ul { list-style: none; margin: 0; padding: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========== HEADER / HERO ========== */
.main-hero-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(6, 26, 22, 0.92) 0%, rgba(6, 26, 22, 0.55) 48%, rgba(6, 26, 22, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 26, 22, 0.85) 0%, transparent 42%);
}

.nav-posi {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(12px, 3vw, 48px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-posi .nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-posi.fixedtop {
  position: fixed;
  top: 0;
  padding: 8px clamp(12px, 3vw, 48px);
}

.nav-posi.fixedtop .nav-inner {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 162, 39, 0.25);
}

.logo_img {
  max-height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-abs:hover .logo_img { transform: scale(1.03); }

.header_call a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  margin-right: 1rem;
  white-space: nowrap;
}
.header_call a:hover { color: var(--accent); }

.navbar-toggler {
  border: 1px solid rgba(6, 26, 22, 0.2);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.offcanvas {
  background: var(--primary-dark);
}
.offcanvas-logo { max-height: 50px; filter: brightness(0) invert(1); }
.offcanvas .nav-link {
  color: var(--white) !important;
  font-size: 1.05rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offcanvas .nav-link:hover { color: var(--accent) !important; }
/* Mobile navigation overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(6, 26, 22, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}
.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
  padding: 2rem;
}
.mobile-nav-menu a {
  color: var(--white);
  font-size: 1.1rem;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-menu a:hover { color: var(--accent); }
.nav-mobile-call {
  display: block;
  text-align: center;
  color: var(--accent) !important;
  margin-top: 1rem;
  font-weight: 600;
  border-bottom: none !important;
}
body.menu-open { overflow: hidden; }

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 2;
}

.slider_section { position: relative; z-index: 0; }

.hero-video {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 920px;
  object-fit: cover;
  display: block;
  background: #000;
}

.slider-img {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 920px;
  object-fit: cover;
  display: block;
  animation: heroKenBurns 14s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.slider_section,
.content-abs { position: relative; z-index: 2; }


.hero-carousel .carousel-item { transition: opacity 0.8s ease; }

.hero-indicators {
  bottom: 28px;
  margin: 0;
  z-index: 6;
}
.hero-indicators li {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  margin: 0 4px;
  transition: width 0.3s, background 0.3s;
}
.hero-indicators li.active {
  width: 48px;
  background: var(--accent);
}

.hero-nav-btn {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 6;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.hero-nav-btn i {
  color: #fff;
  font-size: 1rem;
}
.hero-nav-btn:hover {
  background: rgba(201, 162, 39, 0.85) !important;
  border-color: var(--accent) !important;
  transform: translateY(-50%) scale(1.05);
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon { display: none; }

.content-abs {
  position: absolute;
  bottom: clamp(4%, 6vh, 10%);
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  padding-bottom: 2rem;
}
.content-abs .same-btn,
.content-abs a { pointer-events: auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-badge i { font-size: 11px; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.hero-headline span {
  color: var(--accent);
  display: inline-block;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 520px;
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}
.hero-chips li i {
  color: var(--accent-bright);
  font-size: 11px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-btn-primary { /* extends .same-btn */ }

.hero-btn-outline { /* extends .same-btn.same-btn--outline */ }

.hero-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin-left: auto;
}

.hero-stat-card {
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  transition: transform 0.3s, border-color 0.3s;
}
.hero-stat-card:hover {
  transform: translateX(-4px);
  border-color: rgba(201, 162, 39, 0.5);
}
.hero-stat-card--featured {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25) 0%, rgba(10, 46, 38, 0.6) 100%);
  border-color: rgba(201, 162, 39, 0.55);
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-stat-card--featured .hero-stat-value {
  font-size: 1.65rem;
  color: var(--accent-light);
}
.hero-stat-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-right { text-align: right; }

/* Legacy — other sections may still use key_highlights */
.main-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.key_highlights li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.key_highlights li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 12px;
}

/* ========== BUTTONS (site-wide) ========== */
.same-btn,
.same-btn:hover,
.same-btn:focus,
.same-btn:active,
.book-bnt,
.book-bnt:hover,
.book-bnt:focus,
.book-bnt:active,
.visit-submit,
.visit-submit:hover,
.visit-submit:focus,
.gallery-creative-btn,
.gallery-creative-btn:hover,
.gallery-creative-btn:focus,
.gpl-cta,
.gpl-cta:hover,
.gpl-cta:focus,
.footer-cta-btn,
.footer-cta-btn:hover,
.footer-cta-btn:focus,
.view_plan_btn,
.view_plan_btn:hover,
.view_plan_btn:focus,
.cta_btn_mobile a,
.cta_btn_mobile a:hover,
.cta_btn_mobile a:focus,
.modal-submit-btn,
.modal-submit-btn:hover,
.modal-submit-btn:focus {
  text-decoration: none !important;
}

.same-btn,
.book-bnt,
.visit-submit,
.gallery-creative-btn,
.gpl-cta,
button.same-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

/* Primary — gold */
.same-btn,
.book-bnt,
.gallery-creative-btn,
.gpl-cta {
  background: linear-gradient(145deg, #e4c55a 0%, var(--accent) 42%, #9a7a18 100%);
  color: #fff !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 4px 0 #7a6212,
    0 10px 28px rgba(201, 162, 39, 0.38);
}
.same-btn:hover,
.book-bnt:hover,
.gallery-creative-btn:hover,
.gpl-cta:hover {
  transform: translateY(-3px);
  color: #fff !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 5px 0 #7a6212,
    0 16px 36px rgba(201, 162, 39, 0.48);
}
.same-btn:active,
.book-bnt:active,
.gallery-creative-btn:active,
.gpl-cta:active {
  transform: translateY(-1px);
  box-shadow:
    0 2px 0 #7a6212,
    0 6px 16px rgba(201, 162, 39, 0.32);
}

/* Green — forms & secondary CTAs */
.same-btn--green,
.visit-submit {
  background: linear-gradient(145deg, #d4af37 0%, var(--accent-bright) 45%, #b8891f 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 0 #145a3a,
    0 10px 28px rgba(45, 155, 110, 0.35);
}
.same-btn--green:hover,
.visit-submit:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 5px 0 #145a3a,
    0 16px 36px rgba(45, 155, 110, 0.45);
}

.same-btn--accent {
  background: linear-gradient(145deg, #e4c55a 0%, var(--accent) 42%, #9a7a18 100%);
}

.same-btn--block,
.book-bnt {
  width: 100%;
  max-width: none;
}

.same-btn--lg {
  padding: 16px 36px;
  font-size: 15px;
  border-radius: 14px;
}

.same-btn i,
.book-bnt i {
  font-size: 0.85em;
  transition: transform 0.22s ease;
}
.same-btn:hover i,
.book-bnt:hover i {
  transform: translateX(3px);
}

/* Outline — hero & light backgrounds */
.hero-btn-outline,
.same-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}
.hero-btn-outline:hover,
.same-btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--accent-light);
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* Dark outline on white sections */
.section-panel--white .same-btn--outline-dark,
.same-btn--outline-dark {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  box-shadow: 0 4px 16px rgba(10, 46, 38, 0.08);
}
.same-btn--outline-dark:hover {
  background: var(--primary);
  color: #fff !important;
}

/* Mobile hero strip */
.mobile_typology {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}
.hero-badge--mobile {
  margin-bottom: 0.75rem;
  font-size: 11px;
}
.hero-headline--mobile {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.mobile-price-line {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0 0 1rem;
}
.mobile-price-line strong {
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.hero-chips--mobile {
  justify-content: center;
  margin-bottom: 0;
}
.hero-chips--mobile li {
  font-size: 12px;
  padding: 6px 12px;
}

.m_form {
  background: #fff;
  padding: 1.25rem var(--section-pad-x);
  text-align: center;
  border: var(--section-border);
  border-radius: var(--section-radius);
  box-shadow: var(--section-shadow);
  box-sizing: border-box;
  width: 100%;
}
.page-section--mobile-form {
  max-width: var(--section-outer-max);
  margin: var(--section-gap) auto 0;
  padding-left: var(--section-gutter);
  padding-right: var(--section-gutter);
  box-sizing: border-box;
}
.m_form h5 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.m-form-note { font-size: 12px; color: var(--text-muted); margin-top: 0.75rem; }

/* ========== UNIFIED SECTION HEADINGS (all sections) ========== */
.main_overview_box {
  position: relative;
  margin-bottom: 1.5rem;
}

.overview-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.overview-title .left_side_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.overview-title .left_side_content h2 {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.overview-title--light .left_side_content h2 {
  color: var(--white);
}

.overview-title .g_top_line {
  position: relative;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0) 0%, var(--accent) 100%);
  width: 2px;
  min-height: 117px;
  flex-shrink: 0;
}

.overview-title .g_top_line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 2;
}

.overview-title .bottm_g_line {
  background: linear-gradient(
    93deg,
    rgba(201, 162, 39, 0) 0%,
    var(--accent) 28%,
    rgba(201, 162, 39, 0) 100%
  );
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 7px;
  left: 47%;
  transform: translateX(-50%);
}

.overview-title .overview_para {
  color: var(--text-muted);
  text-align: justify;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin: 0;
  flex: 1;
  min-width: 200px;
  max-width: none;
}

.overview-title--light .overview_para {
  color: rgba(255, 255, 255, 0.88);
}

/* ========== SECTION PANELS (uniform width / margin / padding) ========== */
.page-section {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--section-outer-max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--section-gap);
  padding-left: var(--section-gutter);
  padding-right: var(--section-gutter);
}

.page-section:first-of-type {
  margin-top: var(--section-gap);
}

.section-panel {
  box-sizing: border-box;
  width: 100%;
  padding: var(--section-pad-y) var(--section-pad-x);
  border-radius: var(--section-radius);
  box-shadow: var(--section-shadow);
  border: var(--section-border);
  overflow: hidden;
}

/* Bootstrap py-* removed from HTML; reset if any remain */
.section-panel.py-5,
.section-panel[class*="py-"] {
  padding-top: var(--section-pad-y) !important;
  padding-bottom: var(--section-pad-y) !important;
}

.page-section .container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* Amenities carousel — full bleed within panel */
.section-panel--mint .amenities-strip-wrap {
  margin-left: calc(-1 * var(--section-pad-x));
  margin-right: calc(-1 * var(--section-pad-x));
  width: calc(100% + 2 * var(--section-pad-x));
}
.section-panel--mint .amenities-strip-wrap + .text-center {
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.section-panel--white {
  background: #ffffff;
}

.section-panel--mint {
  background: linear-gradient(165deg, #eef7f2 0%, #e3f0ea 55%, #f5faf7 100%);
}

.section-panel--dark {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
}

.section-panel--pricing {
  background: linear-gradient(155deg, #061a16 0%, var(--primary) 45%, #134a3d 100%);
}

.section-panel--location {
  background: linear-gradient(155deg, var(--primary-mid) 0%, var(--primary) 50%, var(--primary-dark) 100%);
}

.section-panel--cream {
  background: linear-gradient(180deg, #faf6eb 0%, #eef5f1 100%);
}

.section-panel--gallery {
  background: #ffffff;
  position: relative;
}

.section-panel--gallery .gallery-creative-bg {
  background:
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(45, 155, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 55% 35% at 92% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 45%);
}

/* ========== OVERVIEW ========== */
.section-panel--overview {
  background: #fff;
  border-top: 2px solid rgba(201, 162, 39, 0.65);
}

.overview-sec .main_overview_box {
  margin-bottom: 1.5rem;
}

.overview-clean {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.overview-clean__media {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-mid) 100%);
  box-shadow:
    0 14px 36px rgba(10, 46, 38, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.overview-clean__media::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(201, 162, 39, 0.45);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}
.overview-clean__media::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  border-top: 3px solid var(--accent-light);
  border-right: 3px solid var(--accent-light);
  border-radius: 0 14px 0 0;
  pointer-events: none;
  z-index: 3;
}
.overview-media-accent {
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 36px;
  height: 36px;
  border-bottom: 3px solid var(--accent-light);
  border-left: 3px solid var(--accent-light);
  border-radius: 0 0 0 14px;
  pointer-events: none;
  z-index: 3;
}
.overview-clean__media img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  display: block;
  border-radius: 10px;
  z-index: 1;
  transition: transform 0.5s ease;
}
.overview-clean__media:hover img {
  transform: scale(1.03);
}
.overview-media-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 4;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.overview-clean__content {
  border-radius: 14px;
  border: 1px solid #e2ebe6;
  background: #f7faf8;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.overview-clean__content > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.overview-clean__content .same-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.overview-clean__content h4 {
  margin: 0 0 1rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.overview-clean__para {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.overview-clean__list {
  margin: 0 0 1.25rem;
  padding: 0;
}
.overview-clean__list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #d7e4de;
}
.overview-clean__list li:last-child {
  border-bottom: none;
}
.overview-clean__list span {
  font-size: 13px;
  color: var(--text-muted);
}
.overview-clean__list strong {
  font-size: 14px;
  color: var(--primary);
  text-align: right;
  font-weight: 600;
}

.overview-clean__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.overview-stat {
  border: 1px solid #e2ebe6;
  border-radius: 12px;
  background: #fff;
  padding: 14px 12px;
  text-align: center;
}
.overview-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.overview-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========== HIGHLIGHTS ========== */
.highlight_card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.highlight_card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.highlight-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.highlight_card h6 {
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* ========== REFERENCE-MATCHED SECTIONS (Nambiar layout) ========== */
.ref-section {
  --ref-primary: #0A2740;
  --ref-primary-mid: #092035;
  --ref-accent: #e96139;
  --ref-gold: #f29536;
  --ref-text: #0A2740;
}

.ref-section .heading-sec { position: relative; }

/* Amenities — flush strip, uniform height, top label bar */
.amenities-strip-wrap {
  width: 100%;
  overflow: hidden;
  --amenities-h: clamp(300px, 42vw, 420px);
}

.ref-section .amenities-carousel--flush.owl-carousel {
  display: block;
}
.ref-section .amenities-carousel--flush .owl-stage-outer {
  overflow: hidden;
}
.ref-section .amenities-carousel--flush .owl-stage {
  display: flex;
  align-items: stretch;
}
.ref-section .amenities-carousel--flush .owl-item {
  float: none;
  margin: 0 !important;
  padding: 0 !important;
}
.ref-section .amenities-carousel--flush .owl-item > div,
.ref-section .amenities-carousel--flush .amenities-card {
  height: 100%;
}

.ref-section .amenities-card {
  position: relative;
  display: block;
  height: var(--amenities-h);
  margin: 0;
  overflow: hidden;
  line-height: 0;
}
.ref-section .amenities-card img {
  width: 100%;
  height: var(--amenities-h);
  min-height: var(--amenities-h);
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: top;
}
.ref-section .abs_ameneties_title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 11px 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  z-index: 2;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* Hide arrows/dots — seamless auto strip like reference */
.ref-section .amenities-carousel--flush .owl-nav,
.ref-section .amenities-carousel--flush .owl-dots {
  display: none !important;
}

/* Pricing */
.ref-section .price-sec {
  position: relative;
}

.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

/* Keep the 4th card centered when grid has four cards */
.price-cards-grid > .price-card:last-child:nth-child(4) {
  grid-column: 2;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.price-card--featured {
  border: 2px solid var(--accent);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.3),
    0 24px 56px rgba(0, 0, 0, 0.28);
}
.price-card--featured:hover {
  transform: translateY(-10px) scale(1.02);
}

.price-card__ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  z-index: 3;
  transform: rotate(45deg);
  background: var(--primary-mid);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.price-card__ribbon--hot {
  background: linear-gradient(135deg, var(--accent) 0%, #a8841a 100%);
}

.price-card__head {
  padding: 28px 24px 22px;
  text-align: center;
  background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-bottom: 3px solid var(--accent);
}
.price-card__bhk {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.price-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.price-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 26px;
}

.price-card__area {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #f4f9f6;
  border: 1px solid #e4ece8;
}
.price-card__area > i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary);
  color: var(--accent);
  font-size: 1rem;
}
.price-card__area-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.price-card__area-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.price-card__price {
  text-align: center;
  margin-bottom: 18px;
}
.price-card__from {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.price-card__amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  background: linear-gradient(135deg, var(--primary) 0%, #b8891f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card--featured .price-card__amount {
  background: linear-gradient(135deg, #9a7a18 0%, var(--accent) 50%, #b8891f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.price-card__onwards {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-bright);
}

.price-card__perks {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.price-card__perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.price-card__perks li i {
  color: var(--accent-bright);
  margin-top: 3px;
  font-size: 12px;
}

.price-card .same-btn {
  margin-top: auto;
}

@media (max-width: 991px) {
  .footer-main {
    display: none;
  }
  .price-cards-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }
  .price-cards-grid .price-card {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
  .price-card--featured:hover {
    transform: translateY(-4px);
  }
}

.price-section-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 0.5rem;
}

/* Floor plans */
.ref-section .tab-buttons {
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ref-section .tab-link {
  background: #f0f4f2;
  border: 2px solid transparent;
  padding: 10px 32px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  color: var(--primary);
  transition: background 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.ref-section .tab-link:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}
.ref-section .tab-link.active {
  background: linear-gradient(145deg, #e4c55a 0%, var(--accent) 50%, #9a7a18 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 0 #7a6212, 0 10px 24px rgba(201, 162, 39, 0.35);
}
.ref-section .tab-content {
  display: none;
  padding: 15px;
  background: #f7faf8;
  border-radius: 12px;
  border: 1px solid rgba(10, 46, 38, 0.06);
}
.ref-section .tab-content.active { display: block; }
.ref-section .tab-content h4 {
  color: var(--ref-primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.ref-section .floor-plan-list li {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  list-style: disc;
}
.ref-section .floor-paln-img {
  position: relative;
  width: 100%;
}
.floor-plan-img-creative {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 26, 22, 0.12);
  isolation: isolate;
}
.floor-plan-img-creative__blur {
  position: absolute;
  inset: -10%;
  z-index: 0;
}
.floor-plan-img-creative__blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.1);
  transform: scale(1.06);
}
.floor-plan-img-creative__preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}
.floor-plan-img-creative__preview img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  padding: 8px;
  filter: blur(4px);
  opacity: 0.55;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.floor-plan-img-creative__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: rgba(6, 26, 22, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.floor-plan-img-creative__text {
  margin: 0;
  max-width: 260px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.ref-section .view_plan_btn {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 3;
  white-space: nowrap;
}
.floor-plan-img-creative:hover .floor-plan-img-creative__preview img {
  filter: blur(3px);
  opacity: 0.65;
}

/* Location */
.ref-section .location_point { position: relative; }
.ref-section .location_point h4 {
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.5px;
  opacity: 0.15;
  margin: 0;
}
.ref-section .location_point .mint {
  color: #f19436;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  right: 44%;
  bottom: 20%;
  margin: 0;
}
.ref-section .location_point .loc {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-top: 30px;
  margin-bottom: 0 !important;
}
.ref-section .location-map-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}
.ref-section .location-map-link img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.location-map-col {
  display: flex;
}
.location-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

/* ========== GALLERY (creative bento) ========== */
.gallery-creative {
  position: relative;
}
.gallery-creative-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.gallery-creative .container {
  position: relative;
  z-index: 1;
}
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(130px, auto);
  gap: 14px;
  min-height: 480px;
}
.gallery-bento-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(10, 46, 38, 0.1);
  min-height: 130px;
}
.gallery-bento-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-bento-item--hero {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  min-height: 280px;
}
.gallery-bento-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1 / 2; }
.gallery-bento-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 2; }
.gallery-bento-item:nth-child(4) { grid-column: 7 / 9; grid-row: 2 / 3; }
.gallery-bento-item:nth-child(5) { grid-column: 9 / 11; grid-row: 2 / 3; }
.gallery-bento-item:nth-child(6) { grid-column: 11 / 13; grid-row: 2 / 3; }
.gallery-bento-item--wide {
  grid-column: 1 / 8;
  grid-row: 3 / 4;
  min-height: 200px;
}
.gallery-bento-item:nth-child(7) { grid-column: 8 / 11; grid-row: 3 / 4; }
.gallery-bento-item:nth-child(8) { grid-column: 11 / 13; grid-row: 3 / 4; }

.gallery-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 22, 0.15) 0%, rgba(6, 26, 22, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-bento-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: scale(0.85);
  transition: transform 0.35s ease;
}
.gallery-bento-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery-bento-item:hover img {
  transform: scale(1.08);
}
.gallery-bento-item:hover .gallery-bento-overlay {
  opacity: 1;
}
.gallery-bento-item:hover .gallery-bento-zoom {
  transform: scale(1);
}

.gallery-creative-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 46, 38, 0.08);
}
.gallery-creative-foot p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.gallery-creative-foot i { margin-right: 6px; color: var(--accent-bright); }
.gallery-creative-btn {
  border-radius: 50px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6,26,22,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox .lightbox-content img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }

/* ========== ABOUT DEVELOPER (custom layout) ========== */
.gpl-inner {
  position: relative;
}
.gpl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.gpl-visual-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 46, 38, 0.18);
}
.gpl-visual-frame img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}
.gpl-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gpl-visual-badge i { color: var(--accent); font-size: 1.25rem; }
.gpl-logo {
  max-width: 200px;
  margin-bottom: 1.5rem;
}
.gpl-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.gpl-stat {
  flex: 1;
  min-width: 90px;
  background: #fff;
  border: 1px solid #e0ebe6;
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}
.gpl-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.2;
}
.gpl-stat span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gpl-copy p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.gpl-cta {
  margin-top: 0.5rem;
}

/* ========== CONTACT / SITE VISIT (custom layout) ========== */
.visit-inner {
  position: relative;
}
.visit-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 46, 38, 0.12);
  border: 1px solid #e8eeeb;
}
.visit-info-col {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
}
.visit-info-inner {
  padding: 2.5rem 2rem;
  height: 100%;
}
.visit-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.visit-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.visit-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
}
.visit-contact-list a:hover { color: var(--accent-light); }
.visit-contact-list small {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.visit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.visit-icon--wa { background: #25d366; }
.visit-form-col { background: #fafcfb; }
.visit-form-inner { padding: 2.5rem 2rem; }
.visit-form-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
  margin: 0 0 1.5rem;
  font-weight: 700;
}
.visit-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.visit-form input,
.visit-form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 1rem;
  border: 1px solid #d5e0db;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.visit-form input:focus,
.visit-form select:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(45, 155, 110, 0.15);
}
.visit-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0.5rem 0 1.25rem;
}
.visit-consent label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.45;
}
.visit-consent input { width: 16px; margin-top: 2px; flex-shrink: 0; }
.visit-submit {
  width: 100%;
  font-size: 15px;
}
.visit-form-error {
  background: #fde8e8;
  border: 1px solid #f5c2c2;
  color: #9b1c1c;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 13px;
}

.inp-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}
.inp-box label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}
.inp-box input[type="checkbox"] { width: 16px; margin-top: 2px; flex-shrink: 0; }

/* ========== MODAL ========== */
#enquiryModal .modal-backdrop.show {
  opacity: 0.78;
}
.modal-enquiry-dialog {
  max-width: min(94vw, 920px);
  width: 100%;
}
.modal-enquiry {
  position: relative;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  box-shadow:
    0 32px 80px rgba(11, 18, 32, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.25);
  transform: translateY(8px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#enquiryModal.show .modal-enquiry {
  transform: translateY(0) scale(1);
}

.modal-enquiry__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 560px);
}

.modal-enquiry__visual {
  position: relative;
  min-height: 100%;
  background: var(--primary-dark);
}
.modal-enquiry__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal-enquiry__visual-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(88vh, 560px);
  padding: clamp(24px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.55) 45%, rgba(11, 18, 32, 0.92) 100%);
}
.modal-enquiry__visual-overlay .modal-logo {
  position: relative;
  z-index: 1;
  max-width: 140px;
  margin: 0 0 14px;
  display: block;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.modal-enquiry__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(242, 207, 99, 0.5);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.modal-enquiry__badge i { font-size: 10px; }
.modal-enquiry__visual-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.modal-enquiry__visual-tag {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.modal-enquiry__perks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal-enquiry__perks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.modal-enquiry__perks li i {
  color: var(--accent-light);
  font-size: 11px;
}

.modal-enquiry__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 36px);
  background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
  overflow: hidden;
}
.modal-enquiry__content-head {
  margin-bottom: 20px;
  padding-right: 36px;
}
#enquiryModalLabel {
  margin: 0 0 6px !important;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.modal-enquiry__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.modal-field {
  position: relative;
  margin-bottom: 12px;
}
.modal-field__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 18px;
  text-align: center;
  color: var(--accent-bright);
  font-size: 14px;
  pointer-events: none;
}
#modal-form input,
#modal-form select,
#modal-form textarea {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #fff;
  color: var(--text);
  margin-bottom: 0;
  padding: 0 14px 0 42px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#modal-form input::placeholder {
  color: #8b95a5;
}
#modal-form input:focus,
#modal-form select:focus,
#modal-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}
.modal-consent {
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(16, 24, 40, 0.03) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.modal-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}
.modal-consent__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.modal-consent__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 7px;
  border: 2px solid rgba(16, 24, 40, 0.18);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.06);
}
.modal-consent__check::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
.modal-consent__input:checked + .modal-consent__check {
  background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 100%);
  border-color: var(--accent-bright);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}
.modal-consent__input:checked + .modal-consent__check::after {
  transform: rotate(45deg) scale(1);
}
.modal-consent__input:focus + .modal-consent__check {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}
.modal-consent__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal-consent__title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.modal-consent__title i {
  color: var(--accent-bright);
  font-size: 13px;
}
.modal-consent__desc {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-muted);
}
.modal-consent__label:hover .modal-consent__check {
  border-color: rgba(212, 175, 55, 0.5);
}

.modal-submit-btn {
  justify-content: center;
  letter-spacing: 0.04em;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.modal-close-btn--light {
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
}
.modal-close-btn:hover {
  transform: rotate(90deg);
}
.modal-close-btn--light:hover {
  border-color: var(--accent);
  background: #fff;
  color: var(--primary);
}

@media (max-width: 767px) {
  .modal-enquiry-dialog {
    max-width: min(94vw, 480px);
  }
  .modal-enquiry__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .modal-enquiry__visual {
    min-height: 220px;
  }
  .modal-enquiry__visual-overlay {
    min-height: 220px;
    justify-content: center;
    padding: 20px;
  }
  .modal-enquiry__visual-title {
    font-size: 1.25rem;
  }
  .modal-enquiry__perks {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .modal-enquiry__content {
    overflow: hidden;
    padding: 22px 20px 24px;
  }
}

/* ========== FOOTER (creative) ========== */
.text-golden { color: var(--accent) !important; }

.footer-creative {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.88);
  margin-top: var(--section-gap);
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  overflow: hidden;
}

.footer-cta-band {
  background: linear-gradient(135deg, #000000 0%, #010914 50%, var(--primary) 100%);
   padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}
.footer-cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.footer-cta-btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.footer-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  transform: translateY(-3px);
}
.footer-cta-btn--solid {
  background: #fff;
  color: var(--primary) !important;
  border: 2px solid #fff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 10px 28px rgba(0, 0, 0, 0.15);
}
.footer-cta-btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06), 0 14px 32px rgba(0, 0, 0, 0.22);
  color: var(--primary) !important;
}

.footer-main {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand-logo {
  max-width: 180px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.25rem;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  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: #fff;
  font-size: 1.1rem;
  transition: background 0.25s, border-color 0.25s;
}
.footer-social a:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: #fff;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 1.25rem;
}
.footer-links,
.footer-contact-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}
.footer-contact-lines li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer-contact-lines i {
  color: var(--accent-bright);
  margin-top: 3px;
  width: 16px;
}
.footer-contact-lines a { color: inherit; }
.footer-contact-lines a:hover { color: var(--accent-light); }
.footer-rera-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  word-break: break-all;
}
.footer-rera-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-light) !important;
  font-size: 14px;
  margin-bottom: 0.75rem;
}
.footer-rera-link:hover { color: #fff !important; }
.footer-agent {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-legal {
  padding: 1.75rem 0 2rem;
  background: rgba(0, 0, 0, 0.25);
}
.footer-legal-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}
.footer-legal-top a {
  color: #fff;
  font-weight: 500;
}
.footer-legal-top a:hover { color: var(--accent-light); }
.footer-legal-sep { opacity: 0.35; }

.footer-disclaimer-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto 1.25rem;
}
.footer-partner-logo {
  max-width: 90px;
  flex-shrink: 0;
}
.footer-disclaimer-body p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 0.5rem;
}
.footer-read-more,
.moreless-button {
  background: none;
  border: none;
  color: var(--accent-light) !important;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ========== FIXED CTA ========== */
.cta_btn_mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary-dark);
  display: flex;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cta_btn_mobile a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.cta_btn_mobile a:last-child { border-right: none; background: #25d366; }
.cta_btn_mobile a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.cta_btn_mobile a:last-child:hover { background: #1fb855; }

.fixedIcons {
  position: fixed;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.fixedIcons:hover { transform: scale(1.08); }
.fixedIcons img { width: 32px; height: 32px; }
.fixedIcons.whatsapp {
  bottom: 80px;
  right: 20px;
  background: #25d366;
}
.fixedIcons.phone {
  bottom: 148px;
  right: 20px;
  background: var(--accent);
}
@media (min-width: 992px) {
  .fixedIcons.whatsapp { bottom: 24px; }
  .fixedIcons.phone { bottom: 92px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .content-abs { display: none; }
  .hero-video {
    height: 58vh;
    min-height: 360px;
    max-height: 520px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 26, 22, 0.35) 0%, rgba(6, 26, 22, 0.75) 100%);
  }
  .hero-nav-btn { width: 44px; height: 44px; }
  .g_top_line { min-height: 48px; }
}

@media (max-width: 991px) {
  .gallery-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery-bento-item--hero {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }
  .gallery-bento-item:nth-child(2) { grid-column: 1 / 4; grid-row: 3; }
  .gallery-bento-item:nth-child(3) { grid-column: 4 / 7; grid-row: 3; }
  .gallery-bento-item:nth-child(4) { grid-column: 1 / 3; grid-row: 4; }
  .gallery-bento-item:nth-child(5) { grid-column: 3 / 5; grid-row: 4; }
  .gallery-bento-item:nth-child(6) { grid-column: 5 / 7; grid-row: 4; }
  .gallery-bento-item--wide { grid-column: 1 / 7; grid-row: 5; }
  .gallery-bento-item:nth-child(7) { grid-column: 1 / 4; grid-row: 6; }
  .gallery-bento-item:nth-child(8) { grid-column: 4 / 7; grid-row: 6; }
  .gpl-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .overview-title {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .overview-title .left_side_content {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
  .overview-title .left_side_content h2 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }
  .overview-title .overview_para {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    text-align: left;
    line-height: 1.65;
  }
  .overview-title .bottm_g_line {
    display: block;
    position: static;
    width: 100%;
    max-width: 220px;
    height: 1px;
    margin: 2px 0 0;
    transform: none;
    left: auto;
    bottom: auto;
  }
  .overview-title .g_top_line {
    min-height: 48px;
    align-self: flex-start;
    display: none;
  }
  .ref-section .location_point h4 { font-size: 60px; }
  .ref-section .location_point .mint { right: 34%; bottom: 43%; }
  .overview-clean { grid-template-columns: 1fr; align-items: start; }
  .overview-clean__media {
    height: auto;
    min-height: 220px;
  }
  .overview-clean__media img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }
  .overview-clean__content { height: auto; }
  .overview-clean__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .overview-clean__stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; width: 100%; }
  .footer-cta-btn { flex: 1; justify-content: center; min-width: 140px; }
  .footer-disclaimer-card { flex-direction: column; align-items: center; text-align: center; }
  .gallery-creative-foot { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
  .nav-posi { padding: 0 12px; top: 10px; }
  .nav-posi .nav-inner { padding: 8px 14px; border-radius: 12px; }
  .logo_img { max-height: 44px; }
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    min-height: auto;
  }
  .gallery-bento-item--hero,
  .gallery-bento-item--wide,
  .gallery-bento-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 160px;
  }
  .gallery-bento-item--hero { grid-column: 1 / -1; min-height: 220px; }
  .gallery-bento-item--wide { grid-column: 1 / -1; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-col--brand { grid-column: 1 / -1; }
  .amenities-strip-wrap { --amenities-h: 280px; }
  .ref-section .abs_ameneties_title { padding: 9px 6px; font-size: 12px; }
  .ref-section .location_point { height: 100px; }
  .ref-section .location_point .loc { font-size: 12px; margin-top: 20px; }
  .visit-info-inner,
  .visit-form-inner { padding: 1.75rem 1.25rem; }
  body { padding-bottom: 52px; }
  .fixedIcons.phone { bottom: 140px; }
  .fixedIcons.whatsapp { bottom: 72px; }
}

@media (min-width: 992px) {
  .content-abs .hero-left { padding-right: 2rem; }
}

/* ========== SUB PAGES (privacy, thank you) ========== */
.sub-page-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 46, 38, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(6, 26, 22, 0.06);
}
.sub-page-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sub-page-header__logo {
  max-height: 48px;
  width: auto;
}
.sub-page-main {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(12px, 3vw, 48px) clamp(3rem, 6vw, 4rem);
}
.sub-page-panel {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--section-radius);
  border: var(--section-border);
  box-shadow: var(--section-shadow);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.sub-page-panel__head {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(201, 162, 39, 0.35);
}
.sub-page-panel__head h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sub-page-panel__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}
.sub-page-panel h3 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--primary);
}
.sub-page-panel p,
.sub-page-panel li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.sub-page-panel ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
}
.sub-page-panel li { margin-bottom: 0.45rem; }
.sub-page-panel a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sub-page-panel a:hover { color: var(--accent-bright); }

.thank-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(12px, 3vw, 48px);
}
.thank-card {
  width: 100%;
  max-width: 520px;
  text-align: center;
  background: linear-gradient(160deg, #fff 0%, #f4f9f6 100%);
  border-radius: 24px;
  border: var(--section-border);
  box-shadow: var(--section-shadow);
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.thank-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
}
.thank-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent-bright) 0%, var(--primary) 100%);
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 12px 28px rgba(45, 155, 110, 0.35);
}
.thank-card h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
}
.thank-card p {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.thank-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 1rem 0 1.5rem;
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: none !important;
}
.thank-card__phone:hover { color: var(--accent-bright) !important; }
.thank-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sub-page-footer {
  margin-top: auto;
}
.sub-page-footer .footer-legal {
  border-radius: var(--section-radius) var(--section-radius) 0 0;
}
