

/* Fonts loaded via <link> in HTML for faster first paint */

/* Font Awesome - ensure icons display */
.fa, .fa-solid, .fa-regular, .fa-brands, .fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
}

/* Scroll & entrance animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.animate-scale {
  transform: translateY(30px) scale(0.95);
}
.animate-on-scroll.animate-scale.in-view {
  transform: translateY(0) scale(1);
}

:root {
  /* Rohan Viti logo theme - grey */
  --color-primary: #5a5a5a;
  --color-primary-dark: #3a3a3a;
  --color-primary-light: #353333;
  --color-accent: #8a8a8a;
  --color-ridge-teal: #6a6a6a;
  /* Legacy aliases for compatibility */
  --color-forest-dark: #5a5a5a;
  --color-forest: #353333;
  --color-forest-light: #8a7f6e;
  --color-forest-accent: #8a8a8a;
  --color-cream: #f5f7f8;
  --color-warm-white: #f8fafb;
  --color-charcoal: #2a2622;
  --color-muted: #5c5650;
  --color-border: #e5e0d8;
  --color-gold: #c9a227;
  --color-gold-light: #e4c04a;
  --color-btn: linear-gradient(135deg, #d4af37 0%, #b8860b 52%, #8b6b16 100%);
  --color-btn-hover: linear-gradient(135deg, #e6c65a 0%, #c89b1e 48%, #9d7412 100%);
  --color-btn-accent: #c89b1e;
  /* Brand surfaces (warm charcoal — no blue/teal) */
  --hero-teal: #5a5348;
  --hero-teal-dark: #2c2825;
  --hero-teal-mid: #787068;
  --brand-rgb: 90, 83, 72;
  --brand-dark-rgb: 44, 40, 37;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 4px 24px rgba(90, 90, 90, 0.08);
  --shadow-elevated: 0 12px 48px rgba(90, 90, 90, 0.12);
  /* Typography scale - consistent across all pages */
  --heading-section: clamp(2.5rem, 6vw, 4.5rem);
  --heading-section-mobile: 24px;
  --subheading: clamp(1.25rem, 2.5vw, 2rem);
  --subheading-mobile: 20px;
  --para-size: 1rem;
  --para-size-small: 0.95rem;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin: 0 0 1em; color: var(--color-muted); font-size: var(--para-size); }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Page Wrapper */
.page-wrapper { position: relative; overflow-x: hidden; }

/* ==========================================================================
   Header - Pill style (reference: floating white bar)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  transition: var(--transition);
}
.header-pill-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

/* Logo - circular badge + two-line text */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.header-logo:hover { opacity: 0.9; }
.header-logo-badge {
  width: 158px;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.header-logo-img {
  height: auto;
  width: auto;
 
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.1rem;
}
.header-logo-line1 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 162, 39, 0.6);
}
.header-logo-line2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary-dark);
}

/* Right side header actions */
.header-right-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  background: white;
  border-radius: 100%;
}
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.header-call-btn:hover {
  color: var(--color-btn-accent);
}
.header-call-btn i {
  font-size: 0.9rem;
}
.header-call-text {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  white-space: nowrap;
}
.header-call-number {
  color: var(--color-charcoal) !important;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #c9a227;
}
.header-call-number:hover { color: var(--color-forest) !important; }
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: var(--color-btn);
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(90, 90, 90, 0.35);
  position: relative;
  overflow: hidden;
}
.header-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header-contact-btn:hover {
  background: var(--color-btn-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(90, 90, 90, 0.4);
}
.header-contact-btn:hover::before { opacity: 1; }

/* Expand/collapse menu button */
.menu-expand-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  transition: var(--transition);
}
.menu-expand-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
.menu-expand-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-forest-dark);
  transition: var(--transition);
}
.menu-expand-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-expand-toggle.active span:nth-child(2) { opacity: 0; }
.menu-expand-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open { overflow: hidden; }
body.lightbox-open { overflow: hidden; }

/* Expandable menu panel for all breakpoints */
.expandable-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 980;
  background: rgba(6, 20, 18, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.01);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}
.expandable-menu-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
.menu-overlay-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.menu-overlay-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.9);
}
.expandable-menu-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: min(420px, 88vw);
  max-width: 100%;
  padding: 0.5rem 0 0;
  gap: 0;
}
.expandable-menu-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem 1.15rem;
}
.expandable-menu-brand-img {
  width: clamp(145px, 18vw, 205px);
  max-width: 90%;
  height: auto;
  filter: brightness(0) invert(1);
}
.expandable-menu-links a {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 500;
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: center;
  letter-spacing: 0.01em;
  border-radius: 0;
  transition: color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
}
.expandable-menu-links a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.expandable-menu-links a:hover,
.expandable-menu-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.menu-call-link {
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  font-weight: 600 !important;
}
.menu-call-link:hover {
  background: rgba(255, 255, 255, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

/* Legacy mobile menu disabled */
.nav-toggle,
.mobile-nav-overlay {
  display: none !important;
}

/* Tablet/Mobile header adjustments */
@media (max-width: 1024px) {
  .header-pill-wrap { padding: 0.5rem 1rem 0.5rem 1.1rem; }
  .expandable-menu-panel { padding-top: 4.8rem; }
}

/* Mobile - compact layout */
@media (max-width: 576px) {
  .header { padding: 0.75rem 1rem; }
  .header-pill-wrap { padding: 0.45rem 0.6rem 0.45rem 0.8rem; }
  .menu-expand-toggle { width: 38px; height: 38px; }
  .expandable-menu-panel { padding-top: 4.7rem; }
  .menu-overlay-close {
    top: 0.95rem;
    right: 0.95rem;
    width: 40px;
    height: 40px;
  }
  .expandable-menu-brand-img { width: 160px; }
  .expandable-menu-links {
    width: min(360px, 90vw);
  }
  .expandable-menu-links a {
    padding: 0.78rem 0.9rem;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Hero Section - Carousel banner with offer card
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 0;
}

.hero-banner.hero-banner-video-style {
  display: block;
  min-height: clamp(520px, 88vh, 920px);
  background: url('../images/g1.jpg') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.hero-banner.hero-banner-carousel {
  position: relative;
  min-height: clamp(560px, 92vh, 960px);
  overflow: hidden;
  background: var(--hero-teal-dark);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Let vertical swipes scroll the page, not trap on the carousel */
  touch-action: pan-y;
}

.hero-carousel-track,
.hero-carousel-slide-group,
.hero-carousel-slide {
  touch-action: pan-y;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-carousel-slide-group {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s ease;
}

.hero-carousel-slide-group.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-carousel-slide-group .hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-carousel-slide-group.active .hero-carousel-slide {
  transform: scale(1);
}

/* Touch devices: skip Ken Burns — animated transform blocks page scroll on iOS */
@media (hover: none) and (pointer: coarse) {
  .hero-carousel-slide-group .hero-carousel-slide,
  .hero-carousel-slide-group.active .hero-carousel-slide {
    transform: none !important;
    transition: none !important;
  }
}



@media (min-width: 769px) {
   
  .hero-banner.hero-banner-carousel {
    display: block;
    min-height:clamp(650px, 119vh, 111vh);
  }

  .hero-carousel {
    position: absolute;
    inset: 0;
  }

  .hero-banner-content {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 0;
    padding: 6.5rem clamp(1rem, 4vw, 3.5rem) 3rem;
    pointer-events: none;
  }
}
 .d-banner{
            display: block;
        }
       .m-banner{
            display: none!important;
        }
@media (max-width: 768px) {
   .d-banner{
            display: none!important;
        }
      .m-banner{
            display: block!important;
        }
  .d-banner { display: none !important; }
   .m-banner { display: block !important; }

  .hero-banner.hero-banner-carousel {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    background: #f4f9fa;
  }

  .hero-carousel {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: clamp(600px, 180vh, 158vh);
    min-height: 0;
    z-index: 1;
  }

  .hero-carousel-track {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
  }

  .hero-carousel-slide-group,
  .hero-carousel-slide-group .hero-carousel-slide {
    min-height: 100%;
    height: 100%;
  }

  .hero-banner-content {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    z-index: 2;
    display: block;
    min-height: auto;
    padding: 1.25rem 1rem 1.75rem;
    pointer-events: auto;
  }

  /* Ken Burns zoom blocks touch-scroll on iOS during the 8s animation */
  .hero-carousel-slide-group .hero-carousel-slide,
  .hero-carousel-slide-group.active .hero-carousel-slide {
    transform: none;
    transition: none;
  }

  .hero-offer-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    box-shadow: 0 10px 36px rgba(var(--brand-dark-rgb), 0.12);
  }

  .hero-carousel-prev,
  .hero-carousel-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: #fff;
    color: var(--hero-teal-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .hero-carousel-prev:hover,
  .hero-carousel-next:hover {
    transform: translateY(-50%) scale(1.06);
    background: var(--hero-teal);
    color: #fff;
  }

  .hero-carousel-dots {
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .hero-dot {
    background: rgba(var(--brand-rgb), 0.35);
  }

  .hero-dot:hover,
  .hero-dot.active {
    background: var(--hero-teal);
  }

  .rera-badge {
    top: 5rem;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
  }
}

/* Offer card — desktop overlay only (do not override mobile pointer-events) */
@media (min-width: 769px) {
  .hero-banner-content {
    pointer-events: none;
  }
}

.hero-offer-card {
  pointer-events: auto;
  width: min(100%, 480px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  animation: heroCardIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-offer-tag {
  display: block;
  padding: 0.65rem 1.25rem;
  background: var(--hero-teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.hero-offer-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: center;
  margin: 1rem 1.25rem 0.35rem;
  line-height: 1.15;
}

.hero-offer-location {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 1.25rem 1rem;
}

.hero-offer-price {
  margin: 0 1rem 1rem;
  padding: 1rem 1.1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--hero-teal-dark) 0%, var(--hero-teal) 100%);
  color: #fff;
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.45);
}

.hero-offer-price-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.92;
  margin-bottom: 0.35rem;
}

.hero-offer-price-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-offer-asterisk {
  font-size: 0.65em;
  vertical-align: super;
}

.hero-offer-price-suffix {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.2rem;
  opacity: 0.9;
}

.hero-offer-highlight {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hero-teal-dark);
  margin: 0 1.25rem 1rem;
  line-height: 1.45;
}

.hero-offer-stats {
  list-style: none;
  margin: 0 1rem 1.15rem;
  padding: 0.75rem 1rem;
  background: #f0f4f5;
  border-radius: 10px;
}

.hero-offer-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.08);
}

.hero-offer-stats li:last-child {
  border-bottom: none;
}

.hero-offer-stats li span {
  color: var(--color-muted);
  font-weight: 500;
}

.hero-offer-stats li strong {
  color: var(--color-charcoal);
  font-weight: 700;
}

.hero-offer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 1rem 1.25rem;
  padding: 0.95rem 1.5rem;
  background: var(--color-btn);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  transition: var(--transition);
}

.hero-offer-cta:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.45);
  color: #fff !important;
}

.hero-offer-cta i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.hero-offer-cta:hover i {
  transform: translateX(4px);
}

/* Carousel controls */
.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  touch-action: manipulation;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--hero-teal-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: var(--hero-teal);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.hero-carousel-prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-carousel-next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-carousel-dots {
  position: absolute;
  bottom: clamp(1rem, 3vh, 2rem);
  left: clamp(1rem, 4vw, 3rem);
  z-index: 5;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot:hover {
  background: var(--hero-teal);
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--hero-teal);
}

.rera-badge {
  position: absolute;
  top: 5.25rem;
  left: clamp(1rem, 3vw, 2rem);
  right: auto;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.62rem;
  padding: 0.45rem 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: none;
  z-index: 6;
}

@media (max-width: 480px) {
  .hero-carousel {
           height: clamp(966px, 90vh, 91vh);
  }

  .hero-offer-title {
    font-size: 1.6rem;
  }

  .hero-carousel-prev,
  .hero-carousel-next {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .rera-badge {
    font-size: 0.55rem;
    max-width: calc(100% - 1.5rem);
    text-align: center;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.98);
  padding: 2.5rem 2.75rem;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(44, 44, 44, 0.12);
  backdrop-filter: blur(8px);
  margin: 0 auto;
}

/* Hero banner- full width, 6 feature grid */
.hero-theme .hero-uf-inner {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
.hero-uf-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 2.5rem;
  line-height: 1.3;
}
.hero-uf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.hero-uf-feature h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .m-banner{
        display: block
    }
    .d-banner{
        display: none
    }
  .hero-uf-features { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-uf-features { grid-template-columns: 1fr; }
}
.hero-inner .tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.hero-inner h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
}
.hero-inner .hero-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.hero-inner .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.hero-inner .hero-features li {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.hero-inner .hero-features li::before {
  content: '—';
  color: var(--color-forest);
  font-weight: 600;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-btn);
  color: #fff;
  border: 2px solid var(--color-btn-accent);
}
.btn-primary:hover {
  background: var(--color-btn-hover);
  border-color: var(--color-btn-accent);
  color: #fff;
}
/* Creative button - shine effect, icon animation */
.btn-creative {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(90, 90, 90, 0.35);
}
.btn-creative::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-creative:hover::after {
  left: 100%;
}
.btn-creative .btn-icon {
  transition: transform 0.3s ease;
}
.btn-creative:hover .btn-icon {
  transform: translateY(-2px) scale(1.1);
}
.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
}
.btn-outline:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: #fff;
}
/* Flashy NEW LAUNCH badge - top left of banner */
.new-launch-badge {
  position: absolute;
  top: 5.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.5), 0 0 0 2px rgba(255,255,255,0.4);
  z-index: 2;
  animation: newLaunchPulse 2s ease-in-out infinite;
}
.new-launch-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4a4a4a 0%, #1a1a1a 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  animation: newLaunchStar 1.5s ease-in-out infinite;
}
.new-launch-text {
  text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
@keyframes newLaunchPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(255, 255, 255, 0.5), 0 0 0 2px rgba(197, 181, 181, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(255, 255, 255, 0.7), 0 0 0 3px rgba(134, 125, 125, 0.6); }
}
@keyframes newLaunchStar {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(15deg); }
}

/* Mobile - disable parallax */
@media (max-width: 768px) {
  .hero-banner.hero-banner-video-style {
    min-height: 70vh;
    background-attachment: scroll;
  }
  .new-launch-badge { top: 1rem; left: 1rem; padding: 0.5rem 1rem; font-size: 0.65rem; letter-spacing: 0.15em; }
  .new-launch-star { width: 24px; height: 24px; font-size: 0.65rem; }
}

/* What you get - Creative amenities showcase */
.what-you-get-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(var(--brand-rgb), 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 100%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #e8f2f3 0%, #f4f9fa 45%, #fff 100%);
}

.what-you-get-header-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--hero-teal-dark) 0%,
    var(--hero-teal) 35%,
    var(--color-gold) 50%,
    var(--hero-teal) 65%,
    var(--hero-teal-dark) 100%
  );
  background-size: 200% 100%;
  animation: wygStripShift 8s ease-in-out infinite;
}

@keyframes wygStripShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.what-you-get-section::before,
.what-you-get-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.what-you-get-section::before {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18) 0%, transparent 70%);
  animation: wygBlobFloat 14s ease-in-out infinite;
}

.what-you-get-section::after {
  width: min(400px, 55vw);
  height: min(400px, 55vw);
  bottom: 5%;
  left: -10%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
  animation: wygBlobFloat 18s ease-in-out infinite reverse;
}

@keyframes wygBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 24px) scale(1.06); }
}

.what-you-get-inner {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.what-you-get-inner .section-heading-tag {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: var(--hero-teal);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.what-you-get-heading {
  text-align: center;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.what-you-get-subtitle {
  font-size: var(--subheading);
  text-align: center;
  color: var(--color-muted);
  margin: 0 auto 2.75rem;
  max-width: 62rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Segmented tab control */
.what-you-get-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 3rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 60px;
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  box-shadow:
    0 8px 32px rgba(var(--brand-dark-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.what-you-get-tab {
  position: relative;
  z-index: 1;
  padding: 0.85rem 1.75rem;
  background: transparent;
  border: none;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.35s ease, transform 0.25s ease;
  white-space: nowrap;
}

.what-you-get-tab:hover {
  color: var(--hero-teal-dark);
}

.what-you-get-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--hero-teal-dark) 0%, var(--hero-teal) 100%);
  box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.35);
}

.what-you-get-content-wrap {
  position: relative;
  padding: 0.5rem 0 1rem;
}

.what-you-get-cards-deco {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 95%);
  height: 420px;
  background:
    url(../images/bg.jpg) no-repeat center / 100% 100%,
    radial-gradient(ellipse at center, rgba(var(--brand-rgb), 0.06) 0%, transparent 70%);
  opacity: 0.35;
  filter: blur(0.5px) saturate(1.1);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 20%, transparent 75%);
}

.what-you-get-panels {
  position: relative;
  min-height: 440px;
  z-index: 1;
}

.what-you-get-panel {
  display: none;
}

.what-you-get-panel.active {
  display: block;
  animation: whatYouGetPanelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes whatYouGetPanelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.what-you-get-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1140px;
  margin: 0 auto 2rem;
  counter-reset: wyg-card;
}

.what-you-get-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(36px);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(var(--brand-rgb), 0.08),
    0 12px 40px rgba(var(--brand-dark-rgb), 0.12);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}

.what-you-get-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}

.what-you-get-card.animate-in:nth-child(1) { transition-delay: 0.06s; }
.what-you-get-card.animate-in:nth-child(2) { transition-delay: 0.14s; }
.what-you-get-card.animate-in:nth-child(3) { transition-delay: 0.22s; }

.what-you-get-card::before {
  counter-increment: wyg-card;
  content: counter(wyg-card, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  color: var(--hero-teal-dark);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.what-you-get-card::after {
  content: 'View';
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-btn-accent);
  border-radius: 50px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.what-you-get-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 2px var(--hero-teal),
    0 24px 56px rgba(var(--brand-rgb), 0.22);
}

.what-you-get-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.what-you-get-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  overflow: hidden;
}

.what-you-get-card-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hero-teal), var(--color-gold), var(--hero-teal));
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-you-get-card:hover .what-you-get-card-img-wrap::before {
  transform: scaleX(1);
}

.what-you-get-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--brand-dark-rgb), 0) 40%,
    rgba(var(--brand-dark-rgb), 0.75) 88%,
    rgba(0, 45, 48, 0.95) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.what-you-get-card:hover .what-you-get-card-img-wrap::after {
  background: linear-gradient(
    180deg,
    rgba(var(--brand-dark-rgb), 0.05) 25%,
    rgba(var(--brand-dark-rgb), 0.82) 100%
  );
}

.relative {
  position: relative;
}

.what-you-get-card-curve {
  display: none;
}

.what-you-get-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-you-get-card:hover .what-you-get-card-img-wrap img {
  transform: scale(1.08);
}

.what-you-get-card-btn {
  position: absolute;
  bottom: 4.5rem;
  right: 1rem;
  top: auto;
  left: auto;
  transform: none;
  width: 46px;
  height: 46px;
  z-index: 4;
  background: #fff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-teal-dark);
  font-size: 1rem;
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    color 0.35s ease;
}

.what-you-get-card:hover .what-you-get-card-btn {
  transform: scale(1.08) rotate(-45deg);
  background: var(--color-btn-accent);
  color: #fff;
}

.what-you-get-card h4 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  margin: 0;
  padding: 1.35rem 4.25rem 1.35rem 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: #fff;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.25;
  background: transparent;
}

.what-you-get-card h4::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 0.5rem;
  border-radius: 2px;
  background: var(--color-gold);
  opacity: 1;
  transition: width 0.35s ease;
}

.what-you-get-card:hover h4::before {
  width: 48px;
}

.what-you-get-link {
  display: block;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--hero-teal);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.what-you-get-link:hover {
  color: var(--hero-teal-dark);
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .what-you-get-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .what-you-get-tabs {
    flex-direction: column;
    width: min(100%, 320px);
    border-radius: 20px;
    padding: 0.4rem;
  }
  .what-you-get-tab {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  .what-you-get-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .what-you-get-card-img-wrap {
    aspect-ratio: 16 / 11;
    min-height: 240px;
  }
  .what-you-get-card::after {
    opacity: 1;
    transform: translateY(0);
  }
  .what-you-get-card-btn {
    bottom: 4.25rem;
  }
  .what-you-get-heading {
    font-size: var(--heading-section-mobile);
  }
  .what-you-get-subtitle {
    font-size: var(--subheading-mobile);
  }
  .what-you-get-cards {
    gap: 1.5rem;
  }
  .what-you-get-cards-deco {
    height: 280px;
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-you-get-header-strip,
  .what-you-get-section::before,
  .what-you-get-section::after {
    animation: none;
  }
  .what-you-get-card,
  .what-you-get-card.animate-in {
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
  }
}

/* Pricing — comparison cards */
.pricing-section.pricing-theme {
  padding: 0;
  background: #fff;
}

.pricing-shell {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(180deg, #f8fcfc 0%, #fff 55%, #f4f9fa 100%);
}

.pricing-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.pricing-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pricing-header .section-heading-tag {
  color: var(--hero-teal);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0;
  line-height: 1.08;
}

.pricing-headline-accent {
  color: var(--color-gold);
}

.pricing-tagline {
  margin: 0.75rem auto 0;
  max-width: 62rem;
  font-size: var(--subheading);
  color: var(--color-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  box-shadow: 0 10px 32px rgba(var(--brand-dark-rgb), 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
  overflow: visible;
}

/* WhatsApp — top-right corner with pulse (legacy pricing card style) */
.pricing-card-wa {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}
.pricing-card-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  opacity: 0.35;
  animation: pricingCardWaPulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
@keyframes pricingCardWaPulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.2); opacity: 0.1; }
}
.pricing-card-wa-inner {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  font-size: 1.35rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.pricing-card-wa:hover {
  color: #fff;
}
.pricing-card-wa:hover .pricing-card-wa-inner {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.pricing-card-wa:hover .pricing-card-wa-pulse {
  animation: none;
  opacity: 0;
}
.pricing-card:nth-child(1) .pricing-card-wa-pulse { animation-delay: 0s; }
.pricing-card:nth-child(2) .pricing-card-wa-pulse { animation-delay: 0.35s; }
.pricing-card:nth-child(3) .pricing-card-wa-pulse { animation-delay: 0.7s; }
@media (prefers-reduced-motion: reduce) {
  .pricing-card-wa-pulse { animation: none; opacity: 0.25; }
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--brand-rgb), 0.28);
  box-shadow: 0 20px 48px rgba(var(--brand-rgb), 0.14);
}

.pricing-card--featured {
  border: 1px solid var(--hero-teal);
  background: linear-gradient(180deg, #fff 0%, #f0f8f9 100%);
  box-shadow: 0 16px 48px rgba(var(--brand-rgb), 0.15);
  transform: scale(1.06);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-card-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.9rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #e4b84a 100%);
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  padding-right: 3.25rem;
  border-bottom: 1px dashed rgba(var(--brand-rgb), 0.2);
}

.pricing-card-type {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--hero-teal-dark);
}

.pricing-card-area {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pricing-card-area i {
  color: var(--hero-teal);
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0 0 0.35rem;
  line-height: 1;
}

.pricing-card-price small {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--hero-teal);
}

.pricing-card-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin: 0;
}

.pricing-card-perks {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.pricing-card-perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  margin-bottom: 0.45rem;
}

.pricing-card-perks li i {
  color: var(--hero-teal);
  font-size: 0.75rem;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--brand-rgb), 0.12);
}

.pricing-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
}

.pricing-action-btn--primary {
  background: var(--color-btn);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

.pricing-action-btn--primary:hover {
  background: var(--color-btn-hover);
  color: #fff !important;
  transform: translateY(-2px);
}

.pricing-action-btn--outline {
  background: #fff;
  color: var(--hero-teal-dark) !important;
  border: 2px solid var(--hero-teal);
}

.pricing-action-btn--outline:hover {
  background: var(--hero-teal);
  color: #fff !important;
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  .pricing-headline {
    font-size: var(--heading-section-mobile);
  }

  .pricing-tagline {
    font-size: var(--subheading-mobile);
  }

  .pricing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-action-btn {
    width: 100%;
  }

  .section-headline {
    font-size: var(--heading-section-mobile);
  }

  .section-heading-location .section-subtitle {
    font-size: var(--subheading-mobile);
  }
}

/* ==========================================================================
   Section Common - Reference: container-fluid, full-width sections
   ========================================================================== */
.container-fluid {
  width: 100%;
  /* padding-left: 2rem;
  padding-right: 2rem; */
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .container-fluid { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 576px) {
  .container-fluid { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 380px) {
  .container-fluid { padding-left: 0.75rem; padding-right: 0.75rem; }
}
.section {
  padding: 5rem 0;
  width: 100%;
  max-width: none;
}
.section > .container-fluid {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .section { padding: 4rem 0; }
}
@media (max-width: 576px) {
  .section { padding: 3rem 0; }
}
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading-location {
  margin-bottom: 2rem;
}
.section-heading-tag {
 /* display: inline-block; */
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-btn-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Two-tone section titles (Floor Plans style) */
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}
.section-headline-accent {
  color: var(--color-gold);
}
.section-headline::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 1rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--hero-teal), var(--color-gold));
}
.what-you-get-inner .section-headline::after,
.overview-header .section-headline::after,
.pricing-header .section-headline::after,
.lifestyle-head .section-headline::after,
.floorplan-header .section-headline::after,
.gallery-header .section-headline::after,
.loc-head .section-headline::after,
.completion-banner-inner .section-headline::after,
.footer-cta-section .section-headline::after {
  margin-left: auto;
  margin-right: auto;
}
.makers-aside .section-headline::after,
.contact-aside .section-headline::after {
  margin-left: 0;
  margin-right: auto;
}
.floorplan-header .section-headline::after,
.gallery-header .section-headline::after,
.loc-head .section-headline::after,
.completion-banner-inner .section-headline::after,
.contact-aside .section-headline::after,
.footer-cta-section .section-headline::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), var(--color-gold));
}
.what-you-get-inner .section-headline,
.overview-header .section-headline,
.pricing-header .section-headline,
.lifestyle-head .section-headline,
.makers-aside .section-headline {
  color: var(--hero-teal-dark);
}
.floorplan-header .section-headline,
.gallery-header .section-headline,
.loc-head .section-headline,
.completion-banner-inner .section-headline,
.contact-aside .section-headline,
.footer-cta-section .section-headline {
  color: #fff;
}
@media (max-width: 991px) {
  .section-heading { margin-bottom: 3rem; }
}
@media (max-width: 576px) {
  .section-heading { margin-bottom: 2rem; }
}
.section-heading h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  font-size: var(--heading-section);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-heading h2:last-of-type { margin-bottom: 0; }
.section-heading .section-subtitle {
  font-size: var(--subheading);
  color: var(--color-muted);
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .section-heading h2,
  .projects-section .section-heading h2,
  .overview-Unique .section-heading h2,
  .amenities-expand .section-heading h2 { font-size: var(--heading-section-mobile); }
  .section-heading .section-subtitle { font-size: var(--subheading-mobile); }
}

/* ==========================================================================
   Overview - The Art of Measured Living 
   ========================================================================== */

.overview-Unique .section-heading h2 {
  margin-bottom: 0.15em;
  font-size: var(--heading-section);
}
.overview-grid-Unique {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.overview-card-Unique {
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.overview-card-Unique:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.overview-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-border);
}
.overview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-card-Unique h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.25rem 1.5rem 0.5rem;
  color: var(--color-charcoal);
  text-transform: none;
  letter-spacing: 0;
}
.overview-card-Unique p {
  font-size: 0.9rem;
  margin: 0 1.5rem 1.5rem;
  color: var(--color-muted);
  line-height: 1.6;
}
@media (max-width: 991px) {
  .overview-grid-Unique { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .overview-grid-Unique { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
  .overview-card-Unique h4 { margin: 1rem 1.25rem 0.4rem; font-size: 1rem; }
  .overview-card-Unique p { margin: 0 1.25rem 1.25rem; font-size: 0.875rem; }
}

/* Legacy overview (if used elsewhere) */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.overview-card {
  padding: 2rem;
  background: #fff;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Projects / Specification 
   ========================================================================== */
.projects-section {
  background: var(--color-cream);
  padding: 0;
}

/* Overview — split editorial layout */
.projects-section.projects-overview-theme {
  padding: 0;
  background: #eef5f6;
}

.overview-shell {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
}

.overview-shell::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.overview-shell::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: min(400px, 55vw);
  height: min(400px, 55vw);
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.overview-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.overview-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.overview-header .section-heading-tag {
  color: var(--hero-teal);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.overview-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-charcoal);
  margin: 0;
  letter-spacing: -0.02em;
}

.overview-headline-accent {
  color: var(--color-gold);
}

.overview-tagline {
  margin: 0.85rem auto 0;
  max-width: 62rem;
  font-size: var(--subheading);
  color: var(--color-muted);
  line-height: 1.5;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.overview-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overview-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  box-shadow:
    0 0 0 1px rgba(var(--brand-rgb), 0.12),
    0 24px 56px rgba(var(--brand-dark-rgb), 0.18);
}

.overview-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

.overview-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.overview-image-frame:hover img {
  transform: scale(1.05);
}

.overview-image-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: #fff;
  color: var(--hero-teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.overview-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.75rem 1.1rem;
  text-align: right;
  background: linear-gradient(135deg, var(--hero-teal-dark) 0%, var(--hero-teal) 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(var(--brand-dark-rgb), 0.35);
}

.overview-price-from {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.overview-price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.1;
}

.overview-stats-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.overview-stats-bar li {
  padding: 1rem 0.75rem;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  box-shadow: 0 8px 24px rgba(var(--brand-dark-rgb), 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-stats-bar li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.12);
}

.overview-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--hero-teal-dark);
  line-height: 1.2;
}

.overview-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.overview-content {
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  box-shadow: 0 16px 48px rgba(var(--brand-dark-rgb), 0.08);
}

.overview-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--hero-teal-dark);
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(var(--brand-rgb), 0.12);
}

.overview-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.overview-text p:last-child {
  margin-bottom: 0;
}

.overview-pills {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.overview-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hero-teal-dark);
  background: #f0f7f8;
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  border-radius: 50px;
}

.overview-pills li i {
  color: var(--hero-teal);
  font-size: 0.85rem;
}

.overview-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.05rem;
  /* padding-top: 1.5rem;
  border-top: 1px solid var(--color-border); */
}

.overview-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.85rem;
  background: var(--color-btn);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  transition: var(--transition);
}

.overview-cta-btn:hover {
  background: var(--color-btn-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.45);
}

.overview-cta-btn i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.overview-cta-btn:hover i {
  transform: translateX(4px);
}

.overview-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
  max-width: 16rem;
}

.overview-payment-highlight {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--hero-teal-dark) 0%, var(--hero-teal) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.25);
}

@media (max-width: 991px) {
  .overview-layout {
    grid-template-columns: 1fr;
  }

  .overview-image-frame {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .overview-content {
    order: 0;
  }
}

@media (max-width: 576px) {
  .overview-headline {
    font-size: var(--heading-section-mobile);
  }

  .overview-tagline {
    font-size: var(--subheading-mobile);
  }

  .overview-stats-bar {
    grid-template-columns: 1fr;
  }

  .overview-stats-bar li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 0.85rem 1rem;
  }

  .overview-stat-value,
  .overview-stat-label {
    display: inline;
    margin: 0;
  }

  .overview-stat-label {
    font-size: 0.75rem;
  }

  .overview-cta-btn {
    width: 100%;
    max-width: 320px;
  }

  .overview-note {
    max-width: none;
    text-align: center;
  }
}

.projects-section .section-heading h2 {
  margin-bottom: 0.15em;
  font-size: var(--heading-section);
}
.projects-section .section-subtitle {
  font-size: var(--subheading);
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}
.projects-block {
  margin: 0 auto;
}
.projects-block:last-child { margin-bottom: 0; }
.projects-block-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-forest);
  display: inline-block;
}
.project-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.project-card-content {
  padding: 2rem;
}
.project-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0 0 1.25rem;
}
.project-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
/* Unit Specifications card – no image */
.project-card-specs {
  display: flex;
  flex-direction: column;
}
.project-card-specs .project-card-content { padding: 0; }
.specs-intro-wrap {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F2ED 100%);
  border-bottom: 1px solid var(--color-border);
}
.specs-intro-wrap h4 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
}
.specs-intro-wrap .specs-tagline {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0 0 1rem !important;
  letter-spacing: 0.02em;
}
.specs-starting {
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0 !important;
}
.specs-starting span {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--color-forest);
  display: block;
  margin-top: 0.25rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.spec-card {
  padding: 1.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: var(--transition);
}
.spec-card:last-child { border-right: none; }
.spec-card:hover {
  background: #FAF8F5;
}
.spec-type {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
}
.spec-area {
  font-size: 0.95rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}
.spec-price {
  font-size: 1.7em;
  font-weight: 600;
  color: var(--color-forest);
  margin-top: 0.25rem;
}
.specs-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.specs-footer .card-note {
  margin: 0;
  font-size: 0.9rem;
}
.specs-footer .primary-btn {
  font-size: 0.95rem;
  padding: 1rem 1.85rem;
}
@media (max-width: 768px) {
  .specs-intro-wrap { padding: 1.5rem; }
  .specs-grid { grid-template-columns: 1fr; }
  .spec-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem;
  }
  .spec-card:last-child { border-bottom: none; }
  .specs-footer { flex-direction: column; align-items: stretch; text-align: center; padding: 1.5rem; }
}
.project-card table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.project-card th,
.project-card td {
  padding: 0.75rem 0;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.project-card th {
  font-weight: 600;
  color: var(--color-charcoal);
}
.project-card td {
  color: var(--color-muted);
}
.project-card .primary-btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.project-card .primary-btn:hover {
  background: var(--color-btn-hover);
  color: #fff;
}
.project-card .card-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: right;
  margin: 1rem 0 0;
}
@media (max-width: 991px) {
  .projects-block { margin-bottom: 2.5rem; }
}
@media (max-width: 576px) {
  .projects-block { margin-bottom: 2rem; }
  .projects-block-title { font-size: 1.25rem; margin-bottom: 1rem; }
  .specs-intro-wrap h4 { font-size: 1.4rem; }
  .spec-type { font-size: 1.2rem; }
  .spec-area { font-size: 0.9rem; }
  .spec-price { font-size: 1.1rem; }
}

/* Floor plans — tabbed viewer */
.plans-section.plans-floorplan-redesign {
  padding: 0;
  background: var(--hero-teal-dark);
}

.floorplan-shell {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(165deg, var(--hero-teal-dark) 0%, #3d3832 40%, #4a443c 100%);
  position: relative;
  overflow: hidden;
}

.floorplan-shell::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.floorplan-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.floorplan-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.floorplan-header .section-heading-tag {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.floorplan-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.08;
}

.floorplan-headline-accent {
  color: var(--color-gold);
}

.floorplan-tagline {
  margin: 0.75rem auto 0;
  max-width: 62rem;
  font-size: var(--subheading);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.floorplan-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.25rem;
}

.floorplan-tabs.plans-tabs-left {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.5rem;
  width: min(220px, 30%);
  flex-shrink: 0;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: visible;
  box-shadow: none;
}

.floorplan-tab.plan-tab {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  min-height: auto;
  padding: 0.85rem 1.15rem;
  border: none;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--transition);
}

.floorplan-tab.plan-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.floorplan-tab.plan-tab.active {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floorplan-tab .plan-tab-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.15rem;
}

.floorplan-tab .plan-tab-size {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.floorplan-tab.plan-tab.active .plan-tab-title {
  color: var(--hero-teal-dark);
  font-weight: 700;
}

.floorplan-tab.plan-tab.active .plan-tab-size {
  color: var(--color-muted);
}

.floorplan-viewer.plans-slider-right {
  flex: 1;
  padding: 0;
  min-width: 0;
}

.floorplan-viewer-frame {
  position: relative;
  min-height: clamp(320px, 50vh, 480px);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 28px 64px rgba(0, 0, 0, 0.35);
}

.plans-slider-panel {
  display: none;
  position: absolute;
  inset: 0;
  animation: floorplanFadeIn 0.45s ease forwards;
}

.plans-slider-panel.active {
  display: block;
}

@keyframes floorplanFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.floorplan-viewer-frame .plan-slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 50vh, 480px);
  padding: 1.5rem;
  background: #f4f8f9;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.floorplan-viewer-frame .plan-slide-inner img {
  width: 100%;
  max-width: 720px;
  height: auto;
  max-height: calc(100% - 3rem);
  object-fit: contain;
  display: block;
  filter: blur(6px);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.floorplan-viewer-frame .plan-slide-inner:hover img {
  filter: blur(4px);
  transform: scale(1.02);
}

.plan-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.65rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 10px 32px rgba(200, 155, 30, 0.45);
  transition: var(--transition);
  z-index: 2;
}

.plan-slide-inner:hover .plan-view-btn {
  background: var(--color-btn-hover);
  transform: translate(-50%, -50%) scale(1.04);
}

.floorplan-viewer-hint {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.floorplan-viewer-hint i {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .floorplan-layout {
    flex-direction: column;
  }

  .floorplan-tabs.plans-tabs-left {
    flex-direction: row;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .floorplan-tabs.plans-tabs-left::-webkit-scrollbar {
    display: none;
  }

  .floorplan-tab.plan-tab {
    flex: 0 0 auto;
    width: auto;
    min-width: 120px;
    text-align: center;
  }

  .floorplan-viewer-frame {
    min-height: 280px;
  }

  .floorplan-viewer-frame .plan-slide-inner,
  .floorplan-viewer-frame .plan-slide-inner img {
    min-height: 280px;
  }

  .plan-view-btn {
    font-size: 0.8rem;
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .floorplan-headline {
    font-size: var(--heading-section-mobile);
  }

  .floorplan-tagline {
    font-size: var(--subheading-mobile);
  }
}

/* Gallery — bento mosaic grid */
.gallery-section {
  padding: 0;
  background: var(--hero-teal-dark);
}

.gallery-shell {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(180deg, var(--hero-teal-dark) 0%, #3d3832 50%, var(--hero-teal) 100%);
  position: relative;
  overflow: hidden;
}

.gallery-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
}

.gallery-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.gallery-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery-header .section-heading-tag {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.08;
}

.gallery-headline-accent {
  color: var(--color-gold);
}

.gallery-tagline {
  margin: 0.75rem auto 0;
  max-width: 62rem;
  font-size: var(--subheading);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, 1fr);
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 140px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.gallery-item::after {
  content: '\f065';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--hero-teal-dark);
  font-size: 1.1rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 45, 48, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Bento cell spans */
.gallery-item:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: span 2;
  min-height: 280px;
}

.gallery-item:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-column: 8 / span 5;
  grid-row: span 1;
}

.gallery-item:nth-child(4) {
  grid-column: 1 / span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-column: 5 / span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(6) {
  grid-column: 9 / span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(7) {
  grid-column: 1 / span 6;
  grid-row: span 1;
}

.gallery-item:nth-child(8) {
  grid-column: 7 / span 6;
  grid-row: span 1;
}

@media (max-width: 991px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: 1 / -1 !important;
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .gallery-headline {
    font-size: var(--heading-section-mobile);
  }

  .gallery-tagline {
    font-size: var(--subheading-mobile);
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(1) {
    min-height: 260px;
  }
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(44, 40, 37, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox .lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  z-index: 10;
}

.gallery-lightbox .lightbox-close:hover {
  background: #fff;
  color: var(--hero-teal-dark);
}

.gallery-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  background: #fff;
  color: var(--hero-teal-dark);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  z-index: 10;
}

.gallery-lightbox .lightbox-prev:hover,
.gallery-lightbox .lightbox-next:hover {
  background: var(--color-gold);
  color: #1a1a1a;
}

.gallery-lightbox .lightbox-prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery-lightbox .lightbox-next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery-lightbox .lightbox-content {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  padding: 0.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox .lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

@media (max-width: 576px) {
  .gallery-lightbox .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox .lightbox-prev,
  .gallery-lightbox .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox .lightbox-content {
    max-width: 94vw;
  }
}

/* Location - matches site heading/subheading scale */
.section-heading-location .section-heading-tag {
  display: block;
}
.section-heading-location h2 {
  font-size: var(--heading-section);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}
.section-subtitle-creative {

  font-size: clamp(1.15rem, 2vw, 1.4rem);
 
  color: var(--color-charcoal);
  max-width: 640px;
  margin: 0.5rem auto 1rem;
  line-height: 1.5;
}
.section-heading-location .section-subtitle {
  font-size: var(--subheading);
  color: var(--color-muted);
  max-width: 700px;
  margin: 1rem auto 0.75rem;
}
.location-faq-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-forest);
  text-decoration: underline;
  margin-top: 0.5rem;
}
.location-faq-link:hover { color: var(--color-primary-dark); }

/* ==========================================================================
   Completion — centered banner with ring focal
   ========================================================================== */
.completion-section.section {
  padding: 0;
  margin: 0;
  background: transparent;
}
.completion-banner {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
    linear-gradient(145deg, #2c2825 0%, #3d3832 50%, #4a443c 100%);
  box-shadow: none;
  border: none;
}
.completion-banner-inner {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}
.completion-tag {
  color: var(--color-gold-light) !important;
  margin-bottom: 0.35rem;
}
.completion-banner-inner .section-headline {
  margin: 0 0 2rem;
}
.completion-ring-wrap {
  position: relative;
  width: min(220px, 52vw);
  height: min(220px, 52vw);
  margin: 0 auto 1.75rem;
}
.completion-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.45);
  box-shadow:
    0 0 0 12px rgba(201, 162, 39, 0.08),
    0 0 0 24px rgba(255, 255, 255, 0.04);
  animation: completionRingPulse 4s ease-in-out infinite;
}
@keyframes completionRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}
.completion-ring-core {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
.completion-pct {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 10vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold-light);
}
.completion-pct-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.completion-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.95);
}
.completion-facts {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
}
.completion-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.completion-facts i {
  color: var(--color-gold-light);
  font-size: 0.75rem;
}
.completion-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--color-btn);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.completion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.5);
  color: #fff;
}
.completion-note {
  margin: 1.25rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 576px) {
  .completion-facts {
    flex-direction: column;
    align-items: center;
  }
  .completion-btn { width: 100%; max-width: 320px; }
}

/* ==========================================================================
   Lifestyle — feature image + pill grid (single img load)
   ========================================================================== */
.lifestyle-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: linear-gradient(165deg, #faf8f5 0%, #fff 45%, #f3f0eb 100%);
}
.lifestyle-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.lifestyle-head .section-headline {
  margin: 0.25rem 0 0.75rem;
}
.lifestyle-lead {
  color: var(--color-muted);
  margin: 0.75rem auto 0;
  max-width: 62rem;
  font-size: var(--subheading);
  line-height: 1.55;
}
.lifestyle-shell {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.lifestyle-feature {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 50px rgba(var(--brand-dark-rgb), 0.18);
  border: 3px solid rgba(var(--brand-rgb), 0.2);
}
.lifestyle-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}
.lifestyle-feature img.is-swapping { opacity: 0.4; }
.lifestyle-feature-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 40, 44, 0.92));
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.lifestyle-feature-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  font-weight: 600;
}
.lifestyle-feature-cap strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: #fff;
  font-weight: 600;
}
.lifestyle-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.lifestyle-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 2px solid #e5e0d8;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.lifestyle-pill i {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--hero-teal);
  font-size: 0.95rem;
}
.lifestyle-pill:hover {
  border-color: var(--hero-teal);
  transform: translateY(-2px);
}
.lifestyle-pill.active {
  border-color: var(--hero-teal);
  background: linear-gradient(135deg, var(--hero-teal) 0%, var(--hero-teal-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--brand-dark-rgb), 0.25);
}
.lifestyle-pill.active i {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width: 991px) {
  .lifestyle-shell { grid-template-columns: 1fr; }
  .lifestyle-pills { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .lifestyle-pills { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-pill span { font-size: 0.8rem; }
}

/* ==========================================================================
   Location — lazy map + category tabs
   ========================================================================== */
.location-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--hero-teal-dark);
}
.loc-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: #fff;
}
.loc-head .section-heading-tag { color: var(--color-gold-light); }
.loc-head .section-headline {
  margin: 0.25rem 0 0.75rem;
}
.loc-lead {
  margin: 0.75rem auto 0;
  max-width: 62rem;
  font-size: var(--subheading);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.loc-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
.loc-map-card {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: var(--hero-teal-dark);
}
.loc-map-facade {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-teal-dark);
}
.loc-map-facade::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: url('../images/locations.webp') center/cover no-repeat;
  filter: blur(10px);
  transform: scale(1.06);
  z-index: 0;
}
.loc-map-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 37, 0.4);
  z-index: 1;
}
.loc-map-facade.is-loaded::before,
.loc-map-facade.is-loaded::after {
  display: none;
}
.loc-map-facade.is-loaded { min-height: 0; }
.loc-map-facade iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}
.loc-map-load {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.loc-map-load i { font-size: 2rem; color: var(--color-gold-light); }
.loc-map-load:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold-light);
}
.loc-address-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
}
.loc-address-strip > i { font-size: 1.25rem; color: var(--color-gold-light); }
.loc-address-strip strong { display: block; font-size: 1rem; }
.loc-address-strip span { opacity: 0.8; font-size: 0.85rem; }
.loc-directions {
  margin-left: auto;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--color-btn);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}
.loc-info-col {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.loc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.loc-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: none;
  border-radius: 999px;
  background: #f3f0eb;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.loc-tab i { font-size: 0.75rem; }
.loc-tab:hover { background: #ebe8e4; color: var(--hero-teal-dark); }
.loc-tab.active {
  background: var(--hero-teal);
  color: #fff;
}
.loc-panels { flex: 1; position: relative; }
.loc-panel { animation: fadeIn 0.3s ease; }
.loc-panel[hidden] { display: none !important; }
.loc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.loc-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #ebe8e4;
}
.loc-list li:last-child { border-bottom: none; }
.loc-name {
  font-weight: 600;
  color: var(--color-charcoal);
  font-size: 0.92rem;
  line-height: 1.4;
}
.loc-meta {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hero-teal);
  white-space: nowrap;
}
@media (max-width: 991px) {
  .loc-shell { grid-template-columns: 1fr; }
  .loc-map-facade { min-height: 280px; }
  .loc-map-facade iframe { height: 280px; }
}

/* ==========================================================================
   The Makers — editorial split
   ========================================================================== */
.makers-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #fff;
}
.makers-shell {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.makers-aside .section-headline {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.makers-tagline {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}
.makers-stats {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.makers-stats li {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f2ed 0%, #ebe6df 100%);
  border-left: 4px solid var(--hero-teal);
}
.makers-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--hero-teal-dark);
  line-height: 1;
}
.makers-stats span {
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 500;
}
.makers-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hero-teal) 0%, var(--hero-teal-dark) 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}
.makers-badge i { font-size: 1.25rem; color: var(--color-gold-light); }
.makers-story {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 20px;
  background: #faf9f7;
  border: 1px solid #e5e0d8;
  box-shadow: 0 12px 40px rgba(var(--brand-dark-rgb), 0.06);
}
.makers-story h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--hero-teal-dark);
  margin: 0 0 1.25rem;
}
.makers-story p {
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0 0 1rem;
  text-align: justify;
}
.makers-story p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .makers-shell { grid-template-columns: 1fr; }
  .makers-stats { flex-direction: row; flex-wrap: wrap; }
  .makers-stats li { flex: 1 1 calc(33% - 0.5rem); min-width: 100px; }
}

/* ==========================================================================
   Contact — teal split + white form card
   ========================================================================== */
.contact-section {
  padding: 0;
  background: linear-gradient(160deg, var(--hero-teal-dark) 0%, var(--hero-teal) 55%, #4a443c 100%);
}
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 520px;
}
.contact-aside {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-tag-light { color: var(--color-gold-light) !important; }
.contact-aside .section-headline {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
}
.contact-lead {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  max-width: 380px;
}
.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.contact-quick-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-quick-btn i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
}
.contact-quick-btn span { display: flex; flex-direction: column; line-height: 1.3; }
.contact-quick-btn small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-quick-call {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-quick-call i { background: var(--color-btn); }
.contact-quick-wa {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.45);
}
.contact-quick-wa i { background: #25d366; }
.contact-quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.contact-address {
  display: flex;
  gap: 0.75rem;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.contact-address > i { color: var(--color-gold-light); margin-top: 0.2rem; }
.contact-form-card {
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px 0 0 24px;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--hero-teal-dark);
  margin: 0 0 1.5rem;
}
.form-group-invitation { margin-bottom: 1rem; }
.form-error-msg {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: #fde8e8;
  border: 1px solid #e57373;
  border-radius: 8px;
  color: #c62828;
  font-size: 0.9rem;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form .form-select-invitation {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #faf9f7;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-select-invitation {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form input:focus,
.contact-form .form-select-invitation:focus {
  outline: none;
  border-color: var(--hero-teal);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.15);
  background: #fff;
}
.contact-form-disc {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.75rem;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.contact-form-disc input { margin-top: 0.15rem; flex-shrink: 0; }
.contact-form-disc label { cursor: pointer; }
.contact-form .contact-submit-invitation {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 14px;
  background: var(--color-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}
.contact-form .contact-submit-invitation:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
@media (max-width: 991px) {
  .contact-shell { grid-template-columns: 1fr; }
  .contact-form-card { border-radius: 24px 24px 0 0; margin-top: -1rem; }
  .contact-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .contact-aside { padding: 2.5rem 1.25rem 1.5rem; }
  .contact-form-card { padding: 1.75rem 1.25rem 2.5rem; }
}

/* ==========================================================================
   Footer CTA + Footer - Reference style (exact match)
   ========================================================================== */
.footer-cta-wrapper {
  /*background: #000000;*/
  background-size: cover;
       background-image: linear-gradient(rgb(0 0 0 / 81%), rgb(0 0 0 / 60%)), url(../images/g8.webp);
  padding-bottom: 0;
}
.footer-cta-section {
  padding: 5rem 0 4rem;
  text-align: center;
}
.footer-cta-title {
  font-size: var(--heading-section);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.75rem;
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--color-btn);
  color: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.footer-cta-btn:hover {
  background: #fff;
  color: var(--color-btn-accent);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.footer-cta-btn-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.footer-cta-btn:hover .footer-cta-btn-icon {
  background: #000000;
  color: #ffffff;
  border-color: var(--color-btn-accent);

}
.footer-cta-btn:hover .footer-cta-btn-icon {
  transform: scale(1.05);
}
/* Footer legal disclaimer */
.site-disclaimer {
  margin-top: 1.75rem;
  padding: 0;
  background: linear-gradient(180deg, #f3f0eb 0%, #ebe6df 100%);
  border-top: 1px solid #e5e0d8;
  border-radius: 0 0 40px 40px;
}
.site-disclaimer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 3vw, 2rem);
}
.site-disclaimer-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.2);
}
.site-disclaimer-logo {
  flex-shrink: 0;
  display: block;
  width: auto;
  max-width: 130px;
  max-height: 52px;
  height: auto;
  object-fit: contain;
  padding: 0.5rem 0.65rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  box-shadow: 0 4px 14px rgba(var(--brand-dark-rgb), 0.06);
}
.site-disclaimer-head-text {
  flex: 1;
  min-width: 0;
}
.site-disclaimer-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hero-teal-dark);
  margin-bottom: 0.2rem;
}
.site-disclaimer-badge {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.site-disclaimer-body {
  height: auto;

  padding-right: 0.35rem;
 
}
.site-disclaimer-body::-webkit-scrollbar {
  width: 5px;
}
.site-disclaimer-body::-webkit-scrollbar-thumb {
  background: rgba(var(--brand-rgb), 0.35);
  border-radius: 4px;
}
.site-disclaimer-points {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.site-disclaimer-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hero-teal-dark);
}
.site-disclaimer-points i {
  color: var(--color-btn-accent);
  font-size: 0.65rem;
}
.site-disclaimer-body p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--color-muted);
  text-align: justify;
}
@media (max-width: 576px) {
  .site-disclaimer {
    border-radius: 0 0 24px 24px;
  }
  .site-disclaimer-head {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .site-disclaimer-head-text {
    flex: 1 1 100%;
  }
  .site-disclaimer-logo {
    max-width: 140px;
  }
  .site-disclaimer-points {
    flex-direction: column;
    gap: 0.35rem;
  }
  .site-disclaimer-body {
    max-height: 160px;
  }
}

.footer {
  background: linear-gradient(180deg, #f3f0eb 0%, #ebe6df 100%);
  border-top: 1px solid #e5e0d8;
  color: #333;
  padding: 2.5rem 0 0;
  border-radius: 40px 40px 0 0;
  position: relative;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}
.footer-uf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-uf-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
}
.footer-uf-logo-badge {
  width: 130px;
 
  height: auto;
  /* border-radius: 50%;
  background: #1a3d2e; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-uf-logo {
  width: auto;
  height: auto;
  /* object-fit: contain;
  filter: brightness(0) invert(1) sepia(0.4) saturate(3) hue-rotate(5deg); */
}
.footer-uf-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-uf-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #2c2c2c;
}
.footer-uf-name {
  font-size: 1rem;
  font-weight: 700;
  color: #5a5a5a;
}
.footer-uf-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  order: 3;
  margin-left: auto;
}
.footer-uf-links a {
  color: #5a5a5a;
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-uf-links a:hover { color: var(--color-forest); }
.footer-sep {
  margin: 0 0.5rem;
  color: #999;
  font-size: 0.8rem;
}
.footer-rera {
  flex: 1 1 auto;
  order: 2;
  text-align: center;
  margin: 0 1rem;
  padding: 0 0.75rem;
  min-width: 0;
}
.footer-rera p {
  margin: 0 0 0.35rem !important;
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.footer-rera p:last-child { margin-bottom: 0 !important; }
.footer-rera a {
  color: var(--color-primary);
  text-decoration: none;
}
.footer-rera a:hover { text-decoration: underline; }
.footer-copyright {
  flex: 1 1 100%;
  order: 4;
  text-align: center;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.footer-copyright p {
  margin: 0 !important;
  font-size: 0.8rem;
  color: #5a5a5a;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-uf-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-uf-brand { justify-content: center; }
  .footer-uf-links { justify-content: center; margin-left: 0; }
  .footer-rera { margin: 0; padding: 0.5rem 0; }
  .footer-copyright { text-align: center; }
}
@media (max-width: 576px) {
  .footer-cta-section { padding: 4rem 0 3rem; }
  .footer { padding: 2rem 0 1.5rem; border-radius: 28px 28px 0 0; }
  .site-disclaimer-inner { padding: 1rem 1rem 1.25rem; }
  .site-disclaimer-body p { font-size: 0.72rem; }
  .footer-uf-links { font-size: 0.8rem; justify-content: center; }
  .footer-sep { margin: 0 0.35rem; }
  .footer-rera p { font-size: 0.7rem; }
}

/* ==========================================================================
   Mobile Typography - Override all headings/subheadings (must come last)
   ========================================================================== */
@media (max-width: 991px) {
  .what-you-get-heading { font-size: var(--heading-section-mobile); }
  .what-you-get-subtitle { font-size: var(--subheading-mobile); }
}
@media (max-width: 768px) {
  .section-heading h2,
  .projects-section .section-heading h2,
  .overview-Unique .section-heading h2,
  .section-headline,
  .footer-cta-title { font-size: 24px !important; }
  .section-heading .section-subtitle,
  .lifestyle-lead,
  .loc-lead,
  .pricing-tagline,
  .overview-tagline,
  .floorplan-tagline,
  .completion-tagline,
  .what-you-get-subtitle { font-size: 20px !important; }
}

/* ==========================================================================
   Floating CTA & Scroll Top
   ========================================================================== */
/* Chat with us - Beautiful floating WhatsApp button */
.chat-with-us-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.chat-with-us-float:hover {
  transform: translateY(-4px) scale(1.02);
  color: #fff;
}
.chat-with-us-float:hover .chat-with-us-inner {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}
.chat-with-us-float:hover .chat-with-us-pulse {
  animation: none;
  opacity: 0;
}
.chat-with-us-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  opacity: 0.3;
  animation: chatPulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
@keyframes chatPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.15; }
}
.chat-with-us-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.08);
  border: 2px solid rgba(255,255,255,0.25);
  transition: box-shadow 0.3s ease;
}
.chat-with-us-inner i {
  font-size: 1.35rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.chat-with-us-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .chat-with-us-float { bottom: 5.5rem; right: 1rem; }
  .chat-with-us-text { display: none; }
  .chat-with-us-inner { padding: 0.9rem 1rem; border-radius: 50%; }
  .chat-with-us-inner i { font-size: 1.5rem; }
  .chat-with-us-pulse { inset: -3px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .chat-with-us-float { bottom: 5.25rem; right: 0.75rem; }
}

/* Legacy whatsapp-float (for other uses) */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.whatsapp-float img { width: 36px; height: 36px; }
.whatsapp-float span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-btn);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  bottom: 2rem;
}
.scroll-top:hover { background: var(--color-btn-hover); }

/* Fixed Footer CTA (Mobile) */
.fixed-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  z-index: 997;
}
.fixed-footer-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.fixed-footer-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.fixed-footer-cta a:hover {
  background: var(--color-btn);
  color: #fff;
  border-color: var(--color-btn-accent);
}
.fixed-footer-cta a img { width: 20px; height: 20px; }
@media (max-width: 768px) {
  .fixed-footer-cta {
    display: block;
    padding: 1rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,244,239,0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -1px 0 var(--color-border), 0 -8px 32px rgba(44,44,44,0.08);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .fixed-footer-cta::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    opacity: 0.8;
  }
  .fixed-footer-cta .cta-buttons {
    gap: 0.625rem;
    max-width: 100%;
    padding: 0 0.25rem;
  }
  .fixed-footer-cta a {
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
  }
  .fixed-footer-cta a.fixed-footer-enquire {
    background: var(--color-charcoal);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(44, 44, 44, 0.25);
  }
  .fixed-footer-cta a.fixed-footer-enquire:hover {
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.35);
  }
  .fixed-footer-cta a.whatsapp-cta-btn {
    background: #25d366;
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }
  .fixed-footer-cta a.whatsapp-cta-btn:hover {
    background: #1da851;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  .fixed-footer-cta a.whatsapp-cta-btn img {
    filter: brightness(0) invert(1);
  }
  .fixed-footer-cta a.fixed-footer-call {
    background: var(--color-btn);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(200, 155, 30, 0.35);
  }
  .fixed-footer-cta a.fixed-footer-call:hover {
    background: var(--color-btn-hover);
    box-shadow: 0 6px 20px rgba(200, 155, 30, 0.4);
  }
  .fixed-footer-cta a.fixed-footer-call img {
    filter: brightness(0) invert(1);
  }
  .fixed-footer-cta a:active {
    transform: scale(0.97);
  }
  .fixed-footer-cta a img {
    width: 22px;
    height: 22px;
  }
  .whatsapp-float { bottom: 5.5rem; right: 1rem; padding: 0.6rem 1rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float img { width: 32px; height: 32px; }
  .scroll-top { bottom: 5.5rem; left: 1rem; width: 44px; height: 44px; }
  .scroll-top.visible { bottom: 5.5rem; }
}
@media (max-width: 576px) {
  .fixed-footer-cta { padding: 0.625rem 0.75rem calc(0.625rem + env(safe-area-inset-bottom)); }
  .fixed-footer-cta .cta-buttons { gap: 0.5rem; }
  .fixed-footer-cta a { padding: 0.9rem 1rem; font-size: 0.75rem; }
  .whatsapp-float { bottom: 5.25rem; right: 0.75rem; }
  .scroll-top { left: 0.75rem; bottom: 5.25rem; }
  .scroll-top.visible { bottom: 5.25rem; }
}

/* ==========================================================================
   Enquiry Modal
   ========================================================================== */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.enquiry-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.enquiry-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.enquiry-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}
.enquiry-modal.is-open .enquiry-modal-dialog {
  transform: translateY(0) scale(1);
}
.enquiry-modal-inner.contact-form-card {
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: none;
}
.enquiry-modal .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.enquiry-modal .contact-form-row .form-group-invitation {
  margin-bottom: 0;
}
.enquiry-modal-lead {
  margin: -0.75rem 0 1.25rem;
  font-size: 0.92rem;
  color: #666;
  line-height: 1.5;
}
.enquiry-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-charcoal);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
}
.enquiry-modal-close:hover {
  background: #fff;
  transform: scale(1.05);
}
body.enquiry-modal-open {
  overflow: hidden;
}
#enquiry-modal .contact-form input[type="text"],
#enquiry-modal .contact-form input[type="email"],
#enquiry-modal .contact-form input[type="tel"],
#enquiry-modal .contact-form .form-select-invitation {
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .enquiry-modal {
    align-items: flex-end;
    padding: 0;
  }
  .enquiry-modal-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }
  .enquiry-modal-inner.contact-form-card {
    border-radius: 20px 20px 0 0;
  }
  .enquiry-modal .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Modal Overrides
   ========================================================================== */
.modal-content {
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-elevated);
}
.modal-header {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
}
.modal-header .close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
}
.modal-header .close:hover { opacity: 1; }
.modal-body { padding: 1.5rem; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

/* Preloader */
#preloader-wrap {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  touch-action: pan-y;
  pointer-events: auto;
}
#preloader-wrap.is-hidden {
  pointer-events: none;
  visibility: hidden;
}
#preloader-wrap .preloader-inner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-forest);
  border-radius: 50%;
  animation: preloader-spin 0.8s linear infinite;
}
@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* Primary button in content */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(90, 90, 90, 0.3);
  position: relative;
  overflow: hidden;
}
.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.primary-btn:hover {
  background: var(--color-btn-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90, 90, 90, 0.4);
}
.primary-btn:hover::before { left: 100%; }
.hero-banner img {
    animation:heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.04);
  }
  100%{
    transform:scale(1);
  }
}