/*
 * Lanco Hills ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Landing Page Stylesheet
 */

 @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

@font-face {
  font-family: satoshi;
  src: url("../assets/fonts/satoshi-light.otf");
}

@font-face {
  font-family: satoshi-regular;
  src: url("../assets/fonts/satoshiregular.otf");
}

@font-face {
  font-family: godrej;
  src: url("../assets/fonts/godrej.ttf");
}

/* ================================
   CSS VARIABLES
   ================================ */
:root {
  --white: #ffffff;
  --black: #111111;
  --primary: #980A23;
  --primary-dark: #7a0820;
  --nav-bg: #FFFDED;
  --font-fraunces: 'Fraunces', serif;
  --godrej : godrej;
  --satoshi : satoshi;
  --satoshi-regular : satoshi-regular;
  --text-dark: #303030;
  --radius-full: 100px;
}

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

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(--satoshi-regular);
  overflow-x: hidden !important;
  padding-right: 0px !important;
  background: transparent;
  color: var(--text-dark);
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(152, 10, 35, 0.3);
}

h1, h2, h3, h4, h5, h6 {
  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: none;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ================================
   BUTTON SPINNER
   ================================ */
.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); }
}

@keyframes phone-shake {
  0%   { transform: rotate(0deg); }
  8%   { transform: rotate(-18deg); }
  18%  { transform: rotate(16deg); }
  28%  { transform: rotate(-14deg); }
  38%  { transform: rotate(12deg); }
  48%  { transform: rotate(-8deg); }
  58%  { transform: rotate(5deg); }
  68%  { transform: rotate(-3deg); }
  78%  { transform: rotate(2deg); }
  88%  { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}
.btn-loading .btn-text {
  display: none !important;
}
.btn-loading .btn-spinner {
  display: inline-block;
}
.jkb-submit.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.85;
}

/* ================================
   LOADER
   ================================ */
.loader-container {
  display: none;
}

/* ================================
   NAVBAR ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Figma Design
   ================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 37, 91, 0.12);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

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

#navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
}

.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: 87vw;
    margin: auto;
    max-width: 100%;
}

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

/* Desktop nav links */
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.nav-link-item {
  font-family: var(--satoshi);
  font-size: 1vw;
  font-weight: 400;
  color: #0f255b;
  text-decoration: none !important;
  white-space: nowrap;
  padding: 0 14px;
  position: relative;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #0f255b;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link-item:hover {
  color: #0f255b;
}
.nav-link-item:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-sep-icon {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(15, 37, 91, 0.35);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  pointer-events: none;
  vertical-align: middle;
}

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

/* Contact Now button */
.nav-contact-btn {
  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;
  gap: 10px;
  height: 50px;
  min-width: 185px;
  padding: 12px 16px;
  background: #a8e4a0;
  color: #3c3c3a;
  border: none;
  border-radius: 39px;
  font-family: var(--satoshi-regular);
  font-size: 1vw;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.nav-contact-btn i {
  font-size: 1vw;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  -webkit-animation: phone-shake 2.4s ease-in-out infinite;
  animation: phone-shake 2.4s ease-in-out infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.nav-contact-btn:hover {
  background: #8ed086;
}

/* Mobile hamburger */
.nav-hamburger {
  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;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #0f255b;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* ================================
   MOBILE OFFCANVAS NAV
   ================================ */
#mobileNav {
  background: #ffffff !important;
  width: 300px !important;
  border-left: 1px solid rgba(15, 37, 91, 0.12) !important;
}

.mobile-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: 18px 24px;
  border-bottom: 1px solid rgba(15, 37, 91, 0.1);
}

.mobile-offcanvas-close {
  background: transparent;
  border: 1px solid rgba(15, 37, 91, 0.3);
  color: #0f255b;
  font-size: 16px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  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;
  border-radius: 50%;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.mobile-offcanvas-close:hover {
  background: #0f255b;
  color: #fff;
}

.mobile-offcanvas-body {
  padding: 0 0 32px !important;
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(15, 37, 91, 0.08);
}

.mobile-nav-links li a {
  display: block;
  padding: 14px 24px;
  font-family: var(--satoshi);
  font-size: 0.781vw;
  font-weight: 500;
  color: #0f255b;
  text-decoration: none !important;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.mobile-nav-links li a:hover {
  background: rgba(15, 37, 91, 0.04);
}

/* ================================
   HERO SECTION
   ================================ */
.section-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 600px;
  overflow: hidden;
  margin-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: hero-zoom 14s ease-in-out infinite;
  animation: hero-zoom 14s ease-in-out infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@-webkit-keyframes hero-zoom {
  0%   { -webkit-transform: scale(1);    transform: scale(1); }
  50%  { -webkit-transform: scale(1.07); transform: scale(1.07); }
  100% { -webkit-transform: scale(1);    transform: scale(1); }
}
@keyframes hero-zoom {
  0%   { -webkit-transform: scale(1);    transform: scale(1); }
  50%  { -webkit-transform: scale(1.07); transform: scale(1.07); }
  100% { -webkit-transform: scale(1);    transform: scale(1); }
}

.hero-content {
  position: absolute;
  left: 6.25vw;
  bottom: 5%;
  width: 44.27vw;
  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;
  z-index: 10;
}

.hero-heading-main {
  font-family: var(--godrej);
  font-size: 3.385vw;
  font-weight: 400;
  line-height: 1.3;
  color: #3c3c3a;
  margin: 0;
}

.hero-heading-italic {
  font-family: var(--rocket-dreams);
  font-size: 5.2vw;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.hero-heading-italic.primary {
  color: var(--primary) ;
}

.hero-desc {
  font-family: var(--satoshi-regular);
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.556;
  color: #3c3c3a;
  max-width: 40.1vw;
  margin: 0;
}

/* Stats bar */
.hero-stats-bar {
  position: absolute;
  left: 7.29vw;
  bottom: 9%;
  width: 42.7vw;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 6.9vw;
}

.hero-stats-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 2.34vw;
}

.hero-stat {
  -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;
  gap: 10px;
  padding: 1.5vw 0;
}

.hero-stat-num {
  font-family: var(--Anuphan);
  font-size: 1.823vw;
  font-weight: 400;
  color: var(--primary);
  line-height: normal;
  margin: 0;
}

.hero-stat-label {
  font-family: var(--satoshi);
  font-size: 0.781vw;
  font-weight: 400;
  color: #3c3c3a;
  line-height: 1.53;
  margin: 0;
}

.hero-stat-sep {
  width: 1px;
  height: 4.9vw;
  background: rgba(48, 48, 48, 0.15);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 1.56vw;
}

/* ================================
   MOBILE FIXED CTA BAR
   ================================ */
.mobile-fixed-button {
  display: none;
}
.btn-fixed {
  border: none;
  outline: none;
  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: 85vw;
  max-width: 100%;
  margin: 0 auto;
}

/* ================================
   MODAL POPUP
   ================================ */
.modal-content {
  background: #fff;
  border-radius: unset;
}
.jkb-modal .modal-dialog {
  max-width: 520px;
}
.jkb-modal-content {
  border: none !important;
  border-radius: 4px !important;
  overflow: hidden;
  background: url('../assets/images/element/background.webp') center center / cover no-repeat !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}
.jkb-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(152, 10, 35, 0.3);
  background: transparent;
  color: var(--primary);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.jkb-modal-close i {
  font-size: 0.9rem;
  line-height: 1;
}
.jkb-modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}
.jkb-modal-form-only {
  padding: 2.5rem 2.25rem 2rem;
  background: transparent !important;
  position: relative;
  z-index: 1;
}

.modal-flower {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 155px;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.modal-flower-top {
    position: absolute;
    left: 7px;
    top: -6px;
    width: 120px;
    pointer-events: none;
    z-index: 0;
    display: block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.modal-logo {
  display: block;
  margin: 0 auto 1rem;
  width: 100px;
  height: auto;
}

.jkb-modal-title {
  font-family: var(--satoshi);
  font-size: 1.75rem;
  color: var(--primary) !important;
  font-weight: 600;
  margin-bottom: 6px !important;
  line-height: 1.2;
  text-align: center;
}
.jkb-modal-sub {
  font-family: var(--satoshi);
  font-size: 14px;
  color: #3c3c3a !important;
  margin-bottom: 1.75rem !important;
  line-height: 1.55;
  text-align: center;
}

.modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.modal-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 1.5px solid rgba(152, 10, 35, 0.45);
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  border-radius: 3px;
}
.modal-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.modal-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.modal-consent-label {
  font-family: var(--satoshi);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #3c3c3a;
  cursor: pointer;
}

.jkb-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 9px;
  height: 50px;
  padding: 0 1rem;
  font-family: var(--satoshi);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.jkb-submit:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ================================
   CONV-FIELD FORM STYLES
   ================================ */
.conv-field {
  position: relative;
  padding-top: 22px;
  padding-bottom: 28px;
}

.conv-label {
  position: absolute;
  top: 26px;
  left: 0;
  font-family: var(--satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  margin: 0;
  pointer-events: none;
  transition: top 0.22s ease, font-size 0.22s ease, color 0.22s ease;
}

.conv-field.is-active .conv-label {
  top: 0;
  font-size: 12px;
  color: var(--text-dark);
}

.conv-field:focus-within .conv-label {
  top: 0;
  font-size: 12px;
  color: var(--primary);
}

.conv-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: var(--satoshi);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 4px 0;
  appearance: none;
  -webkit-appearance: none;
}

.conv-input:focus {
  outline: none;
  box-shadow: none;
}

.conv-line {
  height: 1px;
  background: rgba(48, 48, 48, 0.2);
  width: 100%;
  transition: background 0.3s ease;
}

.conv-field:focus-within .conv-line {
  background: var(--primary);
}

.conv-field .invalid-feedback {
  font-family: var(--satoshi);
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
  display: none;
}

.needs-validation.was-validated .conv-input:invalid ~ .invalid-feedback,
.needs-validation .conv-input.is-invalid ~ .invalid-feedback {
  display: block;
}

.needs-validation.was-validated .conv-input:invalid ~ .conv-line,
.needs-validation .conv-input.is-invalid ~ .conv-line {
  background: #dc3545;
}

.needs-validation.was-validated .conv-input:valid ~ .conv-line,
.needs-validation .conv-input.is-valid ~ .conv-line {
  background: #28a745;
}

/* =============================================
   MODAL GREEN OVERRIDES  (#a8e4a0)
   ============================================= */
.jkb-modal-content .jkb-modal-title {
  color: #0f255b !important;
}

.jkb-modal-content .jkb-modal-close {
  border-color: rgba(168, 228, 160, 0.6);
  color: #2d6a2d;
}
.jkb-modal-content .jkb-modal-close:hover {
  background: #a8e4a0;
  color: #1a3a1a;
}

.jkb-modal-content .conv-field:focus-within .conv-label {
  color: #2d6a2d;
}
.jkb-modal-content .conv-field:focus-within .conv-line {
  background: #a8e4a0;
}

.jkb-modal-content .modal-checkbox {
  border-color: rgba(15, 37, 91, 0.35);
}
.jkb-modal-content .modal-checkbox:checked {
  background: #0f255b;
  border-color: #0f255b;
}
.jkb-modal-content .modal-checkbox:checked::after {
  border-color: #ffffff;
}

/* Submit button — pill shape, #a8e4a0, dark text, auto width */
.jkb-modal-content .jkb-submit {
  background: #a8e4a0;
  color: #3c3c3a;
  border-radius: 50px;
  width: auto;
  padding: 0 2rem;
  font-weight: 600;
}
.jkb-modal-content .jkb-submit:hover {
  background: #8ed486;
  color: #1a3a1a;
}

/* Arrow icon */
.jkb-submit .btn-arrow {
  font-size: 13px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}
.jkb-submit:hover .btn-arrow {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.footer-main {
  padding-top: 5rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
.footer-logo-wrap {
  margin-bottom: 2.5rem;
}
.footer-logo {
  height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* RERA block */
.footer-rera-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2rem;
}
.footer-rera-line {
  font-family: var(--satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #ffffff;
}

/* QR */
.footer-qr-wrap {
  margin-bottom: 1.25rem;
}
.footer-qr {
  width: 118px;
  height: 118px;
  object-fit: contain;
  display: block;
}

/* Small RERA */
.footer-rera-small {
  font-family: var(--satoshi);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 860px;
  margin-bottom: 1rem !important;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.footer-social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none !important;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

/* Disclaimer block */
.footer-disclaimer-wrap {
  padding-top: 1.75rem;
  padding-bottom: 2rem;
  text-align: center;
}
.footer-disclaimer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-family: var(--satoshi);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
.footer-link-sep {
  font-weight: 300;
  opacity: 0.7;
}
.footer-disclaimer-text {
  font-family: var(--satoshi);
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  color: rgba(255,255,255,0.9);
}
.footer-disclaimer-text strong {
  font-weight: 600;
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom-bar {
  text-align: center;
}
.footer-bottom-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.footer-bottom-credit {
  font-family: var(--satoshi);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  padding: 14px 0;
}

/* ================================
   THANK-YOU PAGE (base classes)
   ================================ */
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;
}


/* ================================
   OVERVIEW SECTION
   ================================ */
.section-overview {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ov-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ov-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.ov-flower {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 200px;
  z-index: 1;
  pointer-events: none;
}

.section-overview .custom-container {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ov-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.ov-tag-icon {
  width: 1.6rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ov-tag-text {
  font-family: var(--satoshi-regular);
  font-size: 0.9vw;
  color: #065fa9;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ov-heading {
  font-family: var(--godrej);
  font-size: 3.2vw;
  font-weight: 400;
  color: #0f255b;
  line-height: 1.27;
  margin-bottom: 2rem !important;
}

.ov-desc {
  font-family: var(--satoshi-regular);
  font-size: 0.9375vw;
  color: #3c3c3a;
  line-height: 1.75;
  margin-bottom: 1rem !important;
}

.ov-desc + .ov-desc {
  margin-bottom: 2rem !important;
}

.ov-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: #a8e4a0;
  border: none;
  color: #3c3c3a;
  border-radius: 839px;
  padding: 0.7rem 1.6rem;
  font-family: var(--satoshi-regular);
  font-size: 0.9vw;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2.5rem;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ov-btn {
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ov-btn:hover {
  background: #ffffff;
  -webkit-transform: translateY(-2px) scale(1.04);
  transform: translateY(-2px) scale(1.04);
  -webkit-box-shadow: 0 4px 8px rgba(168, 228, 160, 0.25), 0 10px 28px rgba(168, 228, 160, 0.45);
  box-shadow: 0 4px 8px rgba(168, 228, 160, 0.25), 0 10px 28px rgba(168, 228, 160, 0.45);
  -webkit-animation: ov-btn-pulse 0.6s ease;
  animation: ov-btn-pulse 0.6s ease;
}

@keyframes ov-btn-pulse {
  0%   { -webkit-transform: translateY(-2px) scale(1.04); transform: translateY(-2px) scale(1.04); }
  30%  { -webkit-transform: translateY(-2px) scale(1.07); transform: translateY(-2px) scale(1.07); }
  60%  { -webkit-transform: translateY(-2px) scale(1.03); transform: translateY(-2px) scale(1.03); }
  100% { -webkit-transform: translateY(-2px) scale(1.04); transform: translateY(-2px) scale(1.04); }
}

@-webkit-keyframes ov-btn-pulse {
  0%   { -webkit-transform: translateY(-2px) scale(1.04); }
  30%  { -webkit-transform: translateY(-2px) scale(1.07); }
  60%  { -webkit-transform: translateY(-2px) scale(1.03); }
  100% { -webkit-transform: translateY(-2px) scale(1.04); }
}

.ov-btn svg,
.ov-btn img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.ov-btn:hover svg,
.ov-btn:hover img {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}

.ov-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ov-stat-num {
  font-family: var(--godrej);
  font-size: 2.4vw;
  color: #0f255b;
  line-height: 1;
  margin-bottom: 6px;
}

.ov-stat-label {
  font-family: var(--satoshi-regular);
  font-size: 0.85vw;
  color: #065fa9;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ov-stat-sep {
  width: 1px;
  height: 3.5rem;
  background: rgba(15, 37, 91, 0.25);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
}

/* Right column */
.ov-img-wrap {
  position: relative;
  -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;
}

.ov-img-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.ov-main-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.ov-badge {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  background: rgba(168, 228, 160, 0.7);
  border-radius: 839px;
  padding: 0.7rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.ov-badge-num {
  font-family: var(--font-fraunces);
  font-size: 2vw;
  color: #0f255b;
  line-height: 1;
  white-space: nowrap;
  font-weight: 400;
}

.ov-badge-text {
    font-family: var(--satoshi-regular);
    font-size: 0.55vw;
    color: #0f255b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
    line-height: 1.5;
}

/* Tablet ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°Ãƒâ€šÃ‚Â¤1199px ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â columns still side by side */
/* ================================
   DESKTOP FLOATING CORNER BUTTONS
   ================================ */
@keyframes floatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(168, 228, 160, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(168, 228, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 228, 160, 0); }
}

.floating-side-btn {
  position: fixed;
  bottom: 5%;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--satoshi);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 39px;
  background: #a8e4a0;
  color: #3c3c3a;
  border: none;
  transition: background 0.22s ease;
  animation: floatPulse 2s ease-out infinite;
}

.floating-side-btn i { font-size: 13px; }

.floating-enquire { right: 31px; }

.floating-brochure { left: 31px; }

.floating-side-btn:hover {
  background: #8ed086;
}

/* ================================
   PLOT CONFIGURATION SECTION
   ================================ */
.section-config {
  background: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Header */
.config-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.config-header-left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 55%;
}

.config-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.config-tag-icon {
  width: 28px;
  height: 28px;
}

.config-tag-text {
  font-family: var(--satoshi-regular);
  font-size: 0.85vw;
  color: #065fa9;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.config-heading {
  font-family: var(--godrej);
  font-size: 3.2vw;
  color: #0f255b;
  line-height: 1.25;
}

.config-header-right {
  width: 40%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: end;
  align-self: center;
  margin-left: auto;
}

.config-desc {
  font-family: var(--satoshi-regular);
  font-size: 0.95vw;
  color: #3c3c3a;
  line-height: 1.7;
}

/* Slider wrapper */
.config-slider-wrap {
  position: relative;
}

/* Card */
.config-card {
  padding: 0 8px;
}

/* Fancybox link wrapper shared by config + invest cards */
.card-img-link {
  display: block;
  cursor: zoom-in;
}

.card-img-link .config-card-img,
.card-img-link .invest-card-img {
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}

.card-img-link:hover .config-card-img,
.card-img-link:hover .invest-card-img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.config-card-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 547 / 445;
}

.config-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.config-card-gradient {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, rgba(0,0,0,0)), to(rgba(0,0,0,0.89)));
  background: linear-gradient(to bottom, rgba(0,0,0,0) 65%, rgba(0,0,0,0.89) 100%);
  border-radius: 4px;
}

/* Badge top-left */
.config-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #ffffff;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  -webkit-box-shadow: 0 4px 2px rgba(0,0,0,0.1);
  box-shadow: 0 4px 2px rgba(0,0,0,0.1);
}

.config-badge-num {
  font-family: var(--font-fraunces);
  font-size: 1rem;
  color: #e03f00;
  line-height: 1;
}

.config-badge-txt {
  font-family: var(--satoshi-regular);
  font-size: 0.625rem;
  color: #e03f00;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* Plot label bottom of image */
.config-card-plot-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.config-plot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a8e4a0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.config-plot-label {
  font-family: var(--satoshi-regular);
  font-size: 0.625rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* Card body */
.config-card-body {
  padding: 0.9rem 0 0.25rem;
}

.config-card-title-row {
  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;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.config-plot-name {
  font-family: var(--godrej);
  font-size: 1.85vw;
  color: #0f255b;
  text-transform: capitalize;
}

.config-plot-dim {
  font-family: var(--godrej);
  font-size: 1.85vw;
  color: #0f255b;
  text-transform: uppercase;
}

.config-card-sep {
  height: 1px;
  background: rgba(15, 37, 91, 0.18);
  margin-bottom: 0.7rem;
}

.config-card-footer {
  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;
}

.config-sqft {
  font-family: var(--satoshi-regular);
  font-size: 0.62rem;
  color: #034d9c;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.7rem !important;
}

.config-units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.config-unit-num {
  font-family: var(--font-fraunces);
  font-size: 1rem;
  color: #e03f00;
  line-height: 1;
}

.config-unit-txt {
  font-family: var(--satoshi-regular);
  font-size: 0.625rem;
  color: #e03f00;
  text-transform: capitalize;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* Small CTA button inside card */
.config-cta-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: -webkit-transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.config-cta-btn:hover {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  opacity: 0.88;
}

.config-cta-btn img {
  width: 44px;
  height: 44px;
  display: block;
}

/* Navigation arrows */
.config-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.config-prev,
.config-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.config-prev:hover,
.config-next:hover {
  opacity: 0.75;
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.config-prev img,
.config-next img {
  width: 55px;
  height: 55px;
  display: block;
}

/* Flower */
.config-flower {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  pointer-events: none;
  z-index: 0;
}

.config-flower img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Responsive: 767px ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â arrows centered ---- */

/* ================================
   WHY INVEST SECTION
   ================================ */
/* ================================
   WHY INVEST SECTION
   Figma node 200-395 | 1920x762px
   Left col x=120->687 (35.78vw)
   Divider x=687, h=547px
   Slider starts x=808 (42.08vw)
   Card 405x445px, gap 20px
   ================================ */

.section-invest {
  background: url('../assets/images/element/background.webp') center/cover no-repeat;
  overflow: hidden;
  position: relative;
}

.invest-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 39.69vw;
}

/* Left column -- from left edge to divider at 35.78vw */
.invest-left {
  width: 35.78vw;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 4.17vw 0 4.17vw 6.25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

/* Vertical divider via pseudo-element */
.invest-left::after {
  content: '';
  position: absolute;
  right: -6%;
  top: 46%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 28.49vw;
  background: rgba(60, 60, 58, 0.35);
}

.invest-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25vw;
}

.invest-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.invest-tag-icon {
  width: 28px;
  height: 28px;
}

.invest-tag-text {
  font-family: var(--satoshi-regular);
  font-size: 0.9375vw;
  color: #065fa9;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.invest-heading {
  font-family: var(--godrej);
  font-size: 2.86vw;
  font-weight: 300;
  color: #0f255b;
  line-height: 1.2;
  margin: 0;
}

.invest-desc {
  font-family: var(--satoshi-regular);
  font-size: 0.9375vw;
  color: #3c3c3a;
  line-height: 1.7;
  margin: 0;
}

/* Nav arrows */
.invest-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.invest-nav-desktop { display: -webkit-box; display: -ms-flexbox; display: flex; }
.invest-nav-mobile  { display: none; }

.invest-prev,
.invest-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.invest-prev:hover,
.invest-next:hover {
  opacity: 0.75;
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.invest-prev img,
.invest-next img {
  width: 55px;
  height: 55px;
  display: block;
}

/* Slider column -- overflow: hidden clips the loop ghost on the left;
   right peek is handled naturally by Owl's items: 2.5 sizing */
.invest-slider-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 4.17vw 0 4.17vw 6.3vw;
  overflow: hidden;
}

/* Cards */
.invest-card {
  padding: 0 10px;
}

.invest-card-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 405 / 445;
}

.invest-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.invest-card-gradient {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(67%, rgba(0,0,0,0)), to(rgba(0,0,0,0.75)));
  background: linear-gradient(to bottom, rgba(0,0,0,0) 67%, rgba(0,0,0,0.75) 100%);
}

.invest-card-plot-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.invest-plot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a8e4a0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.invest-plot-label {
  font-family: var(--satoshi-regular);
  font-size: 0.625rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* Card body */
.invest-card-body {
  padding: 0.85rem 0 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.invest-card-title {
  font-family: var(--godrej);
  font-size: 1.25vw;
  color: #0f255b;
  text-transform: capitalize;
  line-height: 1.3;
  letter-spacing: -0.05em;
  margin: 0;
}

.invest-card-text {
  font-family: var(--satoshi-regular);
  font-size: 0.875rem;
  color: #3c3c3a;
  line-height: 1.7;
  margin: 0;
}

/* ---- 767px ---- */

/* ================================
   AMENITIES SECTION
   ================================ */

/*
  Figma layout (1920ÃƒÆ’Ã¢â‚¬â€1080):
  - Left image  : x=120, w=688, h=895  (ends at x=808)
  - Right content: x=970, w=741 (gap = 162px)
  - Card         : h=706, white, r=4
  - Flower       : x=1410,y=731 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â decorative, overflows section edges
*/

.section-amenities {
  position: relative;
  overflow: hidden;
  background: #a8e4a0;
 padding: 4rem 0;
}

.ame-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/images/element/background.webp') center / cover no-repeat;
}

/* Flower: x=1410 from section left, overflows right & bottom */
.ame-flower {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 23.35vw;
    z-index: 1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Full-width two-column row */
.ame-outer {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center; /* both columns bottom-align */
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Left column ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬
   Occupies 42.08vw (808/1920).  Left padding 6.25vw (120/1920)
   leaves 35.83vw (688/1920) for the image itself.           */
.ame-img-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42.08vw;
  flex: 0 0 42.08vw;
  padding-left: 6.25vw;
}

.ame-hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Right column ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬
   padding-left = 162/1920 = 8.44vw (gap between image & content)
   padding-right = 209/1920 = 10.89vw (section right margin)
   padding-top = 110/1920 = 5.73vw (content starts here)     */
.ame-content-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
;
  padding-left: 8.44vw;
  padding-right: 10.89vw;
}

/* Tag ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Satoshi 18px w400 #065FA9 */
.ame-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.ame-tag-icon {
  width: 28px;
  height: 28px;
}

.ame-tag-text {
  font-family: var(--satoshi-regular);
  font-size: 18px;
  color: #065fa9;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Heading ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Fraunces 55px w300 #0F255B */
.ame-heading {
  font-family: var(--godrej);
  font-size: 2.86vw; /* 55/1920 */
  font-weight: 300;
  color: #0f255b;
  line-height: 1.27;
  margin-bottom: 2rem !important; /* 66px gap to card */
}

/* White card ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 706px tall, clips 5th item to hint scroll */
.ame-card {
  position: relative;
  background: #ffffff;
  border-radius: 4px;
  height: 36.77vw; /* 706/1920 */
  overflow: hidden;
}

/* Scrollable list ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â native bar hidden */
.ame-list {
  height: 100%;
  overflow-y: scroll;
  /* left=42px (icon starts x=42 within card), right=80px (scrollbar space) */
  padding: 2.19vw 4.17vw 1.56vw 2.19vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ame-list::-webkit-scrollbar {
  display: none;
}

/* Each amenity row ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 72px from Figma */
.ame-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
  padding: 1.5rem 0;
}

/* Icon circle ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 72ÃƒÆ’Ã¢â‚¬â€72, fill #F3F8FD */
.ame-icon-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3f8fd;
  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;
}

.ame-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.ame-item-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: 0.6rem;
}

/* Title ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Satoshi 18px w500 #0F255B */
.ame-item-title {
  font-family: var(--satoshi-regular);
  font-size: 18px;
  font-weight: 600;
  color: #0f255b;
  line-height: 1;
  margin: 0;
}

/* Description ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Satoshi 16px w300 #3C3C3A */
.ame-item-desc {
  font-family: var(--satoshi-regular);
  font-size: 16px;
  font-weight: 300;
  color: #3c3c3a;
  line-height: 1;
  margin: 0;
}

/* Divider ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 0.6px full-opacity from Figma */
.ame-divider {
  height: 1px;
  background: rgba(60, 60, 58, 0.25);
  margin: 0;
  border: none;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Custom scroll indicator ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬
   Figma: gray line at x=709 within 741-wide card (32px from right)
   top=55px (7.79% of 706), height=595px (84.42% of 706)
   Thumb: 4px blue, 41px initial height                      */
.ame-scrollbar {
  position: absolute;
  right: 2.08vw;  /* ~40px at 1920 */
  top: 7.79%;     /* 55/706         */
  bottom: 7.79%;
  width: 2px;
  background: rgba(60, 60, 58, 0.15);
  border-radius: 1px;
}

.ame-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 4px;
  background: rgba(3, 77, 156, 1);
  border-radius: 2px;
  -webkit-transition: top 0.08s linear;
  transition: top 0.08s linear;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Responsive ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */


/* ================================
   LOCATION SECTION
   ================================ */

/*
  Figma layout (1920ÃƒÆ’Ã¢â‚¬â€1010) ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â mirrors amenities structure:
  - Left map   : x=120, w=688, h=790, white border 12px, r=4
  - Right col  : x=970, w=741
  - Heading    : "Sandur calm,\nyet well connected" (2 lines)
  - Flower     : x=1457, y=692 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â decorative, overflows edges
*/

/* =============================================
   GALLERY SECTION  (Figma node 212-866)
   Section: 1920ÃƒÆ’Ã¢â‚¬â€1257px, white background
   Images start at x=120 (6.25vw), y=366 (19.06vw)
   Active: 972px wide, Next: 405px, Peek: 383px
   Image height: 622px (32.4vw)   Gap: 20px (1.04vw)
   ============================================= */
.section-gallery {
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

/* ---- Tag ---- */
.gal-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.gal-tag-icon {
  width: 28px;
  height: 28px;
}

.gal-tag-text {
  font-family: var(--satoshi-regular);
  font-size: 18px;
  color: #065fa9;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ---- Heading ---- */
.gal-heading {
  font-family: var(--godrej);
  font-size: 2.86vw;
  font-weight: 300;
  color: #0f255b;
  line-height: 1.27;
  margin-bottom: 2rem !important;
}

/* ---- Slider strip ---- */
.gal-strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-left: 6.25vw;
  /* no gap — each slide carries its own margin-right so the gap also
     transitions to 0 when a slide collapses, keeping the total strip
     width constant throughout the animation */
  overflow: hidden;
  margin-bottom: 2.33vw;
}

/* ---- Individual slides ---- */
.gal-slide {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 32.4vw;
  /* both width and margin-right transition together so total strip
     width never changes mid-animation → no layout bounce */
  -webkit-transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                      margin-right 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              margin-right 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.gal-slide.gal-active { width: 50.63vw; margin-right: 1.04vw; border-radius: 0px; }
.gal-slide.gal-next   { width: 21.09vw; margin-right: 1.04vw; }
.gal-slide.gal-peek   { width: 19.95vw; margin-right: 0;      }
.gal-slide.gal-hidden { width: 0 !important; margin-right: 0 !important; }

/* Image is fixed at the active slide's width and clipped by the
   container's overflow:hidden — the container changes width, the
   image never does, so there is no stretch/jitter during animation */
/* Fancybox anchor inside gal-slide fills the entire slide */
.gal-slide a {
  display: block;
  position: absolute;
  inset: 0;
  cursor: zoom-in;
}

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

/* ---- Gradient overlay on active slide ---- */
.gal-slide.gal-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(top, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

/* ---- Label overlay ---- */
.gal-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--satoshi);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* ---- Navigation ---- */
.gal-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding-left: 6.25vw;
}

.gal-btn {
  /* width: 99px; */
  /* height: 99px; */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  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;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gal-btn:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.gal-btn img {
  width: 68px;
  height: 68px;
  display: block;
}

.section-location {
  position: relative;
  overflow: hidden;
  background: #a8e4a0;
  padding: 4rem 0;
}

.loc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/images/element/background.webp') center / cover no-repeat;
}

.loc-flower {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 23.35vw;
    z-index: 1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Full-width two-column row ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â same proportions as amenities */
.loc-outer {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
}

/* Left column ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â identical proportions to ame-img-col */
.loc-img-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42.08vw;
  flex: 0 0 42.08vw;
  padding-left: 0;
  padding-right: 6.25vw;
}

/* Map image ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â white 12px border frame, radius 4 */
/* Map iframe responsive height */
.loc-map-iframe { height: 700px; }
@media (max-width: 991px) { .loc-map-iframe { height: 500px; } }
@media (max-width: 767px) { .loc-map-iframe { height: 400px; } }

.loc-map-link {
  display: block;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px;
}

.loc-map-img {
  display: block;
  width: 100%;
  height: auto;
  border: 12px solid #ffffff;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.loc-map-link:hover .loc-map-img {
  transform: scale(1.02);
}

/* Left column */
.loc-content-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 6.25vw;
  padding-right: 13vw;
}

/* Tag ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â identical to amenities tag */
.loc-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.loc-tag-icon {
  width: 28px;
  height: 28px;
}

.loc-tag-text {
  font-family: var(--satoshi-regular);
  font-size: 18px;
  color: #065fa9;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Heading ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Fraunces 55px w300, 2 lines */
.loc-heading {
  font-family: var(--godrej);
  font-size: 2.86vw;
  font-weight: 300;
  color: #0f255b;
  line-height: 1.27;
  margin-bottom: 2rem !important;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Accordion ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.loc-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #0f255b;
}

.loc-acc-item {
  background: transparent;
  border: none !important;
  border-bottom: 1px solid rgba(60, 60, 58, 0.25) !important;
}

.loc-acc-item:last-child {
  border-bottom: none !important;
}

.loc-acc-btn {
  background: transparent !important;
  color: #0f255b !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 1.1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
}

/* Chevron ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â dark colour, right edge */
.loc-acc-btn::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233C3C3A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Icon circle ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â white fill, #0F255B 1px stroke */
.loc-icon-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #0f255b;
  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;
}

.loc-icon {
  width: 40px;
  height: 40px;
  display: block;
}

/* Accordion title ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Fraunces 24px w300 */
.loc-acc-title {
  font-family: var(--font-fraunces);
  font-size: 1.25vw; /* 24/1920 */
  font-weight: 300;
  color: #0f255b;
  line-height: 1.3;
  text-transform: capitalize;
}

/* Accordion body ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Satoshi 16px w300 */
.loc-acc-body {
  font-family: var(--satoshi-regular);
  font-size: 16px;
  font-weight: 300;
  color: #3c3c3a;
  line-height: 1.6;
  /* indent to align under title, past icon circle */
  padding-left: calc(72px + 1.25rem);
  padding-top: 0;
  padding-bottom: 0.6rem;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Responsive ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* ================================
   MASTER PLAN SECTION
   ================================ */
.section-masterplan {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: #ffffff;
}

.mp-flower {
  position: absolute;
  top: 0;
  right: 0;
  width: 210px;
  z-index: 0;
  pointer-events: none;
}

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

/* Tag */
.mp-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.mp-tag-icon {
  width: 1.6rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mp-tag-text {
  font-family: var(--satoshi-regular);
  font-size: 0.9vw;
  color: #065fa9;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Heading ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â full width */
.mp-heading {
  font-family: var(--godrej);
  font-size: 3.2vw;
  font-weight: 400;
  color: #0f255b;
  line-height: 1.27;
  margin-bottom: 2rem !important;
}

/* Image box */
.mp-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Fancybox link fills the wrap */
.mp-img-link {
  display: block;
  position: relative;
  cursor: zoom-in;
}

.mp-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.mp-img-link:hover .mp-img {
  transform: scale(1.025);
}

/* Shared zoom-hint badge (masterplan + location map) */
.fb-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  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;
  color: #0f255b;
  font-size: 16px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  z-index: 2;
}

.mp-img-link:hover .fb-zoom-hint,
.loc-map-link:hover .fb-zoom-hint {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mp-north-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 4.5rem;
    width: 100px;
    height: auto;
    display: block;
    pointer-events: none;
}

/* Legend */
.mp-legend-title {
  font-family: var(--godrej);
  font-size: 2.19vw;
  font-weight: 400;
  color: #0f255b;
  line-height: 1.2;
  margin-bottom: 0.75rem !important;
}

.mp-legend-desc {
  font-family: var(--satoshi-regular);
  font-size: 0.95vw;
  color: #3c3c3a;
  line-height: 1.7;
  margin-bottom: 1rem !important;
}

.mp-legend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mp-legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 37, 91, 0.12);
}

.mp-legend-item:last-child {
  border-bottom: none;
}

.mp-legend-swatch {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mp-legend-label {
  font-family: var(--satoshi-regular);
  font-size: 1.3vw;
  font-weight: 500;
  color: #0f255b;
  line-height: 1;
}

/* ---- 767px ---- */

/* ================================
   FOOTER / ENQUIRE SECTION
   ================================ */
.section-footer {
  background: #ffffff;
}

/* ---- Main content area ---- */
.ftr-main {
  padding: 4.5rem 0 3.5rem;
}

.ftr-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.ftr-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Left: form column */
.ftr-form-col {
  padding-right: 4vw;
}

/* Right: info column */
.ftr-info-col {
  padding-left: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}

/* Vertical divider */
.ftr-vdivider {
  width: 1px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background: rgba(48, 48, 48, 0.18);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 420px;
}

/* ---- Heading & sub ---- */
.ftr-heading {
  font-family: var(--godrej);
  font-size: 2.86vw;
  font-weight: 400;
  color: #0f255b;
  line-height: 1.27;
  margin-bottom: 1.1rem !important;
}

.ftr-sub {
  font-family: var(--satoshi-regular);
  font-size: 0.94vw;
  color: #3c3c3a;
  line-height: 1.75;
  margin-bottom: 2.2rem !important;
}

/* ---- Form fields ---- */
.ftr-field-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}

.ftr-field-2col .ftr-field {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.ftr-field {
  margin-bottom: 2rem;
}

.ftr-label {
  display: block;
  font-family: var(--satoshi-regular);
  font-size: 18px;
  font-weight: 400;
  color: #0f255b;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.ftr-input {
  font-size: 16px !important;
  color: #3c3c3a !important;
}

.ftr-input::-webkit-input-placeholder { color: rgba(60,60,58,0.6); font-size: 16px; }
.ftr-input::-moz-placeholder          { color: rgba(60,60,58,0.6); font-size: 16px; }
.ftr-input::placeholder                { color: rgba(60,60,58,0.6); font-size: 16px; }

.ftr-field:focus-within .conv-line { background: #0f255b; }

.ftr-consent {
  margin-bottom: 1.75rem;
}

.ftr-consent .modal-checkbox {
  border-color: rgba(15, 37, 91, 0.35);
}

.ftr-consent .modal-checkbox:checked {
  background: #0f255b;
  border-color: #0f255b;
}

/* ---- Submit button ---- */
.ftr-submit-btn {
  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;
  gap: 10px;
  background: #a8e4a0;
  color: #3c3c3a;
  border: none;
  border-radius: 100px;
  min-width: 138px;
  height: 50px;
  padding: 0 1.4rem;
  font-family: var(--satoshi-regular);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}

.ftr-submit-btn:hover {
  background: #8fd986;
  color: #3c3c3a;
}

.ftr-submit-arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  pointer-events: none;
  display: block;
  line-height: 0;
}

/* ---- Spinner reuse ---- */
.ftr-submit-btn .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(60,60,58,0.3);
  border-top-color: #3c3c3a;
  border-radius: 50%;
  -webkit-animation: btn-spin 0.7s linear infinite;
  animation: btn-spin 0.7s linear infinite;
}
.ftr-submit-btn.btn-loading .btn-text,
.ftr-submit-btn.btn-loading .ftr-submit-arrow { display: none; }
.ftr-submit-btn.btn-loading .btn-spinner       { display: inline-block; }

/* ---- Right column: company info ---- */
.ftr-logo {
  height: 90px;
  width: auto;
  display: block;
}

.ftr-rera-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.55rem;
  text-align: center;
}

.ftr-rera-row {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ftr-rera-key {
  font-family: var(--satoshi-regular);
  font-size: 18px;
  font-weight: 500;
  color: #0f255b;
  line-height: 1.4;
}

.ftr-rera-val {
  font-family: var(--satoshi);
  font-size: 16px;
  color: #3c3c3a;
  line-height: 1.4;
}

.ftr-address {
  font-family: var(--satoshi);
  font-size: 16px;
  color: #3c3c3a;
  margin: 0 !important;
  line-height: 1.5;
  text-align: center;
}

.ftr-call-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.ftr-call-label {
  font-family: var(--godrej);
  font-size: 2.08vw;
  font-weight: 400;
  color: #0f255b;
  line-height: 1;
}

.ftr-call-num {
  font-family: var(--godrej);
  font-size: 1.56vw;
  font-weight: 400;
  color: #e03f00;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.ftr-call-num:hover { color: #c03500; }

.ftr-disclaimer {
  font-family: var(--satoshi);
  font-size: 0.83vw;
  color: #3c3c3a;
  line-height: 1.65;
  margin: 0 !important;
  text-align: center;
}

/* ---- Horizontal divider ---- */
.ftr-hdivider {
  height: 1px;
  background: rgba(48, 48, 48, 0.18);
}

/* ---- Bottom strip ---- */
.ftr-bottom {
  padding: 1.2rem 0;
}

.ftr-bottom-row {
  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;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ftr-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.4vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ftr-nav-link {
  font-family: var(--satoshi-regular);
  font-size: 16px;
  color: #3c3c3a;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.ftr-nav-link:hover { color: #0f255b; }

.ftr-copyright {
  font-family: var(--satoshi-regular);
  font-size: 14px;
  color: #3c3c3a;
  margin: 0 !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ftr-realatte-logo {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* ================================
   FOOTER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â RESPONSIVE
   ================================ */
/* ================================
   FANCYBOX v5 — Controls Fix
   ================================ */
.fancybox__container {
  z-index: 1500 !important;
}

.fancybox__toolbar,
.fancybox__nav,
.fancybox__caption {
  z-index: 1501 !important;
}

.fancybox__container .f-button {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ================================
   CONSOLIDATED: max-width 767px
   ================================ */





/* ================================
   RESPONSIVE
   ================================ */

   @media only screen and (max-width: 1400px) {
  .ame-item-title { font-size: 16px; }
  .ame-item-desc  { font-size: 14px; }
  .ame-icon-wrap  { width: 60px; height: 60px; }
  .ame-icon       { width: 26px; height: 26px; }
  .loc-acc-title  { font-size: 1.45vw; }
  .loc-icon-wrap  { width: 60px; height: 60px; }
  .loc-icon       { width: 26px; height: 26px; }
  .loc-acc-body   { padding-left: calc(60px + 1.25rem); }
}

@media only screen and (max-width: 1399px) {
  .hero-content { width: 48vw; }
  .invest-heading    { font-size: 3.2vw; }
  .invest-tag-text   { font-size: 1vw; }
  .invest-desc       { font-size: 1.1vw; }
  .invest-card-title { font-size: 1.4vw; }
}

@media only screen and (max-width: 1350px) {
  .nav-link-item {
    font-family: var(--satoshi);
    font-size: 1.15vw;
    padding: 0 10px;
  }
  .nav-link-item::after {
    left: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .navbar-container { padding: 0 40px; }
  .nav-link-item { font-size: 0.677vw; padding: 0 7px; }
  .nav-contact-btn { min-width: 155px; font-size: 0.677vw; }
  .hero-content { left: 5vw; bottom: 4%; width: 58vw; }
  .hero-heading-main { font-size: 2.8vw; }
  .hero-desc {font-size: 1.50vw;max-width: 54vw;}
  .section-overview { height: auto; min-height: unset; padding: 3rem 0; }
  .section-overview .custom-container { flex: unset; min-height: unset; }
  .ov-tag-icon { width: 1.4rem; }
  .ov-tag-text { font-size: 1.1vw; }
  .ov-heading { font-size: 4vw; margin-bottom: 1.5rem !important; }
  .ov-desc {font-size: 1.50vw;margin-bottom: 0.875rem !important;}
  .ov-desc + .ov-desc {margin-bottom: 1.75rem !important;}
  .ov-btn {font-size: 1.50vw;margin-bottom: 2rem;}
  .ov-stat-num { font-size: 3.2vw; }
  .ov-stat-label { font-size: 1.1vw; }
  .ov-stat-sep { height: 3rem; }
  .ov-badge-num { font-size: 2.5vw; }
  .ov-badge-text { font-size: 0.85vw; }
  .ov-flower { width: 180px; }
  .config-heading  { font-size: 4.2vw; }
  .config-plot-name,
  .config-plot-dim { font-size: 2vw; }
  .config-tag-text { font-size: 1vw; }
  .config-desc     {font-size: 1.50vw;}
  .config-flower   { width: 160px; }
  .invest-inner      { min-height: 44vw; }
  .invest-heading    { font-size: 3.6vw; }
  .invest-tag-text   { font-size: 1.15vw; }
  .invest-desc       { font-size: 1.3vw; }
  .invest-card-title { font-size: 1.7vw; }
  .ame-heading  { font-size: 3.5vw; }
  .ame-tag-text { font-size: 16px; }
  .ame-flower   { width: 22vw; bottom: 0; right: 0; }
  .gal-heading { font-size: 3.5vw; }
  .gal-slide { height: 35vw; }
  .gal-slide.gal-active { width: 52vw; margin-right: 1.04vw; }
  .gal-slide.gal-next   { width: 22vw; margin-right: 1.04vw; }
  .gal-slide.gal-peek   { width: 18vw; margin-right: 0; }
  .gal-slide img { width: 52vw; }
  .gal-btn img { width: 50px; height: 50px; }
  .loc-heading    { font-size: 3.5vw; }
  .loc-tag-text   { font-size: 16px; }
  .loc-acc-title  { font-size: 1.6vw; }
  .loc-flower     { width: 22vw; bottom: 0; right: 0; }
  .mp-tag-text      { font-size: 1.1vw; }
  .mp-heading       { font-size: 4vw; margin-bottom: 2rem !important; }
  .mp-legend-title  { font-size: 2.8vw; }
  .mp-legend-desc   { font-size: 1.4vw; }
  .mp-legend-label  { font-size: 1.8vw; }
  .mp-flower        { width: 175px; }
  .ftr-heading     { font-size: 3.6vw; }
  .ftr-sub         { font-size: 1.3vw; }
  .ftr-call-label  { font-size: 2.6vw; }
  .ftr-call-num    { font-size: 2vw; }
  .ftr-disclaimer  { font-size: 1.1vw; }
}

@media only screen and (max-width: 991px) {
  #navbar { height: 70px; }
  .navbar-container { padding: 0 28px; }
  .nav-logo .logo { height: 60px; }
  .mobile-nav-links li a { font-size: 1.50vw; }
  .section-hero { height: calc(100vh - 70px); min-height: 500px; margin-top: 70px; }
  .hero-content { left: 4vw; bottom: 4%; width: 72vw; }
  .hero-heading-main { font-size: 3.8vw; }
  .hero-desc { font-size: 2vw; line-height: 1.7; max-width: 68vw; }
  .section-overview { padding: 2.5rem 0; }
  .ov-tag-icon { width: 1.25rem; }
  .ov-tag-text { font-size: 2vw; }
  .ov-heading { font-size: 5vw; margin-bottom: 1.25rem !important; }
  .ov-desc { font-size: 1.75vw; margin-bottom: 0.75rem !important; }
  .ov-desc + .ov-desc { margin-bottom: 1.5rem !important; }
  .ov-btn { font-size: 1.6vw; padding: 0.65rem 1.4rem; margin-bottom: 1.75rem; }
  .ov-stat-num { font-size: 4vw; }
  .ov-stat-label { font-size: 1.5vw; }
  .ov-stat-sep { height: 2.5rem; }
  .ov-badge { top: 1rem; left: -0.75rem; padding: 0.6rem 1rem; gap: 0.5rem; }
  .ov-badge-num { font-size: 3.2vw; }
  .ov-badge-text { font-size: 1.1vw; }
  .ov-flower { width: 160px; }
  .modal-flower {
    width: 125px;
}
  .section-config  { padding: 3.5rem 0 4rem; }
  .config-header   { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .config-header-left { max-width: 100%; }
  .config-heading  { font-size: 5vw; }
  .config-tag-text { font-size: 1.5vw; }
  .config-desc     { font-size: 2vw; }
  .config-plot-name,
  .config-plot-dim { font-size: 3.2vw; }
  .config-flower   { width: 130px; }
  .config-prev img,
  .config-next img { width: 46px; height: 46px; }
  .config-header-right {
    width: 100%;
}
  .invest-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: unset;
    padding: 3rem 5vw;
  }
  .invest-left {
    width: 100%;
    padding: 0 0 2.5rem;
  }
  .invest-left::after  { display: none; }
  .invest-nav-desktop  { display: none; }
  .invest-nav-mobile   {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .invest-slider-col   { padding: 0; overflow: hidden; }
  .invest-heading      { font-size: 5vw; }
  .invest-tag-text     { font-size: 1.8vw; }
  .invest-desc         { font-size: 2vw; }
  .invest-card-title   { font-size: 2.5vw; }
  .invest-content-top  { gap: 1rem; }
  .ame-content-col { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }
  .ame-img-col     { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; }
  .ame-outer {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .ame-item {
    padding: 1.2rem 0;
}
  .ame-img-col {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1.5rem;
  }
  .ame-hero-img { width: 100%; max-height: 100%; -o-object-fit: cover; object-fit: cover; }
  .ame-content-col { padding: 2.5rem 6% 0; }
  .ame-card    { height: 520px; }
  .ame-heading { font-size: 5vw; }
  .ame-tag-text { font-size: 15px; }
  .ame-flower  { width: 28vw; }
  .gal-heading { font-size: 4vw; margin-bottom: 4vw; }
  .gal-slide { height: 40vw; }
  .gal-slide.gal-active { width: 62vw; margin-right: 1.04vw; }
  .gal-slide.gal-next   { width: 24vw; margin-right: 0; }
  .gal-slide.gal-peek   { width: 0; margin-right: 0; overflow: hidden; }
  .gal-slide img { width: 62vw; }
  .loc-content-col  { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }
  .loc-img-col      { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; }
  .loc-outer {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .loc-img-col {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1.5rem;
  }
  .loc-map-img    { width: 100%; }
  .loc-content-col { padding: 2.5rem 6% 0; }
  .loc-heading    { font-size: 5vw; margin-bottom: 1.5rem; }
  .loc-tag-text   { font-size: 15px; }
  .loc-acc-title  { font-size: 2.2vw; }
  .loc-flower     { width: 28vw; }
  .mp-tag-text      { font-size: 2vw; }
  .mp-heading       { font-size: 5vw; margin-bottom: 1.75rem !important; }
  .mp-legend-title  { font-size: 4.5vw; }
  .mp-legend-desc   { font-size: 1.75vw; }
  .mp-legend-label  { font-size: 3vw; }
  .mp-flower        { width: 140px; }
  .mp-legend-swatch { width: 38px; height: 38px; }
  .ftr-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  .ftr-form-col    { padding-right: 0; }
  .ftr-info-col    { padding-left: 0; }
  .ftr-vdivider    { display: none; }
  .ftr-heading     { font-size: 5vw; }
  .ftr-sub         { font-size: 1.8vw; }
  .ftr-call-label  { font-size: 3.5vw; }
  .ftr-call-num    { font-size: 2.8vw; }
  .ftr-disclaimer  { font-size: 1.6vw; }
  .ftr-main        { padding: 3rem 0 2.5rem; }
}

@media only screen and (max-width: 767px) {
  #navbar { height: 70px; }
  .navbar-container { padding: 0 20px; width: 95vw; }
  .nav-logo .logo { height: 50px; }
  .mobile-nav-links li a { font-size: 2.50vw; }
  .section-hero { height: 160vw; min-height: unset; margin-top: 70px; }
  .hero-content { left: 5vw; bottom: 4%; width: 88vw; gap: 12px; }
  .hero-heading-main { font-size: 5.5vw; }
  .hero-desc { font-size: 2.50vw; line-height: 1.6; max-width: 84vw; }
  .custom-container { width: 90vw; }
  .jkb-modal .modal-dialog { max-width: calc(100% - 16px); }
  .jkb-modal-form-only { padding: 2rem 1.5rem; }
 
  .modal-flower-top { width: 91px; left: 5px; }
  .modal-logo { width: 110px; margin-bottom: 0.75rem; }
  .jkb-modal-title { font-size: 1.4rem; }
  .footer-blu-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-blu-contact { gap: 16px; }
  .footer-blu-sep { display: none; }
  .mobile-fixed-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    -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;
  }
  .section-location {
    padding: 2rem 0;
}
.section-amenities {
    padding: 2rem 0;
}
  .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: #a8e4a0;
    color: #3c3c3a;
    border: none;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--satoshi);
    padding: 0.9rem 0.5rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: capitalize;
  }
  .mob-btn-divider {
    width: 1px;
    background: rgba(60, 60, 58, 0.2);
    flex-shrink: 0;
    align-self: stretch;
  }
  .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;
  }
  .footer-logo { height: 120px; }
  .footer-rera-line { font-size: 13px; }
  .footer-disclaimer-links { font-size: 14px; }
  .footer-disclaimer-text { font-size: 12px; line-height: 1.8; }
  .footer-social-btn { width: 44px; height: 44px; font-size: 16px; }
  .footer-main { padding-top: 2rem; }
  .section-overview { height: auto; min-height: unset; padding: 3rem 0 4rem; }
  .section-overview .custom-container { width: 90vw; flex: unset; min-height: unset; }
  .ov-img-box { min-height: 60vw; }
  .ov-tag { gap: 0.5rem; margin-bottom: 1rem; }
  .ov-tag-icon { width: 1.25rem; }
  .ov-tag-text { font-size: 3vw; }
  .ov-heading { font-size: 7vw; line-height: 1.2; margin-bottom: 1.25rem !important; }
  .ov-desc { font-size: 2.5vw; margin-bottom: 0.75rem !important; }
  .ov-desc + .ov-desc { margin-bottom: 1.5rem !important; }
  .ov-btn { font-size: 2.5vw; padding: 0.75rem 1.75rem; margin-bottom: 1.75rem; }
  .ov-stats { gap: 1.25rem; }
  .ov-stat-num {font-size: 6vw;}
  .ov-stat-label { font-size: 2.8vw; }
  .ov-stat-sep { height: 2.5rem; }
  .ov-badge { top: 1rem; left: -0.5rem; padding: 0.6rem 1rem; gap: 0.5rem; }
  .ov-badge-num { font-size: 6vw; }
  .ov-badge-text { font-size: 2.2vw; }
  .ov-flower { width: 120px; bottom: -10px; left: -15px; }
   .modal-flower { width: 100px; }
  .floating-side-btn { display: none; }
  .section-config  { padding: 3rem 0 4rem; }
  .config-heading  { font-size: 7vw; }
  .config-tag-text { font-size: 2.2vw; }
  .config-desc     { font-size: 2.5vw; }
  .config-plot-name,
  .config-plot-dim { font-size: 5vw; }
  .config-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .config-flower   { width: 110px; }
  .config-nav {
    margin-top: 1rem;
}
  .invest-inner      { padding: 2.5rem 5vw; }
  .invest-heading    { font-size: 7.5vw; }
  .invest-tag-text   { font-size: 2.5vw; }
  .invest-desc       { font-size: 3vw; }
  .invest-card-title { font-size: 4vw; }
  .ame-heading    { font-size: 7vw; }
  .ame-item-title { font-size: 15px; }
  .ame-item-desc  { font-size: 13px; }
  .ame-icon-wrap  { width: 52px; height: 52px; }
  .ame-icon       { width: 22px; height: 22px; }
  .ame-card       { height: 460px; }
  .ame-list       { padding-right: 3rem; }
  .ame-flower     { width: 32vw; }
  .section-gallery { padding: 2.5rem 0; }
  .gal-heading { font-size: 7vw; margin-bottom: 6vw; }
  .gal-strip { padding-left: 5%; margin-bottom: 5vw; }
  .gal-slide { height: 52vw; border-radius: 3px; }
  .gal-slide.gal-active { width: 72vw; margin-right: 3vw; }
  .gal-slide.gal-next   { width: 22vw; margin-right: 0; }
  .gal-slide.gal-peek   { width: 0;    margin-right: 0; overflow: hidden; }
  .gal-slide img { width: 72vw; }
  .gal-nav { padding-left: 5%; }
  .gal-btn img { width: 40px; height: 40px; }
  .gal-label { font-size: 14px; bottom: 1rem; left: 1rem; }
  .loc-heading    { font-size: 7vw; }
  .loc-acc-title  { font-size: 3.5vw; }
  .loc-icon-wrap  { width: 52px; height: 52px; }
  .loc-icon       { width: 22px; height: 22px; }
  .loc-acc-body   { font-size: 14px; padding-left: calc(52px + 1rem); }
  .loc-flower     { width: 32vw; }

  .mp-tag-text      { font-size: 3vw; }
  .mp-heading       { font-size: 7vw; margin-bottom: 1.5rem !important; }
  .mp-legend-title  { font-size: 6vw; }
  .mp-legend-desc   { font-size: 2.5vw; margin-bottom: 1.5rem !important; }
  .mp-legend-label  { font-size: 4vw; }
  .mp-legend-swatch { width: 34px; height: 34px; border-radius: 4px; }
  .mp-legend-item   { padding: 0.75rem 0; }
  .mp-img-wrap      { padding: 0.75rem; }
  .mp-flower        { width: 110px; }
  .ftr-heading     {font-size: 7vw;}
  .ftr-sub         {font-size: 2.5vw;}
  .ftr-label       { font-size: 15px; }
  .ftr-call-label  { font-size: 6vw; }
  .ftr-call-num    { font-size: 5vw; }
  .ftr-disclaimer  { font-size: 2.8vw; }
  .ftr-logo        { height: 70px; }
  .ftr-rera-key    { font-size: 15px; }
  .ftr-rera-val    { font-size: 14px; }
  .ftr-address     { font-size: 14px; }
  .ftr-main        { padding: 2.5rem 0 2rem; }
  .ftr-bottom-row  { -webkit-box-orient: vertical; -ms-flex-direction: column; flex-direction: column; align-items: flex-start; }
  .mp-north-arrow {
    right: 2.5rem;
    width: 70px;
}
}

@media only screen and (max-width: 576px) {
  .mobile-nav-links li a { font-size: 3vw; }
  .hero-content { bottom: 3%; }
  .hero-desc { font-size: 3vw; max-width: 84vw; }
  .mobile-offcanvas-close { font-size: 3vw; }
  .ov-desc {
      font-size: 3.7vw;
  }
  .ov-btn {
      font-size: 3.7vw;
  }
  .config-tag-text { font-size: 3vw; }
  .config-desc     { font-size: 3.5vw; }
  .config-plot-name,
  .config-plot-dim { font-size: 5.5vw; }
  .config-sqft     { font-size: 2.5vw; }
  .config-unit-txt { font-size: 2.5vw; }
  .config-badge-txt,
  .config-plot-label { font-size: 2.2vw; }
  .config-flower   { width: 90px; }
  .config-prev img,
  .config-next img { width: 40px; height: 40px; }
  .ov-stat-num {
      font-size: 5vw;
  }
  .invest-inner      { padding: 2rem 5vw; }
  .invest-heading    { font-size: 9vw; }
  .invest-tag-text   { font-size: 3.5vw; }
  .invest-desc       { font-size: 3.5vw; }
  .invest-card-title { font-size: 5.5vw; }
  .invest-card-text  { font-size: 3.5vw; }
  .invest-prev img,
  .invest-next img   { width: 40px; height: 40px; }
  .ame-heading    { font-size: 7.5vw; }
  .ame-tag-text   { font-size: 13px; }
  .ame-item       { gap: 0.85rem; padding: 0.9rem 0; }
  .ame-item-title { font-size: 14px; }
  .ame-item-desc  { font-size: 12px; }
  .ame-icon-wrap  { width: 44px; height: 44px; }
  .ame-icon       { width: 20px; height: 20px; }
  .ame-card       { height: 400px; }
  .ame-flower     { width: 40vw; }
  .loc-heading    { font-size: 7.5vw; }
  .loc-acc-title  { font-size: 4vw; }
  .loc-icon-wrap  { width: 44px; height: 44px; }
  .loc-icon       { width: 20px; height: 20px; }
  .loc-acc-body   { font-size: 13px; padding-left: calc(44px + 0.85rem); }
  .loc-acc-btn    { gap: 0.85rem; padding: 0.9rem 0; min-height: 60px; }
  .loc-flower     { width: 40vw; }
  .mp-tag-text      { font-size: 3.5vw; }
  .mp-heading       { font-size: 7.5vw; }
  .mp-legend-title  { font-size: 7vw; }
  .mp-legend-desc   { font-size: 3.5vw; }
  .mp-legend-label  { font-size: 5vw; }
  .mp-flower        { width: 90px; }
  .ftr-heading      {font-size: 7.5vw;}
  .ftr-sub          {font-size: 3.5vw;}
  .ftr-field-2col   { -webkit-box-orient: vertical; -ms-flex-direction: column; flex-direction: column; gap: 0; }
  .ftr-call-label   { font-size: 7.5vw; }
  .ftr-call-num     { font-size: 6vw; }
  .ftr-disclaimer   { font-size: 3.2vw; }
  .ftr-nav          { gap: 1.2rem; }
}

@media only screen and (max-width: 450px) {
  .nav-logo .logo { height: 50px; }
  .hero-heading-main { font-size: 6.5vw; }
  .hero-desc { font-size: 3.75vw; max-width: 88vw; }
}