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

/* Myriad Pro — loaded from local OTF files */
@font-face {
  font-family: "Myriad Pro";
  src: url("../assets/fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../assets/fonts/MyriadPro-Light.otf") format("opentype");
  font-weight: 300;
  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;

  /* Exact Figma fonts */
  --font-display: "Cormorant", Georgia, serif; /* Cormorant — all headings */
  --font-body:
    "Myriad Pro", "Myriad", sans-serif; /* Myriad Pro — body, buttons, stats labels */
  --font-gotham:
    "Montserrat", "Gill Sans MT", sans-serif; /* Gotham substitute — nav, captions */
  --font-neoris:
    "Inter", "Segoe UI", sans-serif; /* TT Neoris substitute — spec labels, FAQ answers */
  --font-neue:
    "DM Sans", "Segoe UI", sans-serif; /* PP Neue Montreal substitute — FAQ toggles */

  --font-cormorant: "Cormorant", Georgia, serif;
  --radius-full: 100px;
}

html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

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-body);
  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 {
  font-family: var(--font-display) !important;
  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;
  display: block;
}
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-family: var(--font-gotham);
  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-family: var(--font-gotham);
  font-size: 16px;
  font-weight: 500;
  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-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  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;
  height: 100vh;
  margin-top: 80px;
}

/* Owl Carousel fills full height */
.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
  height: 100%;
}

/* Each slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  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-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  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-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  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);
}

/* ================================
   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(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--white);
  padding: 0.6rem 1.6rem;
  background: #ffd109;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  -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;
}

.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(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem 1.6rem;
  border-radius: 10px;
  background: #ffd109;
  border: 1px solid var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  -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;
}

/* ================================
   MOBILE FIXED CTA BAR
   ================================ */
.mobile-fixed-button {
  display: none;
}
.btn-fixed {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -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;
  font-family: var(--font-gotham);
  font-weight: 400;
}

/* 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-introducing {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #646464;
  margin-bottom: 8px;
}
.ov-heading {
  font-family: var(--font-display) !important;
  font-size: 56px !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 28px !important;
}
.ov-desc {
  font-family: var(--font-body);
  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-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  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%;
  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-family: var(--font-body);
  font-size: 48px;
  line-height: 56px;
  color: #00652e;
  font-weight: 400;
  white-space: nowrap;
}
.overview-stat-unit {
  font-size: 30px;
  line-height: 56px;
  color: #00652e;
  font-family: var(--font-body);
}
.overview-stat-label {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28px;
  color: #646464;
  font-weight: 400;
  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-family: var(--font-display) !important;
  font-size: 56px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #231f20 !important;
  margin: 0 !important;
}
.about-heading em {
  font-weight: 400;
  font-style: italic;
}
.about-subtitle {
  font-family: var(--font-body);
  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-family: var(--font-body);
  font-size: 16px;
  line-height: 30px;
  color: #646464;
  font-weight: 400;
  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-family: var(--font-display) !important;
  font-size: 70px !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  color: #231f20 !important;
  text-align: center;
}
.location-heading em {
  font-weight: 400;
  font-style: italic;
}

/* 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;
  gap: 39px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  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-family: var(--font-body);
  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-family: var(--font-display) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 35px !important;
  color: #231f20 !important;
  text-transform: capitalize;
}
.loc-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #646464 !important;
  line-height: 30px;
  text-transform: capitalize;
}

/* ================================
   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-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  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-family: var(--font-display) !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 68px !important;
  color: #231f20 !important;
  text-align: center;
  border: none;
  padding: 0;
}
.product-quote em {
  font-weight: 700;
  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;
  padding: 41px 0 41px 60px;
  align-self: stretch;
}
.product-stat-vdivider {
  flex-shrink: 0;
  width: 1px;
  height: 192px;
  background: #d0d0d0;
}
.product-stat-num {
  font-family: var(--font-display) !important;
  font-weight: 400;
  color: #231f20;
  line-height: 80px;
  margin-bottom: 12px;
  min-height: 70px;
  display: flex;
  align-items: center;
}
.stat-num-main {
  font-size: 80px;
}
.stat-num-unit {
  font-size: 30px;
}
.stat-bhk-img {
  height: 58px;
  width: auto;
  display: block;
  align-self: flex-start;
}
.product-stat-label {
  font-family: var(--font-neoris);
  font-size: 18px;
  color: #646464;
  line-height: 28px;
  font-weight: 400;
}

/* ================================
   FAQ SECTION
   ================================ */
.section-faq {
  background: #fff;
  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.5;
  pointer-events: none;
  z-index: 0;
}
.faq-deco-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.faq-deco-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq-deco-inner::after {
  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%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 50.311%,
      rgb(255, 255, 255) 100%
    );
  pointer-events: none;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.faq-heading {
  font-family: var(--font-display) !important;
  font-size: 70px !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 16px;
}
.faq-heading em {
  font-weight: 400;
  font-style: italic;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 40px;
  color: #646464;
}
.faq-list {
  position: relative;
  z-index: 1;
}
.faq-item {
  border-bottom: 1px solid rgba(120, 120, 120, 0.2);
}
.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: 28px 0;
  cursor: pointer;
  gap: 40px;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 45px;
  color: #231f20;
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.faq-toggle {
  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: 115px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #787878;
  background: transparent;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  font-family: var(--font-neue);
  font-size: 18px;
  font-weight: 500;
  color: #787878;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition:
    border-color 0.2s,
    color 0.2s;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.faq-toggle--open {
  border-color: #00652e;
  color: #00652e;
}
.faq-answer {
  display: none;
  padding: 0 0 28px;
  max-width: 900px;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-answer p {
  font-family: var(--font-neoris);
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  color: #787878;
  letter-spacing: 0.51px;
}

/* ================================
   CONTACT CTA SECTION
   ================================ */
.section-contact-cta {
  background: #fff;
  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-family: var(--font-display) !important;
  font-size: 56px !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  color: #231f20 !important;
  margin-bottom: 24px;
}
.contact-cta-heading em {
  font-weight: 400;
  font-style: italic;
}
.contact-cta-desc {
  font-family: var(--font-body);
  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-size: 40px !important;
  font-weight: 700 !important;
  line-height: 50px !important;
  color: #231f20 !important;
  text-align: center;
  margin-bottom: 16px;
}
.contact-card-title em {
  font-weight: 400;
  font-style: italic;
}
.contact-card-sub {
  font-family: var(--font-body);
  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;
}
.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-family: var(--font-body);
  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;
}
.contact-field--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -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: none;
  padding-left: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact-field--phone .invalid-feedback {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  margin-top: 4px;
}
.contact-cc {
  font-family: var(--font-body);
  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-family: var(--font-body);
  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-family: var(--font-body);
  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-family: var(--font-gotham);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00652e;
  margin-bottom: 20px;
}
.ty-heading {
  font-family: var(--font-display) !important;
  font-size: 72px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #231f20 !important;
  margin-bottom: 24px;
}
.ty-heading em {
  font-weight: 400;
  font-style: italic;
}
.ty-sub {
  font-family: var(--font-body);
  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-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: #231f20;
  line-height: 1;
  display: block;
}
.ty-stat-unit {
  font-size: 28px;
}
.ty-stat-label {
  font-family: var(--font-neoris);
  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-family: var(--font-body);
  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;
}

/* 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-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.9rem;
  color: var(--primary) !important;
  font-weight: 600;
  margin-bottom: 0.75rem !important;
}
.jkb-modal-sub {
  font-family: var(--font-body);
  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-family: var(--font-body);
  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;
  font-weight: 400;
}
.jkb-form .form-control::-moz-placeholder {
  color: #6a5f4a !important;
  font-weight: 400;
}
.jkb-form .form-control:-ms-input-placeholder {
  color: #6a5f4a !important;
  font-weight: 400;
}
.jkb-form .form-control::placeholder {
  color: #6a5f4a !important;
  font-weight: 400;
}
.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-weight: 600;
  font-family: var(--font-body);
  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-family: var(--font-body);
  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-family: var(--font-body);
  font-weight: 600;
  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 {
  font-weight: 600;
  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;
  font-weight: 400;
  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;
  font-weight: 600;
  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;
  font-weight: 700;
  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;
  display: inline-block;
}

/* Tagline */
.footer-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 32px;
  color: #fff !important;
  text-align: center;
  max-width: 540px;
  margin: 40px auto 48px;
  text-transform: capitalize;
}

/* 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-family: var(--font-body);
  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-family: var(--font-body);
  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-family: var(--font-body);
  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
   ================================ */
/* 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: 28px;
  }
  .nav-link {
    font-size: 15px;
  }
  .nav-logo .logo {
    height: 60px;
  }
}

@media only screen and (max-width: 991px) {
  /* Navbar tablet/mobile — hide links, show hamburger */
  #navbar {
    height: 80px;
  }
  .navbar-container {
    padding: 0 30px;
  }
  .hero-banner,
  .hero-slide {
    height: calc(100vh - 80px);
  }
  .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 {
    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;
  }
  .product-stat {
    padding: 36px 0 36px 30px;
  }
  .stat-num-main {
    font-size: 72px;
  }
  .stat-num-unit {
    font-size: 28px;
  }
  .product-stat-num {
    line-height: 88px;
    margin-bottom: 12px;
  }
  .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 {
    max-width: 100%;
    padding: 0 20px;
  }
  .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: 95px;
    height: 44px;
    font-size: 16px;
  }

  /* 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;
  }

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

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

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

  .hero-banner,
  .hero-slide {
    height: calc(100vh - 70px);
    min-height: 480px;
  }

  .hero-banner {
    margin-top: 70px;
  }

  .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;
  }
  .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 {
    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%;
  }
  .product-stats-row {
    flex-wrap: wrap;
    padding: 0 16px;
    max-width: 100%;
  }
  .product-stats-row--3col {
    max-width: 100%;
  }
  .product-stat {
    padding: 28px 0 28px 16px;
    min-width: calc(50% - 1px);
  }
  .product-stat-vdivider {
    height: 120px;
  }
  .stat-num-main {
    font-size: 58px;
  }
  .stat-num-unit {
    font-size: 24px;
  }
  .product-stat-num {
    line-height: 72px;
    margin-bottom: 10px;
    min-height: 72px;
  }
  .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-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-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.5rem;
  }

  /* 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: 76px;
    height: 36px;
    font-size: 13px;
  }
  .faq-question {
    padding: 18px 0;
    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: 26px !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;
  }
  .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: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.85rem 0.5rem;
    position: static;
    cursor: pointer;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .mob-btn-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
    -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) invert(1);
    filter: brightness(0) invert(1);
  }
}

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

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

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

  /* Product stats very small */
  .stat-num-main {
    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: 22px 0 22px 12px;
  }

  /* 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.72rem;
    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;
  }
}
