/*
 * ATS HomeKraft â€“ Landing Page Stylesheet
 * Clean build: only styles used in current HTML
 */

/* Myriad Pro — loaded from local OTF files */
@font-face {
  font-family: "Bodoni";
  src: url("../assets/fonts/BodoniSevITCBoldW08-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "Myriad Pro";
  src: url("../assets/fonts/BodoniSevITCBoldW08-Regular.ttf") format("opentype");
  
  font-style: normal;
  font-display: swap;
} */


/* ================================
   RESET & BASE
   ================================ */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #111111;
  --primary: #c4a24a;
  --primary-dark: #8a6a18;
  --primary-gradient: linear-gradient(180deg, #d4a843 0%, #9b7b20 100%);
  --gold: #c4a24a;

  /* Font Variables */
  --font-bodoni: "Bodoni", serif;
  --font-display: "Cormorant", Georgia, serif;
  --font-body: "Myriad Pro", "Myriad", sans-serif;
  --font-gotham: "Montserrat", "Gill Sans MT", sans-serif;
  --font-neoris: "Inter", "Segoe UI", sans-serif;
  --font-neue: "DM Sans", "Segoe UI", sans-serif;
  --font-cormorant: "Cormorant", Georgia, serif;

  --radius-full: 100px;
}
html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
  /* Keep anchor targets clear of the fixed header */
  scroll-padding-top: 110px;
}
/* Anchor targets stop below the fixed header instead of under it */
section[id] {
  scroll-margin-top: 110px;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
  
  }
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-bodoni) !important;
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  background: #000 !important;
  color: #ddd0b5 !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;
}
body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: var(--gold);
}

body.loading {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
 
  color: var(--gold, #c4a24a) !important;
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}
li {
  list-style: none;
  text-decoration: none;
}
a {
  text-decoration: none !important;
}
p {
  margin-bottom: 0rem !important;
}
.compensate-for-scrollbar {
  margin-right: 0px;
}
.invalid-feedback {
  margin-top: 4px;
  font-size: 0.78rem;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#kenytChatBubble.style1 {
  bottom: 8% !important;
}

/* ================================
   BUTTON SPINNER (form submit)
   ================================ */
.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-loading .btn-text {
  display: none !important;
}
.btn-loading .btn-spinner {
  display: inline-block;
}

.btn-of-submit.btn-loading,
.jkb-submit.btn-loading,
.connect-submit.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.85;
}

/* ================================
   NAVBAR  —  Figma 146:2512
   ================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

header.dropped {
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#navbar {
  padding: 0.65rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 100px;
  position: relative;
}

/* Left — logo */
.nav-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nav-logo .logo {
  height: 70px;
  width: auto;
  display: block;
}

/* Center — nav links (desktop) */
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.nav-link {
  
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  text-transform: capitalize;
  white-space: nowrap;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  display: block;
}
.nav-link:hover {
  color: #00652e;
}

/* Right — CTA + mobile hamburger */
.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Contact Us button — Gotham Medium per Figma */
.nav-contact-btn {
  background: #00652e;
  color: #fff !important;
  padding: 12px 29px;
  
  font-size: 16px;
  
  letter-spacing: 0.8px;
  line-height: 26px;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-block;
  border-radius: 0;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}
.nav-contact-btn:hover {
  background: #004d22;
  color: #fff !important;
}

/* Mobile hamburger button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nav-menu-icon {
  width: 24px;
  height: auto;
  display: block;
}

/* ================================
   OFFCANVAS MENU  â€“  Full-screen green
   ================================ */

/* Full-screen override */
#offcanvasExample.offcanvas-start {
  width: 100vw !important;
  max-width: 100vw !important;
  background: #00652e !important;
  border: none !important;
}

/* Header */
.offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem 3rem;
}

.offcanvas-logo .mob-logo {
  height: 55px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

/* Custom close button */
.offcanvas-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
    opacity 0.25s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.25s ease,
    transform 0.3s ease;
  opacity: 0.85;
}
.offcanvas-close-btn:hover {
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Body */
.offcanvas-body {
  padding: 1rem 3rem 3rem;
  height: 100%;
  overflow-y: auto;
  background: transparent !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* Nav list */
.offcanvas-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
}

/* Each nav item â€” starts hidden, animates in on open */
.offcanvas-nav {
  opacity: 0;
  -webkit-transform: translateX(-40px);
  -ms-transform: translateX(-40px);
  transform: translateX(-40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.offcanvas-nav:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Staggered slide-in when offcanvas is shown */
#offcanvasExample.show .offcanvas-nav {
  -webkit-animation: menuItemSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
  animation: menuItemSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#offcanvasExample.show .offcanvas-nav:nth-child(1) {
  -webkit-animation-delay: 0.08s;
  animation-delay: 0.08s;
}
#offcanvasExample.show .offcanvas-nav:nth-child(2) {
  -webkit-animation-delay: 0.16s;
  animation-delay: 0.16s;
}
#offcanvasExample.show .offcanvas-nav:nth-child(3) {
  -webkit-animation-delay: 0.24s;
  animation-delay: 0.24s;
}
#offcanvasExample.show .offcanvas-nav:nth-child(4) {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
}
#offcanvasExample.show .offcanvas-nav:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#offcanvasExample.show .offcanvas-nav:nth-child(6) {
  -webkit-animation-delay: 0.48s;
  animation-delay: 0.48s;
}
#offcanvasExample.show .offcanvas-nav:nth-child(7) {
  -webkit-animation-delay: 0.56s;
  animation-delay: 0.56s;
}

@-webkit-keyframes menuItemSlideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes menuItemSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Link */
.offcanvas-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.1rem 0;
  color: #fff !important;
  
  font-size: 2.2rem;
  
  letter-spacing: 0.02em;
  text-decoration: none !important;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  -webkit-transition:
    color 0.3s ease,
    -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated underline that grows from left */
.offcanvas-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd109;
  -webkit-transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  -o-transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Arrow icon â€” slides in on hover */
.offcanvas-link-arrow {
  opacity: 0;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffd109;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Hover state */
.offcanvas-link:hover {
  color: #ffd109 !important;
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
}
.offcanvas-link:hover::before {
  width: 100%;
}
.offcanvas-link:hover .offcanvas-link-arrow {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 767px) {
  .offcanvas-header {
    padding: 1.5rem 1.5rem;
  }
  .offcanvas-body {
    padding: 0.5rem 1.5rem 2rem;
  }
  .offcanvas-link {
    font-size: 1.6rem;
    padding: 0.9rem 0;
  }
  .offcanvas-logo .mob-logo {
    height: 42px;
  }
}

/* ================================
   HERO BANNER  â€“  Figma Design
   ================================ */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  /* Banner creatives are edge-to-edge artwork — size the stage to the
     artwork's own ratio (web 1600x720) so nothing gets cropped away. */
  height: auto;
  aspect-ratio: 1600 / 720;
  margin-top: 80px;
}

/* Bootstrap Carousel fills full height */
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

/* Keep controls / indicators above the gradient overlay (z-index 1)
   and the slide content (z-index 2) so they stay clickable */
.hero-carousel-control,
.hero-carousel-indicators {
  z-index: 4;
}

.hero-carousel-control {
  width: 6%;
  opacity: 0.85;
}
.hero-carousel-control:hover {
  opacity: 1;
}

.hero-carousel-indicators {
  /* the creatives end on a white USP/BOOK NOW strip — keep the dots above it,
     over the artwork, so they never sit on that text */
  margin-bottom: 0;
  bottom: 23%;
}
.hero-carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
.hero-carousel-indicators [data-bs-target].active {
  background-color: #ffffff;
}

/* Each slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay: transparent top â†’ dark bottom */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Slide text: bottom-left */
.hero-slide-content {
  position: absolute;
  bottom: 110px;
  left: 100px;
  max-width: 778px;
  z-index: 2;
}

.hero-introducing {
  display: block;
  
  font-style: italic;

  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.hero-title {
 
  
  font-size: 56px;
  line-height: 1.17;
  color: #fff !important;
}

/* Bottom bar: arrows (left) + enquire btn (right) */
.hero-bottom {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 100px;
  z-index: 3;
}

.hero-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.hero-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.hero-nav-btn svg {
  display: block;
}

/* Enquire Now â€“ yellow CTA */
.hero-enquire-btn {
  background: #ffd109;
  color: #231f20;
  border: none;
  padding: 12px 29px;
 
  font-size: 16px;
 
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 26px;
  white-space: nowrap;
  -webkit-transition:
    background 0.3s ease,
    -webkit-transform 0.2s ease;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}
.hero-enquire-btn:hover {
  background: #e8c300;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

/* ================================
   SECTION: RECLAIM — Forest-inspired intro (directly below hero banner)
   Dark, immersive band with an Unsplash forest backdrop + gradient overlay,
   gold accents on beige/white text to match the site theme.
   ================================ */
.section-reclaim {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 70px 100px;
  background-color: #0a0906;
  background-image: url("../assets/images/banner/w1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Dual-gradient overlay: darker at top/bottom + left, for text legibility */
.reclaim-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(8, 6, 3, 0.72) 0%,
      rgba(8, 6, 3, 0.4) 45%,
      rgba(8, 6, 3, 0.78) 100%
    ),
    linear-gradient(
      90deg,
      rgba(8, 6, 3, 0.78) 0%,
      rgba(8, 6, 3, 0.2) 55%,
      rgba(8, 6, 3, 0) 100%
    );
}

.reclaim-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.reclaim-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

/* Left: narrative */
.reclaim-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 22px;
}
.reclaim-eyebrow {
  display: inline-block;
  
  font-style: italic;

  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 14px;
}
.reclaim-heading {
 
  font-size: 54px !important;
  
  line-height: 1.08 !important;
  color: #ffffff !important;
  margin-bottom: 26px !important;
}
.reclaim-heading em {

  font-style: italic;
  color: var(--gold) !important;
}
.reclaim-desc {
 
  font-size: 18px;
  line-height: 34px;
  color: #e9e1cf !important;
  max-width: 560px;
  margin-bottom: 26px !important;
}
.reclaim-tagline {
  position: relative;
  
  font-style: italic;

  font-size: 25px;
  line-height: 1.4;
  color: var(--gold) !important;
  padding-left: 22px;
}
.reclaim-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 2px;
  background: var(--gold);
}

/* Right: glassy highlights card */
.reclaim-card {
  background: rgba(8, 15, 10, 0.55);
  border: 1px solid rgba(196, 162, 74, 0.28);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  padding: 46px 48px;
  border-radius: 2px;
}
.reclaim-highlights {
  display: flex;
  flex-direction: column;
}
.reclaim-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.reclaim-highlight:first-child {
  padding-top: 0;
}
.reclaim-highlight:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.reclaim-hl-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(196, 162, 74, 0.4);
  background: rgba(196, 162, 74, 0.08);
  color: var(--gold);
  font-size: 18px;
}
.reclaim-hl-text {
 
  font-size: 17px;
  line-height: 27px;
  color: #e9e1cf;
  padding-top: 9px;
}
.reclaim-hl-text strong {
  color: var(--gold);
  
}

.reclaim-footnote {
  margin-top: 44px !important;
  
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(233, 225, 207, 0.6);
}

/* ================================
   SECTION: GROWTH CORRIDOR / INVESTMENT
   Light, data-driven band — centered header + green KPI stat cards on white,
   matching the Overview / About / Product sections.
   ================================ */
.section-growth {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 100px;
  background: #f3f3f1;
}

.growth-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
}

/* Centered header */
.growth-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 58px;
}
.growth-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.growth-eyebrow {
  
  font-style: italic;

  font-size: 24px;
  line-height: 1.3;
  color: #00652e;
  margin-bottom: 22px;
}
.growth-heading {
 
  font-size: 54px !important;
  
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 12px !important;
}
.growth-heading em {

  font-style: italic;
  color: #00652e !important;
}
.growth-desc {
 
  font-size: 17px;
  line-height: 32px;
  color: #646464 !important;
  max-width: 860px;
  margin: 0 auto;
}

/* KPI stat cards */
.growth-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.growth-stat {
  position: relative;
  padding: 42px 30px;
  border: 1px solid #e6e5e0;
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transition:
    -webkit-transform 0.35s ease;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.growth-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00652e;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}
.growth-stat:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  border-color: #cfe3d5;
  background: #fff;
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.growth-stat:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.growth-stat-num {
  
  font-size: 60px;
 
  line-height: 1;
  color: #00652e;
  white-space: nowrap;
}
.growth-stat-unit {
  font-size: 26px;
  
}
.growth-stat-line {
  width: 44px;
  height: 2px;
  background: rgba(0, 101, 46, 0.35);
  margin: 20px 0;
}
.growth-stat-label {
 
  font-size: 16px;
  line-height: 26px;
  color: #646464;
  max-width: 240px;
}

/* CTA — "Explore the Location" */
.growth-cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
}
.growth-cta {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
    background-color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.growth-cta:hover,
.growth-cta:focus-visible {
  background-color: #004d23;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ================================
   OWL CAROUSEL THEMING — Growth stats + Infrastructure cards (mobile only).
   Green circular nav buttons + green dots to match the section accents.
   ================================ */
.growth-stats .owl-nav,
.infra-grid .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.growth-stats .owl-nav button.owl-prev,
.growth-stats .owl-nav button.owl-next,
.infra-grid .owl-nav button.owl-prev,
.infra-grid .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 50% !important;
  border: 1px solid #00652e !important;
  background: #fff !important;
  color: #00652e !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}
.growth-stats .owl-nav button.owl-prev:hover,
.growth-stats .owl-nav button.owl-next:hover,
.infra-grid .owl-nav button.owl-prev:hover,
.infra-grid .owl-nav button.owl-next:hover {
  background: #00652e !important;
  color: #fff !important;
}
.growth-stats .owl-nav button.disabled,
.infra-grid .owl-nav button.disabled {
  opacity: 0.35;
}
.growth-stats .owl-nav button svg,
.infra-grid .owl-nav button svg {
  display: block;
}
.growth-stats .owl-dots,
.infra-grid .owl-dots {
  text-align: center;
  margin-top: 14px;
}
.growth-stats .owl-dots .owl-dot span,
.infra-grid .owl-dots .owl-dot span {
  display: block;
  width: 9px;
  height: 9px;
  margin: 4px;
  border-radius: 50%;
  background: #cfcabb;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.growth-stats .owl-dots .owl-dot.active span,
.growth-stats .owl-dots .owl-dot:hover span,
.infra-grid .owl-dots .owl-dot.active span,
.infra-grid .owl-dots .owl-dot:hover span {
  background: #00652e;
}

/* ================================
   SECTION: INFRASTRUCTURE / NEIGHBOURHOOD
   Warm-ivory band with landmark image cards — distinct from the light-gray
   Growth section above and the white Overview section below.
   ================================ */
.section-infra {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 100px;
  background: #f7f4ec;
}
.infra-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

/* Centered header */
.infra-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 56px;
}
.infra-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.infra-heading {
 
  font-size: 54px !important;
  
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 18px !important;
}
.infra-heading em {

  font-style: italic;
  color: #00652e !important;
}
.infra-subtitle {
 
  font-size: 17px;
  line-height: 30px;
  color: #646464 !important;
  max-width: 760px;
  margin: 0 auto;
}

/* Card grid */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.infra-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ece9e0;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition:
    -webkit-transform 0.35s ease;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.infra-card:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
}
.infra-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.infra-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.55s ease;
  transition: transform 0.55s ease;
}
.infra-card:hover .infra-card-img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.infra-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 101, 46, 0.92);
  color: #fff;
  
  font-size: 11px;
  
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}
.infra-card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 22px 22px 26px;
}
.infra-card-title {
 
  font-size: 20px !important;
  
  line-height: 1.2 !important;
  color: #231f20 !important;
  margin-bottom: 14px !important;
}
.infra-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 9px;
}
.infra-card-list li {
  position: relative;
  padding-left: 18px;
 
  font-size: 14.5px;
  line-height: 22px;
  color: #5c5c5c;
}
.infra-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ================================
   SECTION: FEATURED LIFESTYLE / VIDEO
   White band between the ivory Infrastructure section above and the white
   Overview section below — content left, YouTube poster right.
   ================================ */
.section-lifestyle {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 100px;
  background: #fff;
}
.lifestyle-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 80px;
}
.lifestyle-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 640px;
}
.lifestyle-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.lifestyle-heading {
  font-size: 54px !important;
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 22px !important;
}
.lifestyle-heading em {
  font-style: italic;
  color: #00652e !important;
}
.lifestyle-desc {
  font-size: 17px;
  line-height: 30px;
  color: #646464 !important;
  margin-bottom: 34px;
}
.lifestyle-btn {
  margin-top: 0;
}

/* Video poster — source is 1080x1920 (portrait), shown at its native ratio */
.lifestyle-media {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 380px;
}
.lifestyle-poster {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #231f20;
  line-height: 0;
  cursor: pointer;
}
.lifestyle-video-el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 1920;
  -o-object-fit: cover;
  object-fit: cover;
  background: #231f20;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.55s ease;
  transition: transform 0.55s ease;
}
.lifestyle-poster:hover .lifestyle-video-el {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.lifestyle-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #231f20;
  font-size: 30px;
  padding-left: 4px;
  line-height: 1;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  -webkit-transition: background 0.3s ease;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.lifestyle-poster:hover .lifestyle-play {
  -webkit-transform: translate(-50%, -50%) scale(1.08);
  -ms-transform: translate(-50%, -50%) scale(1.08);
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

/* ================================
   FIXED CTA BUTTONS  (desktop)
   ================================ */
@-webkit-keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #9b7b20;
    box-shadow: 0 0 0 0 #9b7b20;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes pulse-effect {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #9b7b20;
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.enquire-div {
  position: fixed;
  bottom: -50px;
  right: -50px;
  z-index: 99;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.enquire-div.show {
  bottom: 3vw;
  right: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.btn-enquire {
  color: var(--black);
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--black);
  padding: 0.6rem 1.6rem;
  background: #ffd109;
  border-radius: 10px;
  font-size: 1.15rem;
 
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
}
.btn-enquire .icon {
  width: 25px;
  height: 25px;
}
.btn-enquire .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.download-div {
  position: fixed;
  bottom: -50px;
  left: -50px;
  z-index: 99;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.download-div.show {
  bottom: 3vw;
  left: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.download-btn {
  color: var(--black);
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  background: #ffd109;
  border: 1px solid var(--black);
  font-size: 1rem;
  white-space: nowrap;
 
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
}
.download-btn .icon {
  width: 25px;
  height: 25px;
}
.download-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

/* ================================
   MOBILE FIXED CTA BAR
   ================================ */
.mobile-fixed-button {
  display: none;
}
.btn-fixed {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--black);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  padding: 0.55rem 1.15rem;
}

/* ================================
   CUSTOM CONTAINER
   ================================ */
.custom-container {
  width: 90vw;
  max-width: 100%;
  margin: 0 auto;
}

/* ================================
   SECTION: OVERVIEW  —  Figma 154:3488
   ================================ */
.section-overview {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Three-column flex row — left image | content | right image */
.ov-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  padding: 80px 100px 60px 100px;
}

/* Left tall photo — 596/1920 = 31.04% */
.ov-img-left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 31.04%;
  position: relative;
}
.ov-img-left-img {
  width: 100%;
  height: 620px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.ov-img-caption {
  position: absolute;
  bottom: 22px;
  left: 10px;
  font-size: 10px;
  color: #fff;
  text-transform: capitalize;
  white-space: nowrap;
  pointer-events: none;
  

}

/* Center content — flex grows to fill space between images */
.ov-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 33px 40px 0 106px;
}
.ov-butterfly {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.ov-brand-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 26px;
}
.ov-introducing {
  
  font-size: 28px;

  font-style: italic;
  color: #646464;
  margin-bottom: 8px;
}
.ov-heading {
 
  font-size: 56px !important;
  
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 28px !important;
}
.ov-desc {
 
  font-size: 16px;
  color: #646464;
  line-height: 32px;
  max-width: 600px;
  margin-bottom: 40px;
}

.ov-btn {
  background-color: #00652e;
  color: #fff !important;
  padding: 12px 29px;
 
  font-size: 18px;

  border: none;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  width: max-content;
  line-height: 26px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 0;
}

/* Top-right small photo — 225/1920 = 11.72% */
.ov-img-right {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 11.72%;
  z-index: 1;
  position: relative;
}
.ov-img-right-img {
  width: 100%;
  height: 285px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* Bottom-right architectural sketch — 690×385px, 50% opacity, gradient fades */
.ov-sketch {
  position: absolute;
  right: 0;
  bottom: 214px;
  width: 690px;
  height: 385px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ov-sketch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 50.311%,
    rgb(255, 255, 255) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.ov-sketch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 50.311%,
    rgb(255, 255, 255) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.ov-sketch-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* Overview stats strip */
.overview-stats-strip {
  padding: 40px 0 32px;
  position: relative;
  z-index: 1;
}

.overview-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.overview-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview-stat-num {
 
  font-size: 48px;
  line-height: 56px;
  color: #00652e;

  white-space: nowrap;
}
.overview-stat-unit {
  font-size: 30px;
  line-height: 56px;
  color: #00652e;
 
}
.overview-stat-label {
 
  font-size: 18px;
  line-height: 28px;
  color: #646464;

  max-width: 180px;
  text-align: center;
}

/* ================================
   SECTION: ABOUT / DWARKA CORRIDOR  –  Figma node 154:3525
   ================================ */
.section-about {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}
.about-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: calc(100% - 80px);
  margin: 0 auto;
  text-align: center;
  padding-bottom: 74px;
}
.about-icon {
  position: absolute;
  top: -17px;
  left: -6px;
  width: 40px;
  height: 26px;
  display: block;
}
.about-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 60px;
}
.about-heading {
 
  font-size: 56px !important;
  
  line-height: 1.2 !important;
  color: #231f20 !important;
  margin: 0 !important;
}
.about-heading em {

  font-style: italic;
}
.about-subtitle {
 
  font-size: 16px;
  color: #646464;
  line-height: 30px;
  max-width: 755px;
  text-align: center;
  margin: 0;
}
.about-bullets-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
  justify-content: center;
  text-align: left;
}
.about-bullets-col {
  flex: 1;
  max-width: 650px;
  list-style: disc;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-bullets-col li {
 
  font-size: 16px;
  line-height: 30px;
  color: #646464;

  list-style-type: disc !important;
}
.about-bullets-divider {
  width: 1px;
  min-height: 192px;
  background: #d0d0d0;
  flex-shrink: 0;
  align-self: stretch;
}
.about-bg {
  position: relative;
  width: 100%;
  height: 835px;
  overflow: hidden;
  z-index: 0;
  margin: -12rem 0 0 0;
}
.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ================================
   SECTION: LOCATION  –  Figma Design
   ================================ */
/* ===================================================
   LOCATION SECTION
   Pixel-matched to Figma node 7:2206  (1920 × 1015 px)
   =================================================== */
.section-location {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Centered header – Figma: centered, top 60 px, max-width 844 px, height 150 px, gap 35 px to map */
.location-top {
  max-width: 844px;
  margin: 0 auto 35px;
  text-align: center;
}
.location-heading-wrap {
  position: relative;
  display: inline-block;
}
.loc-butterfly {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -45%);
  height: 26px;
  width: auto;
  pointer-events: none;
}
.location-heading {
 
  font-size: 70px !important;
  
  line-height: 1.12 !important;
  color: #231f20 !important;
  text-align: center;
}
.location-heading em {

  font-style: italic;
}

/* ===== PROJECT WALKTHROUGH SECTION ===== */
.section-walkthrough {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
.walkthrough-top {
  max-width: 844px;
  margin: 0 auto 35px;
  text-align: center;
}
.walkthrough-heading-wrap {
  position: relative;
  display: inline-block;
}
.walk-butterfly {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -45%);
  height: 26px;
  width: auto;
  pointer-events: none;
}
.walkthrough-heading {
 
  font-size: 70px !important;
  
  line-height: 1.12 !important;
  color: #231f20 !important;
  text-align: center;
}
.walkthrough-heading em {

  font-style: italic;
}
.walkthrough-sub {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}
.walkthrough-media {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.walkthrough-poster {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.walkthrough-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.walkthrough-poster:hover .walkthrough-img {
  transform: scale(1.03);
}
.walkthrough-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #231f20;
  font-size: 30px;
  padding-left: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.walkthrough-poster:hover .walkthrough-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

/* Two-column body
   Figma: map column occupies 921 px (left edge → 921 px),
          content panel starts at 921 px, top offset 72 px below map.
   921 / 1920 = 47.97 %  ·  112 / 1920 = 5.83 % */
.location-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 770px;
}

/* Left: map column */
.location-map-col {
  width: 47.97%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-left: 5.83%;
  position: relative;
  z-index: 2;
}
.location-map-wrap {
  position: relative;
  display: block;
  max-width: 669px;
}
.location-map-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

/* Location pin dots */
.map-dot {
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-dot-sm {
  width: 14px;
  height: 14px;
  background: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}
.map-dot-lg {
  width: 28px;
  height: 28px;
  background: #c4a24a;
  -webkit-box-shadow: 0 2px 10px rgba(196, 162, 74, 0.6);
  box-shadow: 0 2px 10px rgba(196, 162, 74, 0.6);
}

/* Right: content panel
   Takes remaining width; offset 72 px from map top (317 − 245 = 72) */
.location-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-top: 72px;
}

/* Tab navigation */
.loc-tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 39px;
  column-gap: 39px;
  row-gap: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.loc-tabs-nav::-webkit-scrollbar {
  display: none;
}

.loc-tab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
 
  font-size: 20px;
  color: #5f5f5f;
  white-space: nowrap;
  -webkit-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
  line-height: 1.4;
}
.loc-tab.active {
  color: #00652e;
  font-size: 25px;
}
.loc-tab:hover {
  color: #00652e;
}

.loc-tab-line {
  border: none;
  border-top: 1px solid #d0d0d0;
  margin: 15px 0 50px;
}

/* Swiper – let partial next slide peek through */
.loc-swiper {
  overflow: visible !important;
}

/* Card */
.loc-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.loc-card-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  height: 333px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.loc-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.loc-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.loc-card-title {
 
  font-size: 25px !important;
  
  line-height: 35px !important;
  color: #231f20 !important;
  text-transform: capitalize;
}

.loc-card-desc {
 
  font-size: 16px;
  color: #646464 !important;
  line-height: 30px;
}

/* ================================
   PRODUCT SECTION  (Figma 7:2287 — 1920 × 2065 px)
   ================================ */
.section-product {
  background: #fff;
  overflow: hidden;
  position: relative;
  padding-bottom: 80px;
}

/* Standalone section divider between Location and Product */
.section-divider-wrap {
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
}
.section-divider-img {
  display: block;
  width: 1582px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Product section top/bottom dividers (same SVG) */
.product-divider {
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.product-divider-img {
  display: block;
  width: 1582px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.product-divider--bottom {
  margin-top: 10px;
}

/* Watermark */
.product-stats-bg {
  position: absolute;
  bottom: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: 1343px;
  height: 700px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.product-stats-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(253, 253, 253) 0%,
    rgba(255, 255, 255, 0) 22.5%,
    rgba(255, 255, 255, 0) 81%,
    rgb(253, 253, 253) 100%
  );
  pointer-events: none;
}
.product-stats-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  display: block;
}

/* Line-art building watermark */
.product-lineart {
  position: absolute;
  top: 40px;
  left: calc(50% + 0.5px);
  transform: translateX(-50%);
  width: 1343px;
  height: 700px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.product-lineart-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.product-lineart-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(253, 253, 253) 0%,
    rgba(255, 255, 255, 0) 22.484%,
    rgba(255, 255, 255, 0) 81.169%,
    rgb(253, 253, 253) 100%
  );
  pointer-events: none;
}
.product-lineart-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Coming Soon label */
.product-soon-wrap {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.product-soon-inner {
  position: relative;
  display: inline-block;
}
.product-soon-butterfly {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-55%, -80%);
  width: 36px;
  height: auto;
  pointer-events: none;
}
.product-soon-label {
  display: block;
  
  font-size: 40px;
 
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* Quote */
.product-quote-wrap {
  position: relative;
  z-index: 1;
  padding: 30px 60px 70px;
  text-align: center;
}
.product-quote {
  max-width: 1521px;
  margin: 0 auto;
 
  font-size: 48px !important;
 
  line-height: 68px !important;
  color: #231f20 !important;
  text-align: center;
  border: none;
  padding: 0;
}
.product-quote em {
  
  font-style: italic;
}

/* Stats */
.product-stats-wrap {
  position: relative;
  z-index: 1;
}
.product-stats-row {
  display: flex;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.product-stats-row--3col {
  max-width: 1112px;
  margin-top: 40px;
}
.product-stat {
  flex: 1;
  min-width: 0;
  padding: 41px 24px 41px 92px;
  align-self: stretch;
}
.product-stat-vdivider {
  flex-shrink: 0;
  width: 1px;
  height: 192px;
  background: #d0d0d0;
}
.product-stat-num {
  color: #231f20;
  /* Scales with the column so "3.5 & 4.5 Bed" stays on one line down to 992px */
  font-size: clamp(32px, 5vw - 18px, 62px);
  line-height: 57px;
  margin-bottom: 0px;
  min-height: 60px;
  display: flex;
  align-items: center;
  /* One line keeps every number box the same height, so the labels align */
  white-space: nowrap;
}
.stat-num-main {
  font-size: 0.8em;
}
.stat-num-unit {
  font-size: 0.43em;
}
.stat-bhk-img {
  height: 58px;
  width: auto;
  display: block;
  align-self: flex-start;
}
.product-stat-label {

  font-size: 18px;
  color: #646464;
  line-height: 28px;

}

/* ================================
   FAQ SECTION
   ================================ */
.section-faq {
  /* Light grey — the gallery above and the contact CTA below are both the
     soft green #eef3ef, so this separates from each of them. */
  background: #f3f3f1;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Top-right decorative image */
.faq-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 743px;
  height: 415px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.faq-deco-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.faq-deco-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
/* Fades the line-art into the section — must track .section-faq's colour,
   or the gradient leaves a pale halo over the tint. */
.faq-deco-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    -webkit-linear-gradient(
      right,
      rgba(243, 243, 241, 0) 0%,
      rgba(243, 243, 241, 0) 50%,
      rgb(243, 243, 241) 100%
    ),
    -webkit-linear-gradient(
      top,
      rgba(243, 243, 241, 0) 0%,
      rgba(243, 243, 241, 0) 50%,
      rgb(243, 243, 241) 100%
    );
  background:
    linear-gradient(
      270deg,
      rgba(243, 243, 241, 0) 0%,
      rgba(243, 243, 241, 0) 50%,
      rgb(243, 243, 241) 100%
    ),
    linear-gradient(
      180deg,
      rgba(243, 243, 241, 0) 0%,
      rgba(243, 243, 241, 0) 50%,
      rgb(243, 243, 241) 100%
    );
  pointer-events: none;
}

/* ---- Header: same butterfly / heading / green subline as Growth & Trust ---- */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.faq-butterfly {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto 18px;
}
.faq-heading {
  font-size: 56px !important;
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 12px;
}
.faq-heading em {
  font-style: italic;
  color: #00652e !important;
}
.faq-subtitle {
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: #00652e;
  margin: 0 !important;
}

/* ---- List: white cards on the grey ground ---- */
.faq-list {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(35, 31, 32, 0.07);
  border-radius: 14px;
  overflow: hidden;
  -webkit-transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover {
  -webkit-box-shadow: 0 10px 28px rgba(35, 31, 32, 0.08);
  box-shadow: 0 10px 28px rgba(35, 31, 32, 0.08);
}
.faq-item.active {
  border-color: rgba(0, 101, 46, 0.35);
  -webkit-box-shadow: 0 12px 32px rgba(35, 31, 32, 0.1);
  box-shadow: 0 12px 32px rgba(35, 31, 32, 0.1);
}
.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  gap: 28px;
}
.faq-q-text {
  font-size: 22px;
  line-height: 34px;
  color: #231f20;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.faq-item.active .faq-q-text {
  color: #00652e;
}

/* Circular +/- toggle; the glyph is CSS so the accordion script never
   has to rewrite the button's contents. */
.faq-toggle {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(35, 31, 32, 0.2);
  background: transparent;
  color: #787878;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background-color 0.25s, border-color 0.25s, color 0.25s;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}
/* Vertical stroke of the "+", which collapses into the "-" when open. */
.faq-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-question:hover .faq-toggle {
  border-color: #00652e;
  color: #00652e;
}
.faq-toggle--open {
  background: #00652e;
  border-color: #00652e;
  color: #fff;
}
.faq-question:hover .faq-toggle--open {
  color: #fff;
}
.faq-toggle--open::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -ms-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 26px;
  max-width: 900px;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-answer p {
  margin: 0 !important;
  font-size: 17px;
  line-height: 30px;
  color: #646464;
  letter-spacing: 0.4px;
}
.faq-answer a {
  color: #00652e;
  text-decoration: none;
  word-break: break-word;
}
.faq-answer a:hover,
.faq-answer a:focus-visible {
  text-decoration: underline;
}

/* ---- FAQ responsive ---- */
@media (max-width: 1199px) {
  .faq-heading {
    font-size: 44px !important;
  }
  .faq-q-text {
    font-size: 20px;
    line-height: 31px;
  }
}
@media (max-width: 767px) {
  .section-faq {
    padding: 60px 0;
  }
  .faq-deco {
    width: 100%;
    height: 240px;
    opacity: 0.25;
  }
  .faq-butterfly {
    height: 24px;
    margin-bottom: 14px;
  }
  .faq-heading {
    font-size: 30px !important;
  }
  .faq-subtitle {
    font-size: 16px;
  }
  .faq-header {
    margin-bottom: 30px;
  }
  .faq-list {
    gap: 10px;
  }
  .faq-question {
    padding: 18px 18px;
    gap: 16px;
  }
  .faq-q-text {
    font-size: 16px;
    line-height: 26px;
  }
  .faq-toggle {
    width: 34px;
    height: 34px;
  }
  .faq-toggle::before,
  .faq-toggle::after {
    width: 12px;
  }
  .faq-answer {
    padding: 0 18px 20px;
  }
  .faq-answer p {
    font-size: 15px;
    line-height: 26px;
  }
}

/* ================================
   CONTACT CTA SECTION
   ================================ */
/* ================================
   SECTION: AMENITIES
   Bootstrap tabs — one pane per amenity family, each with its own render and
   a two-column checklist. White band, so it separates the warm-grey Growth
   section above from the Infrastructure band below.
   ================================ */
.section-amenities {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  /* Swiper's stylesheet loads after this one; scope the override here so the
     progress bar and controls pick up brand green rather than Swiper blue. */
  --swiper-theme-color: #00652e;
}

.amen-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 46px;
}
.amen-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.amen-heading {
  font-size: 54px;
  line-height: 1.12;
  color: #231f20 !important;
  margin-bottom: 0 !important;
}
.amen-heading em {
  font-style: italic;
  color: #00652e !important;
}

/* ---- Tab strip ---- */
.amen-tabs-nav.nav-tabs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid #e6e5e0;
  margin-bottom: 44px !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.amen-tabs-nav .nav-item {
  margin-bottom: -1px;
}
.amen-tab.nav-link {
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  padding: 12px 26px;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.4;
  color: #646464;
  -webkit-transition:
    color 0.3s ease,
    border-color 0.3s ease;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.amen-tab.nav-link:hover,
.amen-tab.nav-link:focus-visible {
  border-color: #cfe3d5;
  color: #231f20;
  isolation: auto;
}
.amen-tab.nav-link.active {
  background: transparent;
  border-color: #00652e;
  color: #00652e;
}

/* ---- Pane: one slider per tab ---- */
.amen-slider-wrap {
  position: relative;
}
.amen-count {
  display: block;
  font-size: 13px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #00652e;
  margin-bottom: 22px;
}
.amen-swiper {
  overflow: hidden;
}
.amen-swiper .swiper-slide {
  height: auto;
}

/* ---- Amenity card ---- */
.amen-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid #e6e5e0;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition:
    border-color 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.amen-card:hover {
  border-color: #cfe3d5;
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}
.amen-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e9e8e4;
  aspect-ratio: 4 / 3;
}
.amen-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
}
.amen-card:hover .amen-card-img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.amen-card-title {
  display: block;
  padding: 18px 22px;
  font-size: 17px;
  line-height: 26px;
  color: #231f20;
}

/* ---- Nav arrows ---- */
.amen-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  margin-top: -20px;
  border: 1px solid #00652e;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #00652e;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  -webkit-transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}
.amen-nav:hover {
  background: #00652e;
  color: #ffffff;
}
.amen-nav-prev {
  left: -24px;
}
.amen-nav-next {
  right: -24px;
}
.amen-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
/* ---- Progress bar ---- */
.amen-progress.swiper-pagination-progressbar {
  position: relative;
  margin-top: 34px;
  height: 2px;
  background: #e6e5e0 !important;
}
.amen-progress .swiper-pagination-progressbar-fill {
  background: #00652e !important;
}

/* ================================
   SECTION: AMENITIES — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-amenities {
    padding: 80px 0;
  }
  .amen-heading {
    font-size: 44px;
  }
  .amen-tab.nav-link {
    font-size: 18px;
    padding: 11px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .amen-heading {
    font-size: 38px;
  }
  .amen-nav-prev {
    left: -14px;
  }
  .amen-nav-next {
    right: -14px;
  }
}

@media only screen and (max-width: 767px) {
  .section-amenities {
    padding: 56px 0;
  }
  .amen-header {
    margin-bottom: 30px;
  }
  .amen-heading {
    font-size: 32px;
  }
  /* Tab strip scrolls sideways instead of wrapping to three ragged rows */
  .amen-tabs-nav.nav-tabs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .amen-tabs-nav.nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .amen-tabs-nav .nav-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .amen-tab.nav-link {
    font-size: 16px;
    padding: 10px 16px;
    white-space: nowrap;
  }
  .amen-count {
    margin-bottom: 16px;
  }
  .amen-tabs-nav.nav-tabs {
    margin-bottom: 30px !important;
  }
  .amen-card-title {
    padding: 14px 18px;
    font-size: 15px;
    line-height: 24px;
  }
  /* One card per view, so the arrows sit over the image */
  .amen-nav {
    width: 42px;
    height: 42px;
    margin-top: -38px;
    font-size: 13px;
  }
  .amen-nav-prev {
    left: 12px;
  }
  .amen-nav-next {
    right: 12px;
  }
  .amen-progress.swiper-pagination-progressbar {
    margin-top: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .amen-heading {
    font-size: 30px;
  }
}

/* ================================
   SECTION: PRICING
   Centred offer band between the white Amenities section and the cream
   Infrastructure band — a soft green tint keeps it distinct from both.
   ================================ */
.section-pricing {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #eef3ef;
}
/* Hairline rules top and bottom */
.section-pricing::before,
.section-pricing::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 101, 46, 0) 0%,
    rgba(0, 101, 46, 0.26) 50%,
    rgba(0, 101, 46, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 101, 46, 0) 0%,
    rgba(0, 101, 46, 0.26) 50%,
    rgba(0, 101, 46, 0) 100%
  );
}
.section-pricing::before {
  top: 0;
}
.section-pricing::after {
  bottom: 0;
}

.pricing-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.pricing-heading {
  font-size: 54px;
  line-height: 1.12;
  color: #231f20 !important;
  margin-bottom: 18px !important;
}
.pricing-heading em {
  font-style: italic;
  color: #00652e !important;
}
.pricing-desc {
  font-size: 17px;
  line-height: 32px;
  color: #646464;
  max-width: 760px;
  margin: 0 auto 38px !important;
}

/* ---- Price plate ---- */
.pricing-plate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 30px 46px;
  background: #ffffff;
  border: 1px solid #cfe3d5;
  border-radius: 3px;
  -webkit-box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}
.pricing-plate-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 46px;
  width: 100%;
}
.pricing-plate-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pricing-plate-label {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #8b8b86;
  margin-bottom: 10px;
}
.pricing-plate-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 8px;
  font-size: 40px;
  line-height: 1.15;
  color: #00652e;
}
.pricing-plate-unit {
  font-size: 26px;
}
.pricing-plate-suffix {
  font-size: 20px;
  color: #646464;
}
.pricing-plate-value--text {
  font-size: 26px;
  line-height: 1.3;
  color: #231f20;
}
.pricing-plate-divider {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background: #e0e5e1;
}

/* ---- Payment plan ---- */
.pricing-plans {
  width: 100%;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #e0e5e1;
}
.pricing-plans-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #8b8b86;
  margin-bottom: 18px;
}
.pricing-plans-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 46px;
}
.pricing-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 6px;
}
.pricing-plan + .pricing-plan {
  border-left: 1px solid #e0e5e1;
  padding-left: 46px;
}
.pricing-plan-config {
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #00652e;
}
.pricing-plan-text {
  font-size: 20px;
  line-height: 1.4;
  color: #231f20;
}
.pricing-plan-text strong {
  font-weight: 400;
  color: #00652e;
}
.pricing-plan-note {
  font-size: 13px;
  line-height: 20px;
  color: #8b8b86;
}

.pricing-cta {
  margin-top: 34px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
    background-color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.pricing-cta:hover,
.pricing-cta:focus-visible {
  background-color: #004d23;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ================================
   SECTION: PRICING — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-pricing {
    padding: 76px 0;
  }
  .pricing-heading {
    font-size: 44px;
  }
  .pricing-plate {
    padding: 26px 34px;
  }
  .pricing-plate-row,
  .pricing-plans-grid {
    gap: 34px;
  }
  .pricing-plan + .pricing-plan {
    padding-left: 34px;
  }
  .pricing-plate-value {
    font-size: 34px;
  }
  .pricing-plan-text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .pricing-heading {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .section-pricing {
    padding: 56px 0;
  }
  .pricing-heading {
    font-size: 32px;
  }
  .pricing-desc {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 28px !important;
  }
  /* Stack the two halves; the divider becomes the rule between them */
  .pricing-plate {
    padding: 26px 22px;
  }
  .pricing-plate-row,
  .pricing-plans-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22px;
  }
  .pricing-plate-divider {
    width: 100%;
    height: 1px;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .pricing-plan + .pricing-plan {
    border-left: none;
    border-top: 1px solid #e0e5e1;
    padding-left: 0;
    padding-top: 22px;
  }
  .pricing-plate-value {
    font-size: 32px;
  }
  .pricing-plate-unit {
    font-size: 22px;
  }
  .pricing-plate-suffix {
    font-size: 17px;
  }
  .pricing-plans {
    margin-top: 22px;
    padding-top: 22px;
  }
  .pricing-plans-label {
    margin-bottom: 14px;
  }
  .pricing-plan-text {
    font-size: 17px;
  }
  .pricing-cta {
    margin-top: 28px;
  }
}

@media only screen and (max-width: 576px) {
  .pricing-heading {
    font-size: 30px;
  }
  .pricing-cta {
    width: 100%;
    max-width: 320px;
  }
}

/* ================================
   SECTION: PROJECT GALLERY
   Edge-bleeding Swiper carousel of render stills; each slide opens the
   full-size image in Fancybox. Warm-grey band so it separates the two white
   sections (Product above, FAQs below).
   ================================ */
.section-gallery {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  /* Own tint: #f3f3f1 is already carried by .section-growth ("About us")
     and .section-trust, so the gallery took the soft green instead. */
  background: #eef3ef;
  /* Swiper's stylesheet loads after this one, so override its theme colour
     here rather than on :root — otherwise the progress bar renders blue. */
  --swiper-theme-color: #00652e;
}

.gallery-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}
.gallery-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.gallery-heading {
  font-size: 54px;
  line-height: 1.12;
  color: #231f20 !important;
  margin-bottom: 14px !important;
}
.gallery-heading em {
  font-style: italic;
  color: #00652e !important;
}
.gallery-subtitle {
  font-size: 17px;
  line-height: 30px;
  color: #646464;
  margin: 0;
}

/* Carousel bleeds past the container so the next slide peeks in */
.gallery-carousel-wrap {
  position: relative;
  padding: 0 5vw;
}
.gallery-swiper {
  overflow: hidden;
}
.gallery-swiper .swiper-slide {
  height: auto;
}

/* ---- Slide ---- */
.gallery-item {
  display: block;
  text-decoration: none !important;
  background: #ffffff;
  border: 1px solid #e6e5e0;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition:
    border-color 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.gallery-item:hover {
  border-color: #cfe3d5;
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.gallery-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e9e8e4;
  aspect-ratio: 4 / 3;
}
.gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
/* Zoom affordance */
.gallery-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 101, 46, 0.92);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
  -webkit-transition:
    opacity 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* Card labels hidden on request — switch back to display:block to show the
   image name under each card again. The text stays in the markup so the
   lightbox and screen readers still have it. */
.gallery-caption {
  display: none;
  padding: 18px 22px;
  font-size: 17px;
  line-height: 26px;
  color: #231f20;
}

/* ---- Nav arrows ---- */
.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  margin-top: -40px;
  border: 1px solid #00652e;
  border-radius: 50%;
  background: #ffffff;
  color: #00652e;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}
.gallery-nav:hover {
  background: #00652e;
  color: #ffffff;
}
.gallery-nav-prev {
  left: calc(5vw - 26px);
}
.gallery-nav-next {
  right: calc(5vw - 26px);
}
.gallery-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

/* ---- Progress bar ---- */
.gallery-progress.swiper-pagination-progressbar {
  position: relative;
  margin-top: 44px;
  height: 2px;
  background: #dedcd6 !important;
}
.gallery-progress .swiper-pagination-progressbar-fill {
  background: #00652e !important;
}

/* ---- Fancybox caption ---- */
.fancybox-caption {
  font-size: 16px;
}

/* ================================
   SECTION: PROJECT GALLERY — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-gallery {
    padding: 76px 0 68px;
  }
  .gallery-heading {
    font-size: 44px;
  }
  .gallery-nav {
    width: 46px;
    height: 46px;
  }
  .gallery-nav-prev {
    left: calc(5vw - 20px);
  }
  .gallery-nav-next {
    right: calc(5vw - 20px);
  }
}

@media only screen and (max-width: 991px) {
  .gallery-heading {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .section-gallery {
    padding: 56px 0 52px;
  }
  .gallery-header {
    margin-bottom: 34px;
  }
  .gallery-heading {
    font-size: 32px;
  }
  .gallery-subtitle {
    font-size: 16px;
    line-height: 28px;
  }
  .gallery-carousel-wrap {
    padding: 0 5vw;
  }
  .gallery-caption {
    padding: 14px 18px;
    font-size: 15px;
    line-height: 24px;
  }
  /* One card per view, so the arrows sit over the image rather than beside it */
  .gallery-nav {
    width: 44px;
    height: 44px;
    margin-top: -46px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.94);
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }
  .gallery-nav-prev {
    left: calc(5vw + 12px);
  }
  .gallery-nav-next {
    right: calc(5vw + 12px);
  }
  .gallery-zoom {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 36px;
    height: 36px;
    right: 12px;
    bottom: 12px;
    font-size: 12px;
  }
  .gallery-progress.swiper-pagination-progressbar {
    margin-top: 28px;
  }
}

@media only screen and (max-width: 576px) {
  .gallery-heading {
    font-size: 30px;
  }
}

/* ================================
   SECTION: WHY ATS HOMEKRAFT
   Light warm-grey trust band between the FAQs and the contact CTA, so the two
   white sections either side get some separation. Green credential figures and
   white tiles match the Growth / Infrastructure bands.
   ================================ */
.section-trust {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #f3f3f1;
}
/* Hairline rules top and bottom */
.section-trust::before,
.section-trust::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 101, 46, 0) 0%,
    rgba(0, 101, 46, 0.28) 50%,
    rgba(0, 101, 46, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 101, 46, 0) 0%,
    rgba(0, 101, 46, 0.28) 50%,
    rgba(0, 101, 46, 0) 100%
  );
}
.section-trust::before {
  top: 0;
}
.section-trust::after {
  bottom: 0;
}

/* Decorative line-art watermark, bottom-right */
.trust-deco {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 520px;
  max-width: 42%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.trust-deco-img {
  width: 100%;
  height: auto;
  display: block;
}

.section-trust .custom-container {
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

/* ---- Left column ---- */
.trust-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 22px;
}
.trust-eyebrow {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00652e;
  margin-bottom: 20px;
}
.trust-heading {
  font-size: 54px;
  line-height: 1.12;
  /* beats the global `h1..h6 { color: gold !important }` reset */
  color: #231f20 !important;
  margin-bottom: 24px;
}
.trust-heading em {
  font-style: italic;
  color: #00652e !important;
}
.trust-desc {
  font-size: 17px;
  line-height: 32px;
  color: #646464;
  max-width: 600px;
  margin: 0;
}

/* CTA — "Know Our Story" */
.trust-cta {
  margin-top: 34px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
    background-color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.trust-cta:hover,
.trust-cta:focus-visible {
  background-color: #004d23;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* RERA plate */
.trust-rera {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 440px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 28px;
  padding: 16px 26px;
  border: 1px solid #e6e5e0;
  border-left: 3px solid #00652e;
  background: #ffffff;
}
.trust-rera-label {
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #8b8b86;
  margin-bottom: 6px;
}
.trust-rera-value {
  font-size: 17px;
  line-height: 1.45;
  color: #00652e;
}
.trust-rera-link {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #646464;
  text-decoration: none;
  word-break: break-word;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.trust-rera-link:hover,
.trust-rera-link:focus-visible {
  color: #00652e;
  text-decoration: underline;
}

/* ---- Right column: credential tiles ---- */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.trust-stat {
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  border: 1px solid #e6e5e0;
  background: #ffffff;
  border-radius: 3px;
  -webkit-transition:
    border-color 0.35s ease,
    -webkit-box-shadow 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}
.trust-stat--wide {
  grid-column: 1 / -1;
}
.trust-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #00652e;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}
.trust-stat:hover {
  border-color: #cfe3d5;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.trust-stat:hover::before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.trust-stat-num {
  display: block;
  font-size: 52px;
  line-height: 1;
  color: #00652e;
  white-space: nowrap;
}
.trust-stat-unit {
  font-size: 20px;
}
.trust-stat-label {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e6e5e0;
  font-size: 16px;
  line-height: 26px;
  color: #646464;
}

/* ================================
   SECTION: WHY ATS HOMEKRAFT — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-trust {
    padding: 84px 0;
  }
  .trust-grid {
    gap: 50px;
  }
  .trust-heading {
    font-size: 44px;
  }
  .trust-stat {
    padding: 28px 24px;
  }
  .trust-stat-num {
    font-size: 44px;
  }
}

@media only screen and (max-width: 991px) {
  .trust-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .trust-desc {
    max-width: 100%;
  }
  .trust-deco {
    right: -50px;
    bottom: -70px;
    max-width: 46%;
    opacity: 0.35;
  }
}

@media only screen and (max-width: 767px) {
  .section-trust {
    padding: 60px 0;
  }
  .trust-eyebrow {
    font-size: 12px;
    letter-spacing: 2.4px;
  }
  .trust-heading {
    font-size: 32px;
  }
  .trust-desc {
    font-size: 16px;
    line-height: 30px;
  }
  .trust-stats {
    gap: 14px;
  }
  .trust-stat {
    padding: 24px 20px;
  }
  .trust-stat-num {
    font-size: 38px;
  }
  .trust-stat-unit {
    font-size: 17px;
  }
  .trust-stat-label {
    font-size: 15px;
    line-height: 24px;
  }
  .trust-cta {
    margin-top: 28px;
  }
  .trust-rera {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 22px;
    padding: 14px 20px;
  }
}

@media only screen and (max-width: 576px) {
  .trust-heading {
    font-size: 30px;
  }
  .trust-cta {
    width: 100%;
    max-width: 320px;
  }
  .trust-stats {
    grid-template-columns: minmax(0, 1fr);
  }
  .trust-stat-num {
    font-size: 40px;
  }
}

.section-contact-cta {
  /* .section-faq directly above is #fff, so the closing CTA takes the soft
     green to separate from it (and from the dark footer below). */
  background: #eef3ef;
  padding: 70px 0;
}
.contact-cta-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-cta-heading {
 
  font-size: 56px !important;
  
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 24px;
}
.contact-cta-heading em {

  font-style: italic;
}
.contact-cta-desc {
 
  font-size: 16px;
  line-height: 30px;
  color: #646464;
  max-width: 568px;
}
.contact-cta-card {
  border: 1px solid #00652e;
  border-radius: 18px;
  padding: 40px 59px 60px;
}
.contact-card-title {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 36px !important;
  line-height: 46px !important;
  color: #231f20 !important;
  text-align: center;
  margin-bottom: 16px;
}
.contact-card-title em {

  font-style: italic;
}
.form-register-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--primary-dark, #8a6a18);
  text-align: center;
  margin-bottom: 12px;
}
.form-register-line--dark {
  font-size: 15px;
  text-align: left;
  color: #e6c86a;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .form-register-line {
    font-size: 15px;
  }
}
.contact-card-sub {

  font-size: 20px;
  line-height: 40px;
  color: #646464;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 50px;
}
.contact-fields-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  margin-bottom: 50px;
  /* Top-align, so a validation message under one field can't drag the other
     field's underline down with it. */
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.contact-field .form-control {
  border: none;
  border-bottom: 1px solid rgba(35, 31, 32, 0.5);
  border-radius: 0;
  padding: 19px 0 19px 11px;
 
  font-size: 18px;
  color: #231f20;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contact-field .form-control::placeholder {
  color: rgba(50, 50, 50, 0.85);
  font-size: 18px;
}
.contact-field .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom-color: #00652e;
}
/* The prefix and the input each carry their own half of the underline, so the
   validation message sits BELOW the line instead of inside the bordered box
   and pushing the line down. */
.contact-field--phone {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: none;
}
.contact-field--phone .contact-cc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(35, 31, 32, 0.5);
}
.contact-field--phone .form-control {
  border-bottom: 1px solid rgba(35, 31, 32, 0.5);
  padding-left: 8px;
}
/* Keep both halves of the line the same colour on focus and on error */
.contact-field--phone:focus-within .contact-cc,
.contact-field--phone:focus-within .form-control {
  border-bottom-color: #00652e;
}
.contact-field--phone:has(.form-control.is-invalid) .contact-cc {
  border-bottom-color: #dc3545;
}
.contact-field--phone .invalid-feedback {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 6px;
}
.contact-cc {
 
  font-size: 18px;
  color: rgba(50, 50, 50, 0.85);
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
  margin-bottom: 30px;
}
.contact-agree .form-check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(50, 50, 50, 0.4);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}
.contact-agree .form-check-input:checked {
  background-color: #00652e;
  border-color: #00652e;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.contact-agree .form-check-label {
 
  font-size: 16px;
  line-height: 30px;
  color: rgba(50, 50, 50, 0.85);
  cursor: pointer;
}
.contact-submit {
  width: 100%;
  height: 61px;
  background: #00652e;
  border: none;
  border-radius: 15px;
  color: #fff;
 
  font-size: 18px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.contact-submit:hover {
  background: #00501f;
}

/* ================================
   THANK YOU PAGE
   ================================ */
.section-thankyou {
  background: #fff;
  min-height: calc(100vh - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 20px;
}
.ty-inner {
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.ty-butterfly {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
}
.ty-tag {
  
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00652e;
  margin-bottom: 20px;
}
.ty-heading {
 
  font-size: 72px !important;
  
  line-height: 1.15 !important;
  color: #231f20 !important;
  margin-bottom: 24px;
}
.ty-heading em {

  font-style: italic;
}
.ty-sub {
 
  font-size: 20px;
  line-height: 38px;
  color: #646464;
  margin-bottom: 40px;
}
.ty-divider {
  margin: 40px 0;
  overflow: hidden;
  text-align: center;
}
.ty-divider-img {
  display: block;
  width: 900px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.ty-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 40px;
}
.ty-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding: 0 48px;
  text-align: left;
}
.ty-stat-vdiv {
  width: 1px;
  height: 80px;
  background: #d0d0d0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.ty-stat-num {
  
  font-size: 56px;

  color: #231f20;
  line-height: 1;
  display: block;
}
.ty-stat-unit {
  font-size: 28px;
}
.ty-stat-label {

  font-size: 16px;
  color: #646464;
  display: block;
}
.ty-back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: #00652e;
  color: #fff;
 
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.ty-back-btn:hover {
  background: #00501f;
  color: #fff;
}

/* Thank-you page project walkthrough video */
.ty-walkthrough {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ty-walkthrough-title {
  
  font-size: 32px;
 
  color: #231f20;
  margin-bottom: 18px;
  text-align: center;
}
.ty-walkthrough-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.ty-walkthrough-video iframe,
.ty-walkthrough-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #231f20;
}
/* Portrait source (1080x1920) — narrower column.
   aspect-ratio, not padding-top: a percentage padding would resolve against
   the 800px parent instead of this element's capped 380px width. */
.ty-walkthrough-video--portrait {
  padding-top: 0;
  aspect-ratio: 1080 / 1920;
  max-width: 380px;
  margin: 0 auto;
}
.ty-walkthrough-video--portrait video {
  -o-object-fit: contain;
  object-fit: contain;
}

/* Responsive */
@media only screen and (max-width: 767px) {
  .section-thankyou {
    padding: 60px 20px;
    min-height: calc(100vh - 70px);
  }
  .ty-heading {
    font-size: 40px !important;
  }
  .ty-sub {
    font-size: 16px;
    line-height: 30px;
  }
  .ty-walkthrough-title {
    font-size: 24px;
  }
  .ty-stats {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
  .ty-stat {
    padding: 24px 20px;
    min-width: calc(50% - 1px);
  }
  .ty-stat-vdiv {
    height: 80px;
  }
  .ty-stat-num {
    font-size: 38px;
  }
  .ty-stat-unit {
    font-size: 20px;
  }
  .ty-stat-label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .ty-heading {
    font-size: 32px !important;
  }
  .ty-stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ty-stat {
    padding: 20px 0;
    min-width: 100%;
    border-bottom: 1px solid #d0d0d0;
    text-align: center;
  }
  .ty-stat:last-child {
    border-bottom: none;
  }
  .ty-stat-vdiv {
    display: none;
  }
}

/* ================================
   MODAL POPUP  (jkb-modal)
   ================================ */
.modal-content {
  background: #fff;
  border-radius: unset;
}
.jkb-modal .modal-dialog {
  max-width: 480px;
}
.jkb-modal-content {
  border: none !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #111 !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}
.jkb-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
    background 0.2s,
    -webkit-transform 0.2s;
  transition:
    background 0.2s,
    transform 0.2s;
}
.jkb-modal-close i {
  font-size: 1rem;
  line-height: 1;
}
.jkb-modal-close:hover {
  background: var(--primary-gradient);
  color: #fff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.jkb-modal-form-only {
  padding: 2.75rem 2.25rem;
  background: #111 !important;
}
.jkb-modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--primary) !important;
  font-weight: 600;
  margin-bottom: 0.75rem !important;
}
.jkb-modal-sub {
 
  font-size: 0.85rem;
  color: #ddd0b5 !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.55;
}

/* Form fields inside modal */
.jkb-form .jkb-field {
  position: relative;
  margin-bottom: 1.1rem;
}
.jkb-form .form-control {
  border: none;
  border-bottom: 1.5px solid rgba(196, 162, 74, 0.35);
  border-radius: 0;
  background: #1a1a1a !important;
  padding: 0.65rem 0.25rem;
 
  font-size: 0.92rem;
  color: #ddd0b5 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.jkb-form .form-control::-webkit-input-placeholder {
  color: #6a5f4a !important;

}
.jkb-form .form-control::-moz-placeholder {
  color: #6a5f4a !important;

}
.jkb-form .form-control:-ms-input-placeholder {
  color: #6a5f4a !important;

}
.jkb-form .form-control::placeholder {
  color: #6a5f4a !important;

}
.jkb-form .form-control:focus {
  border-color: var(--primary);
  background: #1e1e1e !important;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(196, 162, 74, 0.15) !important;
  box-shadow: 0 0 0 3px rgba(196, 162, 74, 0.15) !important;
  color: #ddd0b5 !important;
}
.jkb-form .jkb-mobile {
  position: relative;
}
.jkb-form .jkb-cc {
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--primary);
 
 
  font-size: 0.92rem;
  pointer-events: none;
}
.jkb-form .jkb-mobile .form-control {
  padding-left: 2.6rem;
}
.jkb-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.25rem 0 1.25rem;
}
.jkb-agree .form-check-input {
  margin-top: 0.25rem;
  border-color: var(--primary);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.jkb-agree .form-check-input:checked {
  background-color: #9b7b20;
  border-color: #9b7b20;
}
.jkb-agree .form-check-label {
 
  font-size: 0.75rem;
  color: #888 !important;
  line-height: 1.4;
  cursor: pointer;
}
.jkb-submit {
  width: 100%;
  background: #7a5c10;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1rem;
 
 
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -webkit-box-shadow: 0 10px 24px rgba(196, 162, 74, 0.25);
  box-shadow: 0 10px 24px rgba(196, 162, 74, 0.25);
  position: relative;
  overflow: hidden;
}
.jkb-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  border-radius: 50px;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.jkb-submit span {
  position: relative;
  z-index: 1;
}
.jkb-submit:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 30px rgba(155, 123, 32, 0.32);
  box-shadow: 0 14px 30px rgba(155, 123, 32, 0.32);
}
.jkb-submit:hover::before {
  opacity: 0;
}

/* ================================
   THANK-YOU PAGE
   ================================ */
section.secton-thankyou {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
  background: #000 !important;
}
.thankyou-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.thankyou-content-img img {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
}
section.secton-thankyou .thankyou-title {
 
  margin: 0.5rem auto 0.5rem auto !important;
  text-align: center;
  color: var(--gold) !important;
  font-size: 2.4rem;
  line-height: 1.2;
}
section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;

  text-align: center;
  color: #c8bba0;
  margin-top: 1rem !important;
  line-height: 1.7;
}
.ty-highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto 2rem;
}
.ty-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid rgba(196, 162, 74, 0.4);
  border-radius: 50px;
  background: rgba(196, 162, 74, 0.06);
  font-size: 0.8rem;
 
  letter-spacing: 0.06em;
  color: #ddd0b5;
  text-transform: uppercase;
}
.ty-badge i {
  color: var(--gold);
  font-size: 0.85rem;
}
.go_txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.8rem;
  
  letter-spacing: 0.12em;
  color: #0a0a0a;
  background: var(--primary-gradient) !important;
  border-radius: 50px;
  border: none;
  padding: 0.85rem 2.25rem;
  margin: 0.5rem auto 0;
  -webkit-transition:
    opacity 0.25s ease,
    -webkit-transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  text-transform: uppercase;
}
.go_txt:hover {
  opacity: 0.88;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ================================
   FOOTER  â€“  Figma Design
   ================================ */
.site-footer {
  background: #231f20;
  padding: 60px 100px 0;
}

/* Logo */
.footer-logo-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.footer-logo {
  height: auto;
  max-height: 120px;
  max-width: 100%;
  display: inline-block;
}

/* Tagline */
.footer-tagline {
 
  font-size: 16px;
  line-height: 32px;
  color: #fff !important;
  text-align: center;
  max-width: 540px;
  margin: 40px auto 48px;
  text-transform: capitalize;
}
/* Corporate site link, sitting at the right end of the contact row. */
.footer-website {
  margin: 0 !important;
}
.footer-website a {
  /* Same 18px white as the phone number beside it. */
  font-size: 18px;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-website a:hover,
.footer-website a:focus-visible {
  color: #fdd209;
}
.footer-logo-link {
  display: inline-block;
}

/* QR codes */
.footer-qr-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 43px;
  margin-bottom: 60px;
  margin-top: 21px;
}
.footer-qr-img {
  width: 87px;
  height: 87px;
  display: block;
}

/* Contact row */
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footer-contact-left,
.footer-contact-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
 
  font-size: 18px;
  color: #fff;
}
.footer-contact-icon {
  color: #fdd209;
  font-size: 18px;
  flex-shrink: 0;
}

/* Disclaimer */
.footer-disclaimer {
  padding: 20px 0;
}
.footer-disclaimer p {
  font-size: 11px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0;
}

/* Bottom bar */
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 22px 0 28px;
}
.footer-copyright {
 
  font-size: 18px;
  color: #fff !important;
}
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-social-link {
  color: #fff !important;
  font-size: 18px;
  line-height: 1;
  -webkit-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
  text-decoration: none !important;
}
.footer-social-link:hover {
  color: #fdd209 !important;
}
.footer-credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
 
  font-size: 16px;
  color: #fff;
}
.footer-realatte-logo {
  height: 18px;
  width: auto;
  vertical-align: middle;
}

/* ================================
   PARAGRAPH BLUR-IN (JS observer)
   ================================ */
.p-blur-init {
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transform: translateY(16px);
  -ms-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition:
    opacity 0.9s ease,
    -webkit-filter 0.9s ease,
    -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.9s ease,
    filter 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-blur-init.p-blur-visible {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
   ================================ */
/* Laptops — .nav-links is absolutely centred, so it will overlap the logo and
   the CTA unless the gap/size come down as the viewport narrows. Stepped down
   to keep all eight links on one row from 992px (where the hamburger takes
   over) up to full width. */
@media only screen and (max-width: 1599px) {
  .nav-links {
    gap: 30px;
  }
  .nav-link {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1399px) {
  .nav-links {
    gap: 22px;
  }
  .nav-link {
    font-size: 14px;
  }
}

/* Small laptops — tighten spacing so centered links don't crowd logo/CTA */
@media only screen and (max-width: 1199px) {
  .navbar-container {
    padding: 0 40px;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-link {
    font-size: 13px;
  }
  .nav-logo .logo {
    height: 60px;
  }
}

@media only screen and (max-width: 1099px) {
  .navbar-container {
    padding: 0 24px;
  }
  .nav-links {
    gap: 11px;
  }
  .nav-link {
    font-size: 12px;
  }
}

@media only screen and (max-width: 991px) {
  /* Navbar tablet/mobile — hide links, show hamburger */
  #navbar {
    height: 80px;
  }
  html,
  section[id] {
    scroll-padding-top: 96px;
    scroll-margin-top: 96px;
  }
  .navbar-container {
    padding: 0 30px;
  }
  .hero-banner {
    margin-top: 80px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-logo .logo {
    height: 55px;
  }
  .nav-contact-btn {
    font-size: 13px;
    padding: 10px 18px;
    line-height: 22px;
  }

  .hero-slide-content {
    bottom: 90px;
    left: 40px;
    max-width: calc(100% - 80px);
  }
  .hero-introducing {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-bottom {
    padding: 0 40px;
  }

  /* Location tablet */
  .location-heading {
    font-size: 46px !important;
  }
  .location-map-col {
    width: 44%;
    padding-left: 24px;
  }
  .location-map-wrap {
    max-width: 100%;
  }
  .location-container {
    padding-top: 40px;
  }
  .loc-tab {
    font-size: 16px;
  }
  .loc-tab.active {
    font-size: 20px;
  }
  .loc-tabs-nav {
    -webkit-column-gap: 24px;
    column-gap: 24px;
  }
  .loc-card-img-wrap {
    height: 260px;
  }

  /* About tablet */
  .about-heading {
    font-size: 46px !important;
  }
  .about-content {
    width: calc(100% - 48px);
  }
  .about-header {
    margin-bottom: 60px;
  }
  .about-bullets-wrap {
    gap: 30px;
  }
  .about-bg {
    height: 600px;
  }

  /* Overview tablet */
  .ov-inner {
    padding: 80px 40px 60px 40px;
  }
  .ov-img-left {
    width: 38%;
  }
  .ov-img-left-img {
    height: 580px;
  }
  .ov-content {
    padding: 20px 20px 0 40px;
  }
  .ov-heading {
    font-size: 46px !important;
  }
  .ov-desc {
    font-size: 17px;
    line-height: 32px;
    max-width: 100%;
  }
  .ov-img-right {
    width: 14%;
  }
  .ov-img-right-img {
    height: 220px;
  }
  .ov-sketch {
    width: 420px;
    height: 240px;
    bottom: 160px;
  }

  /* Product tablet */
  .product-img-col {
    width: 55%;
    padding-left: 40px;
  }
  .product-hero-img {
    height: 480px;
  }
  .product-content {
    padding-top: 40px;
    padding-right: 30px;
  }
  .product-heading {
    font-size: 46px !important;
  }
  .product-desc {
    font-size: 17px;
    line-height: 32px;
  }
  .product-stats-bg {
    display: none;
  }
  /* 4 columns cannot hold the numbers at this width — drop to 2 up */
  .product-stat-vdivider {
    display: none;
  }
  .product-stat {
    display: flex;
    flex-direction: column;
    padding: 28px 16px;
    min-width: 0;
    border-top: 1px solid #ececec;
  }
  .product-stat-num {
    font-size: 56px;
    line-height: 72px;
    min-height: 72px;
    margin-bottom: 10px;
    white-space: normal;
  }
  /* Grid cells stretch to equal height, so a bottom-pinned label keeps the
     row's labels on one line even when a number wraps */
  .product-stat-label {
    margin-top: auto;
  }
  .product-stat-label {
    font-size: 18px;
  }
  .product-quote {
    font-size: 42px !important;
    line-height: 60px !important;
  }
  .product-quote-wrap {
    padding: 30px 40px 60px;
  }
  .product-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .product-stats-row--3col {
    max-width: 100%;
  }
  .product-soon-label {
    font-size: 32px;
    letter-spacing: 3px;
  }
  .stat-bhk-img {
    height: 44px;
  }

  /* FAQ tablet */
  .section-faq {
    padding: 70px 0;
  }
  .faq-heading {
    font-size: 46px !important;
  }
  .faq-q-text {
    font-size: 24px;
    line-height: 38px;
  }
  .faq-toggle {
    width: 40px;
    height: 40px;
  }

  /* Contact CTA tablet — stack to single column */
  .section-contact-cta {
    padding: 70px 0;
  }
  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-cta-heading {
    font-size: 46px !important;
  }
  .contact-cta-desc {
    max-width: 100%;
  }

  .product-stats-row--3col {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  #navbar {
    height: 70px;
  }
  html,
  section[id] {
    scroll-padding-top: 86px;
    scroll-margin-top: 86px;
  }

  .navbar-container {
    padding: 0 20px;
  }

  .nav-logo .logo {
    height: 44px;
  }

  .nav-contact-btn {
    font-size: 12px;
    padding: 8px 14px;
    line-height: 20px;
  }

  .hero-banner {
    /* mobile creatives are 500x800 */
    aspect-ratio: 500 / 800;
    margin-top: 70px;
  }
  .hero-carousel-indicators {
    bottom: 26%;
  }

  .hero-slide-content {
    bottom: 80px;
    left: 20px;
    max-width: calc(100% - 40px);
  }
  .hero-introducing {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-bottom {
    padding: 0 20px;
    bottom: 20px;
  }
  .hero-nav-btn {
    width: 38px;
    height: 38px;
  }
  .hero-enquire-btn {
    font-size: 13px;
    padding: 10px 16px;
    letter-spacing: 0.5px;
  }

  /* Location mobile */
  .section-location {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .location-top {
    margin-bottom: 30px;
  }
  .location-heading {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }
  .section-walkthrough {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .walkthrough-top {
    margin-bottom: 30px;
  }
  .walkthrough-heading {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }
  .walkthrough-sub {
    font-size: 15px;
  }
  .walkthrough-poster {
    border-radius: 12px;
  }
  .walkthrough-play {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
  .location-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: unset;
  }
  .location-map-col {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
  }
  .location-map-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .location-container {
    width: 100%;
    padding: 0 20px;
  }
  .loc-tabs-nav {
    -webkit-column-gap: 18px;
    column-gap: 18px;
  }
  .loc-tab {
    font-size: 14px;
  }
  .loc-tab.active {
    font-size: 17px;
  }
  .loc-tab-line {
    margin: 12px 0 30px;
  }
  .loc-card-img-wrap {
    height: 220px;
    border-radius: 12px;
  }
  .loc-card-title {
    font-size: 18px !important;
  }
  .loc-card-desc {
    font-size: 14px;
    line-height: 24px;
  }

  /* Product mobile */
  .product-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .product-img-col {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .product-hero-img {
    height: 280px;
    max-width: 100%;
  }
  .product-content {
    padding-top: 36px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .product-heading {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px;
  }
  .product-desc {
    font-size: 15px;
    line-height: 28px;
    max-width: 100%;
  }
  /* Clean 2-column grid on mobile (no flex dividers) */
  .product-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
    max-width: 100%;
    margin: 0 auto;
  }
  .product-stats-row--3col {
    max-width: 100%;
    margin-top: 0;
  }
  .product-stat-vdivider {
    display: none;
  }
  .product-stat {
    padding: 22px 12px;
    min-width: 0;
    border-top: 1px solid #ececec;
  }
  /* Lone last stat (Grand clubhouse) spans the full width */
  .product-stats-row--3col .product-stat:last-child {
    grid-column: 1 / -1;
  }
  .product-stat-num {
    font-size: 52px;
    line-height: 62px;
    margin-bottom: 8px;
    min-height: 62px;
  }
  .product-stat-label {
    font-size: 15px;
    line-height: 26px;
  }
  .product-quote-wrap {
    padding: 30px 20px 50px;
  }
  .product-quote {
    font-size: 28px !important;
    line-height: 44px !important;
  }
  .product-soon-label {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .stat-bhk-img {
    height: 36px;
  }

  /* About mobile */
  .section-about {
    padding-top: 50px;
  }
  .about-content {
    width: calc(100% - 32px);
    padding-bottom: 40px;
  }
  .about-heading {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }
  .about-subtitle {
    font-size: 15px;
    line-height: 28px;
  }
  .about-header {
    gap: 20px;
    margin-bottom: 40px;
    max-width: 100%;
  }
  .about-bullets-wrap {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .about-bullets-col {
    max-width: 92%;
    margin: auto;
  }
  .about-bullets-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
    align-self: auto;
  }
  .about-bullets-col li {
    font-size: 16px;
    line-height: 28px;
  }

  /* Overview mobile */
  .custom-container {
    width: 90vw;
  }
  .ov-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 20px 40px;
    gap: 32px;
  }
  .ov-img-left {
    width: 100%;
  }
  .ov-img-left-img {
    height: 280px;
  }
  .ov-content {
    padding: 0;
    width: 100%;
  }
  .ov-brand-logo {
    height: 44px;
    margin-bottom: 20px;
  }
  .ov-heading {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }
  .ov-desc {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 32px;
    max-width: 100%;
  }
  .ov-btn {
    font-size: 15px;
    padding: 10px 22px;
  }
  .ov-img-right {
    display: none;
  }
  .ov-sketch {
    width: 240px;
    height: 160px;
    bottom: 100px;
  }

  .overview-stat-num {
    font-size: 40px;
    line-height: 50px;
  }
  .overview-stat-unit {
    font-size: 28px;
  }
  .overview-stat-label {
    font-size: 18px;
  }

  /* Footer mobile */
  .site-footer {
    padding: 40px 20px 0;
  }
  .footer-logo-wrap {
    margin-bottom: 16px;
  }
  .footer-logo {
    max-height: 62px;
  }
  .footer-tagline {
    margin: 24px auto 32px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 0 80px;
  }
  .footer-copyright {
    font-size: 14px;
  }
  .footer-credit {
    font-size: 14px;
  }
  .footer-tagline {
    font-size: 14px;
    line-height: 26px;
  }
  .footer-qr-row {
    gap: 24px;
  }
  .footer-qr-img {
    width: 70px;
    height: 70px;
  }

  .jkb-modal .modal-dialog {
    max-width: calc(100% - 32px);
  }
  .jkb-modal-form-only {
    padding: 2rem 1.5rem;
  }
  .jkb-modal-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  /* Overview stats mobile */
  .about-bullets-col {
    padding: 40px 0 30px;
  }

  .overview-stat-num {
    font-size: 36px;
    line-height: 44px;
  }
  .overview-stat-unit {
    font-size: 24px;
  }
  .overview-stat-label {
    font-size: 16px;
    line-height: 26px;
    max-width: 160px;
  }

  /* FAQ mobile */
  .section-faq {
    padding: 50px 0;
  }
  .faq-header {
    margin-bottom: 32px;
  }
  .faq-heading {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
  .faq-subtitle {
    font-size: 16px;
    line-height: 28px;
  }
  .faq-q-text {
    font-size: 18px;
    line-height: 30px;
  }
  .faq-toggle {
    width: 34px;
    height: 34px;
  }
  .faq-question {
    padding: 18px 18px;
    gap: 16px;
  }
  .faq-answer {
    max-width: 100%;
  }
  .faq-answer p {
    font-size: 14px;
    line-height: 26px;
  }

  /* Contact CTA mobile */
  .section-contact-cta {
    padding: 50px 0;
  }
  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-cta-heading {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
  .contact-cta-desc {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-cta-card {
    padding: 32px 24px 40px;
  }
  .contact-card-title {
    font-size: 29px !important;
    line-height: 38px !important;
  }
  .contact-card-sub {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 28px;
  }
  .contact-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  /* Stacked fields sit flush here, so the message needs its own breathing
     room before the next field. */
  .contact-field--phone .invalid-feedback {
    margin-bottom: 10px;
  }
  .contact-field .form-control {
    padding: 14px 0 14px 8px;
    font-size: 16px;
  }
  .contact-field .form-control::placeholder {
    font-size: 16px;
  }
  .contact-cc {
    font-size: 16px;
  }
  .contact-field--full {
    margin-bottom: 24px;
  }
  .contact-agree {
    gap: 12px;
    margin-bottom: 20px;
  }
  .contact-agree .form-check-input {
    width: 18px;
    height: 18px;
  }
  .contact-agree .form-check-label {
    font-size: 14px;
    line-height: 24px;
  }

  /* Mobile CTA bar */
  .mobile-fixed-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 0;
    -webkit-filter: none;
    filter: none;
    -webkit-box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  }
  .mobile-fixed-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .mobile-fixed-content .btn-fixed {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffd109;
    color: var(--black);
    font-weight: 700;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
   
   
    padding: 0.85rem 0.5rem;
    position: static;
    cursor: pointer;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    /* let the longer label wrap instead of stretching its half of the bar */
    min-width: 0;
    line-height: 1.25;
    text-align: center;
  }
  .mobile-fixed-content .btn-fixed .txt {
    min-width: 0;
  }
  .mob-btn-divider {
    width: 1px;
    background: rgba(17, 17, 17, 0.3);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .mobile-fixed-content .btn-fixed span.icon {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .mobile-fixed-content .btn-fixed span.icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
}

@media only screen and (max-width: 576px) {
  .mobile-fixed-content .btn-fixed {
    font-size: 0.78rem;
    padding: 0.85rem 0.4rem;
  }

  /* Enquiry modal heading very small */
  .jkb-modal-title {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  /* FAQ very small */
  .faq-heading {
    font-size: 28px !important;
  }
  .faq-q-text {
    font-size: 16px;
    line-height: 28px;
  }
  .faq-toggle {
    width: 32px;
    height: 32px;
  }

  /* Contact CTA very small */
  .contact-cta-card {
    padding: 28px 18px 36px;
  }
  .contact-card-title {
    font-size: 25px !important;
    line-height: 33px !important;
  }
  .contact-cta-heading {
    font-size: 28px !important;
  }

  /* Product stats very small */
  .product-stat-num {
    font-size: 46px;
  }
  .product-soon-label {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
  .product-quote {
    font-size: 22px !important;
    line-height: 36px !important;
  }
  .product-quote-wrap {
    padding: 24px 16px 40px;
  }
  .product-stats-row {
    padding: 0 8px;
  }
  .product-stat {
    padding: 20px 10px;
  }

  /* About very small */
  .about-heading {
    font-size: 28px !important;
  }
}

@media only screen and (max-width: 450px) {
  .nav-menu-text {
    display: none;
  }
  .nav-contact-btn {
    font-size: 11px;
    padding: 7px 12px;
    letter-spacing: 0.5px;
  }
  .nav-logo .logo {
    height: 40px;
  }
  .mobile-fixed-content .btn-fixed {
    font-size: 0.675rem;
    padding: 0.8rem 0.3rem;
  }
  .btn-fixed span.icon {
    width: 16px;
    height: 16px;
  }

  /* Contact very small phone */
  .contact-cta-card {
    padding: 24px 16px 32px;
  }
  .contact-card-sub {
    margin-bottom: 22px;
  }
  .contact-submit {
    font-size: 15px;
    letter-spacing: 0.5px;
    height: 54px;
  }
}

/* ================================
   SECTION: RECLAIM — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-reclaim {
    padding: 60px 60px;
  }
  .reclaim-grid {
    gap: 50px;
  }
  .reclaim-heading {
    font-size: 54px !important;
  }
  .reclaim-card {
    padding: 40px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .section-reclaim {
    padding: 56px 40px;
  }
  .reclaim-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reclaim-desc {
    max-width: 640px;
  }
  .reclaim-heading {
    font-size: 50px !important;
  }
}

@media only screen and (max-width: 767px) {
  .section-reclaim {
    padding: 64px 22px;
    /* fixed attachment is unreliable on mobile — pin the image normally */
    background-attachment: scroll;
  }
  .reclaim-butterfly {
    height: 26px;
    margin-bottom: 18px;
  }
  .reclaim-eyebrow {
    font-size: 22px;
  }
  .reclaim-heading {
    font-size: 40px !important;
    margin-bottom: 20px !important;
  }
  .reclaim-desc {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 22px !important;
  }
  .reclaim-tagline {
    font-size: 21px;
  }
  .reclaim-card {
    padding: 30px 24px;
  }
  .reclaim-highlight {
    gap: 16px;
    padding: 18px 0;
  }
  .reclaim-hl-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .reclaim-hl-text {
    font-size: 16px;
    line-height: 26px;
    padding-top: 7px;
  }
  .reclaim-footnote {
    margin-top: 32px !important;
  }
}

@media only screen and (max-width: 576px) {
  .section-reclaim {
    padding: 52px 18px;
  }
  .reclaim-eyebrow {
    font-size: 20px;
  }
  .reclaim-heading {
    font-size: 34px !important;
  }
  .reclaim-card {
    padding: 26px 20px;
  }
  .reclaim-hl-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .reclaim-hl-text {
    padding-top: 5px;
  }
}

/* ================================
   SECTION: GROWTH CORRIDOR — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-growth {
    padding: 70px 60px;
  }
  .growth-heading {
    font-size: 46px !important;
  }
  .growth-stats {
    gap: 20px;
  }
  .growth-stat {
    padding: 34px 22px;
  }
  .growth-stat-num {
    font-size: 52px;
  }
  .growth-stat-unit {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .section-growth {
    padding: 60px 40px;
  }
  .growth-header {
    margin-bottom: 44px;
  }
  .growth-eyebrow {
    font-size: 22px;
  }
  .growth-heading {
    font-size: 40px !important;
  }
  .growth-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .section-growth {
    padding: 54px 22px;
  }
  .growth-eyebrow {
    font-size: 20px;
  }
  .growth-heading {
    font-size: 32px !important;
  }
  .growth-desc {
    font-size: 16px;
    line-height: 30px;
  }

  /* One stat card per view (Owl carousel handles the sliding) */
  .growth-stats {
    grid-template-columns: 1fr;
  }
  .growth-stat-num {
    font-size: 48px;
  }
  .growth-stat-line {
    margin: 16px 0;
  }
  .growth-cta-wrap {
    margin-top: 28px;
  }
}

@media only screen and (max-width: 576px) {
  .section-growth {
    padding: 48px 18px;
  }
  .growth-cta {
    width: 100%;
    max-width: 320px;
  }
  .growth-heading {
    font-size: 30px !important;
  }
  .growth-stat {
    padding: 32px 24px;
  }
}

/* ================================
   SECTION: INFRASTRUCTURE — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-infra {
    padding: 70px 60px;
  }
  .infra-heading {
    font-size: 46px !important;
  }
  .infra-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .section-infra {
    padding: 60px 40px;
  }
  .infra-header {
    margin-bottom: 44px;
  }
  .infra-heading {
    font-size: 40px !important;
  }
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .section-infra {
    padding: 54px 22px;
  }
  .infra-heading {
    font-size: 32px !important;
  }
  .infra-subtitle {
    font-size: 16px;
    line-height: 28px;
  }

  /* One card per view (Owl carousel handles the sliding) */
  .infra-grid {
    grid-template-columns: 1fr;
  }
  .infra-card-title {
    font-size: 24px !important;
  }
}

@media only screen and (max-width: 576px) {
  .section-infra {
    padding: 48px 18px;
  }
  .infra-heading {
    font-size: 30px !important;
  }
}

/* ===== FEATURED LIFESTYLE / VIDEO — RESPONSIVE ===== */
@media only screen and (max-width: 1199px) {
  .section-lifestyle {
    padding: 70px 60px;
  }
  .lifestyle-inner {
    gap: 50px;
  }
  .lifestyle-heading {
    font-size: 46px !important;
  }
  .lifestyle-media {
    max-width: 330px;
  }
}

@media only screen and (max-width: 991px) {
  .section-lifestyle {
    padding: 60px 40px;
  }
  .lifestyle-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
  .lifestyle-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  .lifestyle-media {
    max-width: 340px;
    margin: 0 auto;
  }
  .lifestyle-heading {
    font-size: 40px !important;
  }
}

@media only screen and (max-width: 767px) {
  .section-lifestyle {
    padding: 54px 22px;
  }
  .lifestyle-heading {
    font-size: 32px !important;
  }
  .lifestyle-desc {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 28px;
  }
  .lifestyle-media {
    max-width: 300px;
  }
  .lifestyle-poster {
    border-radius: 12px;
  }
  .lifestyle-play {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 576px) {
  .section-lifestyle {
    padding: 48px 18px;
  }
  .lifestyle-heading {
    font-size: 30px !important;
  }
  .lifestyle-media {
    max-width: 270px;
  }
  .lifestyle-play {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}

/* ================================
   SECTION: REVIVE — Philosophy + Fact Strip (directly below hero banner)
   Immersive dark band over a forest backdrop, centered editorial headline,
   gold-accented fact grid and a single brochure CTA.
   ================================ */
.section-revive {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 100px;
  background-color: #0a0906;
  background-image: url("../assets/images/banner/w2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Vertical + radial overlay so the centered copy stays legible */
.revive-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    -webkit-radial-gradient(
      50% 40%,
      ellipse,
      rgba(8, 6, 3, 0.45) 0%,
      rgba(8, 6, 3, 0.82) 100%
    ),
    -webkit-linear-gradient(
      top,
      rgba(8, 6, 3, 0.85) 0%,
      rgba(8, 6, 3, 0.6) 45%,
      rgba(8, 6, 3, 0.92) 100%
    );
  background:
    radial-gradient(
      ellipse at 50% 40%,
      rgba(8, 6, 3, 0.45) 0%,
      rgba(8, 6, 3, 0.82) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 6, 3, 0.85) 0%,
      rgba(8, 6, 3, 0.6) 45%,
      rgba(8, 6, 3, 0.92) 100%
    );
}

.revive-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
}

/* ---- Split layout: narrative left, highlights card right ---- */
.revive-grid {
  display: grid;
  /* Centred stack, same rhythm as .growth-header + .growth-film: narrative
     first, the film centred beneath it. */
  grid-template-columns: 1fr;
  gap: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ---- Left: philosophy narrative ---- */
.revive-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.revive-butterfly {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.revive-eyebrow {
  display: inline-block;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.revive-heading {
  font-size: 42px !important;
  line-height: 1.14 !important;
  color: #ffffff !important;
  max-width: 860px;
  margin: 0 auto 24px !important;
}
.revive-heading em {
  font-style: italic;
  color: var(--gold) !important;
}
.revive-rule {
  display: block;
  width: 120px;
  height: 1px;
  /* Symmetric fade now that it sits centred under the heading. */
  background: -webkit-linear-gradient(
    left,
    rgba(196, 162, 74, 0) 0%,
    var(--gold) 50%,
    rgba(196, 162, 74, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(196, 162, 74, 0) 0%,
    var(--gold) 50%,
    rgba(196, 162, 74, 0) 100%
  );
  margin: 0 auto 24px;
}
.revive-desc {
  font-size: 18px;
  line-height: 34px;
  color: #e9e1cf !important;
  max-width: 860px;
  margin: 0 auto 34px !important;
}

/* ---- Right: glassy highlights card ---- */
.revive-card {
  background: rgba(8, 15, 10, 0.55);
  border: 1px solid rgba(196, 162, 74, 0.28);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  padding: 34px 44px;
  border-radius: 2px;
}
.revive-highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.revive-highlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.revive-highlight:first-child {
  padding-top: 0;
}
.revive-highlight:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.revive-hl-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(196, 162, 74, 0.4);
  background: rgba(196, 162, 74, 0.08);
  color: var(--gold);
  font-size: 18px;
  -webkit-transition: background 0.35s ease, border-color 0.35s ease;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.revive-highlight:hover .revive-hl-icon {
  background: rgba(196, 162, 74, 0.18);
  border-color: rgba(196, 162, 74, 0.75);
}
.revive-hl-text {
  font-size: 17px;
  line-height: 27px;
  color: #e9e1cf;
}
.revive-hl-text strong {
  color: var(--gold);
}

/* ---- CTA + footnotes ---- */
.revive-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background-color: #00652e;
  color: #fff !important;
  padding: 14px 34px;
  font-size: 18px;
  line-height: 26px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.revive-cta:hover {
  background-color: #00521f;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.revive-cta i {
  font-size: 15px;
}
.revive-footnote {
  margin: 44px auto 0 !important;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: rgba(233, 225, 207, 0.6);
  max-width: 760px;
  text-align: center;
}

/* ================================
   SECTION: REVIVE — Responsive
   ================================ */
@media only screen and (max-width: 1199px) {
  .section-revive {
    padding: 80px 60px;
  }
  .revive-film {
    margin-top: 44px;
  }
  .revive-eyebrow {
    font-size: 20px;
  }
  .revive-heading {
    font-size: 36px !important;
  }
  .revive-desc {
    font-size: 17px;
    line-height: 32px;
  }
  .revive-card {
    padding: 30px 32px;
  }
  .revive-highlight {
    gap: 16px;
    padding: 14px 0;
  }
  .revive-hl-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .revive-hl-text {
    font-size: 16px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .section-revive {
    padding: 70px 40px;
  }
  .revive-film {
    margin-top: 38px;
  }
  .revive-heading {
    font-size: 34px !important;
    max-width: none;
  }
  .revive-desc {
    max-width: none;
  }
  .revive-footnote {
    margin-top: 34px !important;
  }
}

@media only screen and (max-width: 767px) {
  .section-revive {
    padding: 60px 22px;
    /* fixed attachment is unreliable on mobile — pin the image normally */
    background-attachment: scroll;
  }
  .revive-butterfly {
    height: 26px;
    margin-bottom: 16px;
  }
  .revive-eyebrow {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .revive-heading {
    font-size: 29px !important;
    margin-bottom: 20px !important;
  }
  .revive-rule {
    margin-bottom: 20px;
  }
  .revive-desc {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 28px !important;
  }
  .revive-card {
    padding: 24px 20px;
  }
  .revive-highlight {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
  }
  .revive-hl-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .revive-hl-text {
    font-size: 15px;
    line-height: 24px;
    padding-top: 7px;
  }
  /* compact pill — sized to its text, never edge-to-edge */
  .revive-cta {
    font-size: 13px;
    line-height: 20px;
    padding: 12px 22px;
    gap: 10px;
    letter-spacing: 0.5px;
  }
  .revive-cta i {
    font-size: 13px;
  }
}

@media only screen and (max-width: 576px) {
  .section-revive {
    padding: 52px 18px;
  }
  .revive-eyebrow {
    font-size: 17px;
  }
  .revive-heading {
    font-size: 26px !important;
  }
  .revive-desc {
    font-size: 15px;
    line-height: 28px;
  }
  .revive-cta {
    font-size: 12px;
    padding: 11px 18px;
    letter-spacing: 0.4px;
  }
  .revive-footnote {
    font-size: 11px;
    line-height: 18px;
  }
}

/* ================================
   MASTER PLAN — its own section, on the same flat white ground the other
   light sections use (no background image). White rather than the #f3f3f1
   tint because .section-growth directly below is #f3f3f1 and the two would
   run together with no seam.
   ================================ */
.section-masterplan {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 100px;
  background: #fff;
}
.masterplan-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
}

/* ---- Header ---- */
.masterplan-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.masterplan-eyebrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: #00652e;
  margin-bottom: 18px;
}
.masterplan-heading {
  font-size: 56px !important;
  line-height: 1.1 !important;
  color: #231f20 !important;
  max-width: 1000px;
  margin: 0 0 26px !important;
}
.masterplan-heading em {
  font-style: italic;
  color: #00652e !important;
}
.masterplan-rule {
  display: block;
  width: 90px;
  height: 1px;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 101, 46, 0) 0%,
    #00652e 50%,
    rgba(0, 101, 46, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 101, 46, 0) 0%,
    #00652e 50%,
    rgba(0, 101, 46, 0) 100%
  );
  margin-bottom: 26px;
}
.masterplan-desc {
  font-size: 18px;
  line-height: 34px;
  color: #4a4340 !important;
  max-width: 940px;
  margin: 0 !important;
}

/* ---- Locked / blurred plan ---- */
.masterplan-media {
  width: 100%;
  max-width: 820px;
  margin: 50px auto 0;
}
/* Fixed window sized to the plan's own 5:3 ratio (1439/2400 = 59.96%), so it
   is framed rather than driving the section height. padding-top keeps this
   working without aspect-ratio support. */
.masterplan-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: 0;
  padding-top: 60%;
  border: 1px solid rgba(0, 101, 46, 0.4);
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: border-color 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.masterplan-frame:hover,
.masterplan-frame:focus-visible {
  border-color: #00652e;
  -webkit-box-shadow: 0 18px 44px rgba(35, 31, 32, 0.18);
  box-shadow: 0 18px 44px rgba(35, 31, 32, 0.18);
  outline: none;
}
.masterplan-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  /* Blur is applied here, over the full-resolution plan. */
  -webkit-filter: blur(14px) saturate(0.95) brightness(0.96);
  filter: blur(14px) saturate(0.95) brightness(0.96);
  /* Overscale so the blur doesn't feather the frame edges. */
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
}
.masterplan-frame:hover .masterplan-img {
  -webkit-transform: scale(1.11);
  -ms-transform: scale(1.11);
  transform: scale(1.11);
}
.masterplan-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    -webkit-radial-gradient(
      50% 50%,
      ellipse,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.52) 100%
    );
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.52) 100%
    );
}

.masterplan-lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
}
.masterplan-lock-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(0, 101, 46, 0.5);
  background: rgba(255, 255, 255, 0.85);
  color: #00652e;
  font-size: 24px;
  margin-bottom: 22px;
  -webkit-transition: background-color 0.35s ease, -webkit-transform 0.35s ease;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
.masterplan-frame:hover .masterplan-lock-icon {
  background: #ffffff;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.masterplan-lock-title {
  font-size: 30px;
  line-height: 1.2;
  color: #231f20;
  margin-bottom: 10px;
}
.masterplan-lock-text {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(35, 31, 32, 0.72);
  margin-bottom: 26px;
  max-width: 420px;
}
.masterplan-lock-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background-color: #00652e;
  color: #fff;
  padding: 13px 30px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.masterplan-frame:hover .masterplan-lock-cta {
  background-color: #00521f;
}

/* ---- CTA + footnote ---- */
.masterplan-cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}
.masterplan-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background-color: #00652e;
  color: #fff !important;
  padding: 14px 34px;
  font-size: 18px;
  line-height: 26px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.masterplan-cta:hover {
  background-color: #00521f;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.masterplan-cta i {
  font-size: 15px;
}
.masterplan-footnote {
  margin: 26px 0 0 !important;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: rgba(35, 31, 32, 0.55);
  max-width: 760px;
}

/* ================================
   SECTION: MASTER PLAN — Responsive
   ================================ */
@media (max-width: 1399px) {
  .section-masterplan {
    padding: 70px 60px;
  }
  .masterplan-heading {
    font-size: 48px !important;
  }
}

@media (max-width: 1199px) {
  .section-masterplan {
    padding: 60px 40px;
  }
  .masterplan-heading {
    font-size: 42px !important;
  }
  .masterplan-desc {
    font-size: 17px;
    line-height: 31px;
  }
  .masterplan-lock-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .section-masterplan {
    padding: 54px 22px;
  }
  .masterplan-eyebrow {
    font-size: 11px;
    letter-spacing: 2.6px;
    margin-bottom: 14px;
  }
  .masterplan-heading {
    font-size: 30px !important;
    margin: 0 0 20px !important;
  }
  .masterplan-rule {
    width: 70px;
    margin-bottom: 20px;
  }
  .masterplan-desc {
    font-size: 15px;
    line-height: 27px;
  }
  .masterplan-media {
    margin-top: 36px;
  }
  .masterplan-frame {
    padding-top: 68%;
  }
  .masterplan-img {
    -webkit-filter: blur(10px) saturate(0.9) brightness(0.94);
    filter: blur(10px) saturate(0.9) brightness(0.94);
  }
  .masterplan-lock {
    padding: 16px;
  }
  .masterplan-lock-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 14px;
  }
  .masterplan-lock-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .masterplan-lock-text {
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
  }
  .masterplan-lock-cta {
    font-size: 12px;
    padding: 11px 22px;
    gap: 9px;
  }
  .masterplan-cta-wrap {
    margin-top: 32px;
  }
  .masterplan-cta {
    font-size: 14px;
    line-height: 22px;
    padding: 13px 24px;
  }
  .masterplan-cta i {
    font-size: 13px;
  }
  .masterplan-footnote {
    margin-top: 20px !important;
    font-size: 11px;
    line-height: 18px;
  }
}

@media (max-width: 479px) {
  .section-masterplan {
    padding: 48px 18px;
  }
  .masterplan-heading {
    font-size: 26px !important;
  }
  .masterplan-lock-title {
    font-size: 19px;
  }
  .masterplan-lock-text {
    margin-bottom: 14px;
  }
}

/* ---- Thank-you page: unlocked master plan ---- */
.ty-masterplan {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.ty-masterplan-figure {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.ty-masterplan-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.ty-masterplan-note {
  font-size: 12px;
  line-height: 20px;
  color: rgba(35, 31, 32, 0.6);
  text-align: center;
}

/* ================================
   UNIT PLANS — light section, slider of blurred plans.
   #f3f3f1 is the page's alternate tint (growth / gallery / trust), so it
   reads against the white .section-masterplan above and the white
   .section-amenities below.
   ================================ */
.section-unitplan {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 100px;
  background: #f3f3f1;
}
.unitplan-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
}

/* ---- Header ---- */
.unitplan-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.unitplan-eyebrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: #00652e;
  margin-bottom: 18px;
}
.unitplan-heading {
  font-size: 56px !important;
  line-height: 1.1 !important;
  color: #231f20 !important;
  max-width: 1000px;
  margin: 0 0 26px !important;
}
.unitplan-heading em {
  font-style: italic;
  color: #00652e !important;
}
.unitplan-rule {
  display: block;
  width: 90px;
  height: 1px;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 101, 46, 0) 0%,
    #00652e 50%,
    rgba(0, 101, 46, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 101, 46, 0) 0%,
    #00652e 50%,
    rgba(0, 101, 46, 0) 100%
  );
  margin-bottom: 26px;
}
.unitplan-desc {
  font-size: 18px;
  line-height: 34px;
  color: #4a4340 !important;
  max-width: 940px;
  margin: 0 !important;
}

/* ---- Slider ---- */
.unitplan-slider {
  width: 100%;
  max-width: 820px;
  margin: 50px auto 0;
}
.unitplan-swiper {
  width: 100%;
}
/* Before Swiper initialises, keep only the first slide visible so the
   un-styled wrapper doesn't stack all six plans down the page. */
.unitplan-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

/* Fixed window at the plans' own ratio (1131/1600 = 70.7%). */
.unitplan-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: 0;
  padding-top: 70.7%;
  border: 1px solid rgba(0, 101, 46, 0.4);
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: border-color 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.unitplan-frame:hover,
.unitplan-frame:focus-visible {
  border-color: #00652e;
  -webkit-box-shadow: 0 18px 44px rgba(35, 31, 32, 0.18);
  box-shadow: 0 18px 44px rgba(35, 31, 32, 0.18);
  outline: none;
}
.unitplan-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  /* Blur applied here, over the full-resolution plan. */
  -webkit-filter: blur(14px) saturate(0.95) brightness(0.98);
  filter: blur(14px) saturate(0.95) brightness(0.98);
  /* Overscale so the blur doesn't feather the frame edges. */
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
}
.unitplan-frame:hover .unitplan-img {
  -webkit-transform: scale(1.11);
  -ms-transform: scale(1.11);
  transform: scale(1.11);
}
.unitplan-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    -webkit-radial-gradient(
      50% 50%,
      ellipse,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.52) 100%
    );
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.52) 100%
    );
}
.unitplan-lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
}
.unitplan-lock-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(0, 101, 46, 0.5);
  background: rgba(255, 255, 255, 0.85);
  color: #00652e;
  font-size: 22px;
  margin-bottom: 20px;
  -webkit-transition: background-color 0.35s ease, -webkit-transform 0.35s ease;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
.unitplan-frame:hover .unitplan-lock-icon {
  background: #ffffff;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.unitplan-lock-title {
  font-size: 30px;
  line-height: 1.2;
  color: #231f20;
  margin-bottom: 8px;
}
.unitplan-lock-meta {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(35, 31, 32, 0.72);
  margin-bottom: 24px;
}
.unitplan-lock-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background-color: #00652e;
  color: #fff;
  padding: 13px 30px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.unitplan-frame:hover .unitplan-lock-cta {
  background-color: #00521f;
}

/* ---- Slider controls ---- */
.unitplan-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.unitplan-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 101, 46, 0.4);
  background: transparent;
  color: #00652e;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.unitplan-nav:hover {
  background: #00652e;
  color: #fff;
}
.unitplan-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.unitplan-nav.swiper-button-disabled:hover {
  background: transparent;
  color: #00652e;
}
.unitplan-dots {
  position: static !important;
  width: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.unitplan-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(35, 31, 32, 0.25);
  opacity: 1;
}
.unitplan-dots .swiper-pagination-bullet-active {
  background: #00652e;
}

/* ---- CTA + footnote ---- */
.unitplan-cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 44px;
}
.unitplan-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background-color: #00652e;
  color: #fff !important;
  padding: 14px 34px;
  font-size: 18px;
  line-height: 26px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.unitplan-cta:hover {
  background-color: #00521f;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.unitplan-cta i {
  font-size: 15px;
}
.unitplan-footnote {
  margin: 26px 0 0 !important;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: rgba(35, 31, 32, 0.55);
  max-width: 760px;
}

/* ================================
   UNIT PLANS — Responsive
   ================================ */
@media (max-width: 1399px) {
  .section-unitplan {
    padding: 70px 60px;
  }
  .unitplan-heading {
    font-size: 48px !important;
  }
}

@media (max-width: 1199px) {
  .section-unitplan {
    padding: 60px 40px;
  }
  .unitplan-heading {
    font-size: 42px !important;
  }
  .unitplan-desc {
    font-size: 17px;
    line-height: 31px;
  }
  .unitplan-lock-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .section-unitplan {
    padding: 54px 22px;
  }
  .unitplan-eyebrow {
    font-size: 11px;
    letter-spacing: 2.6px;
    margin-bottom: 14px;
  }
  .unitplan-heading {
    font-size: 30px !important;
    margin: 0 0 20px !important;
  }
  .unitplan-rule {
    width: 70px;
    margin-bottom: 20px;
  }
  .unitplan-desc {
    font-size: 15px;
    line-height: 27px;
  }
  .unitplan-slider {
    margin-top: 34px;
  }
  .unitplan-img {
    -webkit-filter: blur(10px) saturate(0.95) brightness(0.98);
    filter: blur(10px) saturate(0.95) brightness(0.98);
  }
  .unitplan-lock {
    padding: 16px;
  }
  .unitplan-lock-icon {
    width: 46px;
    height: 46px;
    font-size: 17px;
    margin-bottom: 14px;
  }
  .unitplan-lock-title {
    font-size: 21px;
    margin-bottom: 6px;
  }
  .unitplan-lock-meta {
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
  }
  .unitplan-lock-cta {
    font-size: 12px;
    padding: 11px 22px;
    gap: 9px;
  }
  .unitplan-controls {
    gap: 14px;
    margin-top: 20px;
  }
  .unitplan-nav {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .unitplan-cta-wrap {
    margin-top: 30px;
  }
  .unitplan-cta {
    font-size: 14px;
    line-height: 22px;
    padding: 13px 24px;
  }
  .unitplan-cta i {
    font-size: 13px;
  }
  .unitplan-footnote {
    margin-top: 20px !important;
    font-size: 11px;
    line-height: 18px;
  }
}

@media (max-width: 479px) {
  .section-unitplan {
    padding: 48px 18px;
  }
  .unitplan-heading {
    font-size: 26px !important;
  }
  .unitplan-lock-title {
    font-size: 18px;
  }
}

/* ---- Thank-you page: unlocked unit plans ---- */
.ty-unitplan {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.ty-unitplan-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.ty-unitplan-figure {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.ty-unitplan-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.ty-unitplan-cap {
  margin: 12px 0 0 !important;
  font-family: var(--font-gotham);
  font-size: 14px;
  line-height: 22px;
  color: #231f20;
  text-align: center;
}
.ty-unitplan-cap span {
  font-size: 12px;
  color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 767px) {
  .ty-unitplan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ================================
   LOCKED FILM POSTERS — blurred stills that open the enquiry form; the
   thank-you page then sends the visitor on to the matching YouTube film.
   Two live on the page: the walkthrough inside .revive-card (dark variant,
   further down) and the location film in .growth-film. Frame mechanics mirror
   .masterplan-frame — blur on the image, scrim and lock overlay above it, the
   whole tile one button targeting #mainModalPopup.
   ================================ */
/* Location film, sitting where the growth stat cards used to be. */
.growth-film {
  width: 100%;
  max-width: 820px;
  margin: 50px auto 0;
}
.films-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: 0;
  padding-top: 56.25%;
  border: 1px solid rgba(0, 101, 46, 0.4);
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: border-color 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.films-frame:hover,
.films-frame:focus-visible {
  border-color: #00652e;
  -webkit-box-shadow: 0 18px 44px rgba(35, 31, 32, 0.18);
  box-shadow: 0 18px 44px rgba(35, 31, 32, 0.18);
  outline: none;
}
.films-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  /* Blur is applied here, over the full-resolution still. */
  -webkit-filter: blur(14px) saturate(0.95) brightness(0.96);
  filter: blur(14px) saturate(0.95) brightness(0.96);
  /* Overscale so the blur doesn't feather the frame edges. */
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
}
.films-frame:hover .films-img {
  -webkit-transform: scale(1.11);
  -ms-transform: scale(1.11);
  transform: scale(1.11);
}
.films-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: -webkit-radial-gradient(
    50% 50%,
    ellipse,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.48) 100%
  );
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.48) 100%
  );
}
.films-lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
}
.films-lock-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(0, 101, 46, 0.5);
  background: rgba(255, 255, 255, 0.85);
  color: #00652e;
  font-size: 20px;
  /* Optical centering for the play triangle. */
  padding-left: 4px;
  margin-bottom: 20px;
  -webkit-transition: background-color 0.35s ease, -webkit-transform 0.35s ease;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
.films-frame:hover .films-lock-icon {
  background: #ffffff;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.films-lock-title {
  font-size: 30px;
  line-height: 1.2;
  color: #231f20;
  margin-bottom: 10px;
}
.films-lock-text {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(35, 31, 32, 0.72);
  margin-bottom: 22px;
  max-width: 380px;
}
.films-lock-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background-color: #00652e;
  color: #fff;
  padding: 13px 30px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.films-frame:hover .films-lock-cta {
  background-color: #00521f;
}

@media (max-width: 1199px) {
  .growth-film {
    margin-top: 40px;
  }
  .films-lock-title {
    font-size: 24px;
  }
  .films-lock-cta {
    padding: 11px 24px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .growth-film {
    margin-top: 32px;
  }
  .films-img {
    -webkit-filter: blur(9px) saturate(0.95) brightness(0.96);
    filter: blur(9px) saturate(0.95) brightness(0.96);
  }
  .films-lock {
    padding: 16px;
  }
  .films-lock-icon {
    width: 46px;
    height: 46px;
    font-size: 16px;
    margin-bottom: 14px;
  }
  .films-lock-title {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .films-lock-text {
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
  }
  .films-lock-cta {
    padding: 10px 20px;
    font-size: 12px;
    gap: 8px;
  }
}

/* ---- Dark variant: the walkthrough film sitting in .revive-card, on the
   dark #section-revive ground. Same frame mechanics as .films-frame, gold
   furniture instead of green so it matches the section it now lives in. ---- */
/* Portrait card: the poster is the whole tile, so the glass wrapper carries no
   padding and the column narrows to let the frame stand tall. */
.revive-card--film {
  padding: 0;
  overflow: hidden;
  width: 100%;
  max-width: 820px;
  justify-self: center;
}
/* 16:9 landscape window (9/16 = 56.25%) — the same ratio as the still, so the
   poster fills the frame without object-fit cropping it. */
.films-frame--dark {
  padding-top: 56.25%;
}
.films-frame--dark {
  border-color: rgba(196, 162, 74, 0.35);
  background: #0a0906;
}
.films-frame--dark:hover,
.films-frame--dark:focus-visible {
  border-color: var(--gold);
  -webkit-box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.films-frame--dark .films-img {
  -webkit-filter: blur(14px) saturate(0.9) brightness(0.62);
  filter: blur(14px) saturate(0.9) brightness(0.62);
}
.films-frame--dark .films-scrim {
  background: -webkit-radial-gradient(
    50% 50%,
    ellipse,
    rgba(8, 6, 3, 0.5) 0%,
    rgba(8, 6, 3, 0.82) 100%
  );
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(8, 6, 3, 0.5) 0%,
    rgba(8, 6, 3, 0.82) 100%
  );
}
.films-frame--dark .films-lock-icon {
  border-color: rgba(196, 162, 74, 0.5);
  background: rgba(196, 162, 74, 0.1);
  color: var(--gold);
}
.films-frame--dark:hover .films-lock-icon {
  background: rgba(196, 162, 74, 0.22);
  border-color: var(--gold);
}
.films-frame--dark .films-lock-title {
  color: #ffffff;
}
.films-frame--dark .films-lock-text {
  color: rgba(233, 225, 207, 0.78);
}
.films-frame--dark .films-lock-cta {
  background-color: var(--gold);
  color: #10100c;
}
.films-frame--dark:hover .films-lock-cta {
  background-color: #d9b85c;
}
@media (max-width: 767px) {
  .films-frame--dark .films-img {
    -webkit-filter: blur(9px) saturate(0.9) brightness(0.62);
    filter: blur(9px) saturate(0.9) brightness(0.62);
  }
  .films-frame--dark .films-lock {
    padding: 16px;
  }
  .films-frame--dark .films-lock-title {
    font-size: 22px;
  }
}

/* ---- Walkthrough film column: title and sub-head above the portrait card,
   so the poster carries only the play affordance and the CTA. ---- */
.revive-film {
  width: 100%;
  max-width: 820px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.revive-film-head {
  width: 100%;
  max-width: 820px;
  text-align: center;
  margin-bottom: 22px;
}
.revive-film-title {
  font-size: 34px !important;
  line-height: 1.16 !important;
  color: #ffffff !important;
  margin: 0 0 10px !important;
}
.revive-film-title em {
  font-style: italic;
  color: var(--gold) !important;
}
/* The three brand verbs pick up the section's gold. */
.revive-film-accent {
  color: var(--gold);
}
.revive-film-sub {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.4px;
  color: rgba(233, 225, 207, 0.82) !important;
  margin: 0 auto !important;
  max-width: 480px;
}
@media only screen and (max-width: 1199px) {
  .revive-film-title {
    font-size: 30px !important;
  }
  .revive-film-head {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .revive-film-title {
    font-size: 26px !important;
  }
  .revive-film-sub {
    font-size: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .revive-film-title {
    font-size: 24px !important;
  }
  .revive-film-head {
    margin-bottom: 16px;
  }
}

/* The portrait frame is narrower than the landscape one — pull the lock
   furniture in so it never crowds the edges. */
.films-frame--dark .films-lock {
  padding: 20px;
}
.films-frame--dark .films-lock-title {
  font-size: 26px;
}
.films-frame--dark .films-lock-text {
  max-width: 260px;
}

@media (max-width: 991px) {
  /* Single-column grid below 991px — centre the card rather than stretching it. */
  .revive-card--film {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
