/* ============== CUSTOM FONTS ============== */
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-It.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-MediumIt.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-Demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-DemiIt.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../fonts/AvenirNextLTPro-Heavy.otf") format("opentype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gambarino";
  src: url("../fonts/Gambarino-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --primary-blue: #2E6B1A;
  --dark-blue: #1E4A10;
  --accent-blue: #4E9422;
  --light-blue: #f2f8ec;
  --bg-cream: #f5f1ea;
  --bg-light: #f8f9fb;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --primary: #2E6B1A;
  --light: #ffffff;
}

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

body {
  font-family: "AvenirNextLTPro", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: #fff;
}

img {
  max-width: 100%;
}
a {
  text-decoration: none;
}

.section-padding {
  padding: 80px 0;
}

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 8px;
  font-style: italic;
  font-family: "Gambarino", serif;
}

.section-title {
  font-family: "Gambarino", serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 0;
}

.title-blue {
  color: var(--primary-blue);
  font-style: italic;
}

.section-head {
  margin-bottom: 50px;
}

.sub-text {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 14px;
}

/* ============== BUTTONS ============== */
.btn-primary-blue {
  background: var(--primary-blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn-primary-blue:hover {
  background: var(--dark-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary-blue);
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid var(--primary-blue);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* ============== HERO SECTION (with Bootstrap Carousel) ============== */
.hero-section {
  position: relative;
  background: #000;
  overflow: hidden;
}

/* Carousel flows naturally so image is never cropped */
.hero-carousel {
  position: relative;
  width: 100%;
  z-index: 1;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: auto;
}
.hero-slide {
  width: 100%;
  position: relative;
}
.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
/* Desktop: blur panel covers left ~46% of hero */
.hero-blur-panel {
  display: none;
}

/* Desktop: gradient dark on left, transparent on right */
.hero-gradient-desktop {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    -89.45deg,
    rgba(0, 0, 0, 0) 60.659%,
    rgba(0, 0, 0, 0.195) 68.842%,
    rgba(0, 0, 0, 0.264) 72.485%,
    rgba(0, 0, 0, 0.311) 77.442%,
    rgba(0, 0, 0, 0.45) 84.221%,
    rgba(0, 0, 0, 0.531) 90.898%,
    rgba(0, 0, 0, 0.599) 95.754%,
    rgba(0, 0, 0, 0.75) 111.07%
  );
  pointer-events: none;
}

/* Mobile: gradient dark on top, transparent on bottom (no blur here) */
.hero-gradient-mobile {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* background: linear-gradient(
    0.148deg,
    rgba(0, 0, 0, 0) 45.405%,
    rgba(0, 0, 0, 0.367) 58.659%,
    rgba(0, 0, 0, 0.531) 68.521%,
    rgba(0, 0, 0, 0.599) 78.545%,
    rgba(0, 0, 0, 0.612) 90.024%,
    rgba(0, 0, 0, 0.75) 99.915%
  ); */
  pointer-events: none;
}
/* Mobile: full-slide blur (matches Figma — blur sits above gradient, text sits above blur) */
.hero-blur-mobile {
  position: absolute;
  inset: 0;
  z-index: 3;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: rgba(0, 0, 0, 0.01);
  pointer-events: none;
}
.hero-carousel .carousel-item {
  transition:
    opacity 0.9s ease-in-out,
    transform 0.9s ease-in-out;
}

/* Horizontal pill indicators */
.hero-indicators {
  bottom: 32px;
  z-index: 50;
  margin: 0;
  gap: 8px;
  justify-content: center;
  pointer-events: auto;
}
.hero-indicators button {
  width: 36px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border: none !important;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.4s ease;
  text-indent: 0 !important;
}
.hero-indicators button.active {
  background: linear-gradient(90deg, #4E9422 0%, #2E6B1A 100%) !important;
  width: 42px !important;
}

/* Prev / Next controls — full clickable, positioned above hero content */
.hero-ctrl {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  z-index: 50;
  pointer-events: auto;
  transition: all 0.3s ease;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hero-ctrl:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-50%) scale(1.05);
}
.hero-ctrl span {
  background-image: none !important;
  width: auto;
  height: auto;
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-ctrl-prev {
  left: 24px;
}
.hero-ctrl-next {
  right: 24px;
}

@media (max-width: 575px) {
  .hero-ctrl {
    width: 42px;
    height: 42px;
  }
  .hero-ctrl-prev {
    left: 12px;
  }

  .hero-ctrl-next {
    right: 12px;
  }
  .hero-indicators {
    bottom: 20px;
  }
  .hero-indicators button {
    width: 28px !important;
  }
  .hero-indicators button.active {
    width: 36px !important;
  }
}

.main-navbar {
  background: #fff;
  position: relative;
  z-index: 10;
  /* padding: 15px 0; */
  border-bottom: 1px solid rgba(88, 89, 91, 0.18);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-navbar .container {
  width: 85%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .main-navbar .container {
    width: 100%;
  }
}
.main-navbar.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 22px 0;
  z-index: 999;
  border-bottom: 1px solid rgba(88, 89, 91, 0.18);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.12);
  transform: translateY(0);
}
.main-navbar.nav-hidden {
  transform: translateY(-100%);
}
.main-navbar .navbar-brand {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.brand-optima {
  height: 55px;
  width: auto;
  display: block;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo2 {
  height: 85px;
  width: auto;
  display: block;
}
.brand-srijan {
  height: 54px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: "Gambarino", serif;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  display: block;
}
.logo-tagline {
  color: #fff;
  font-size: 9px;
  letter-spacing: 4px;
  display: block;
  margin-top: 2px;
  opacity: 0.9;
}

/* Desktop navbar nav */
.main-navbar .navbar-nav {
  gap: 18px;
  align-items: center;
}
.main-navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
/* Vertical separator between nav items */
.main-navbar .navbar-nav .nav-item:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(88, 89, 91, 0.35);
  flex-shrink: 0;
}
.main-navbar .nav-link {
  color: #58595b !important;
  font-size: 18px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-weight: 500;
  letter-spacing: -0.54px;
  padding: 4px 0 !important;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}
/* Underline slide-in animation on hover */
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.main-navbar .nav-link:hover {
  color: var(--primary-blue) !important;
}
.main-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.srijan-text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  font-family: "Gambarino", serif;
}
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ============== PREMIUM HAMBURGER BUTTON ============== */
.hamburger-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4E9422;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  z-index: 1100;
}
.hamburger-btn:hover {
  background: #4E9422;
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}
.hamburger-btn span:nth-child(1) {
  width: 22px;
}
.hamburger-btn span:nth-child(2) {
  width: 16px;
}
.hamburger-btn span:nth-child(3) {
  width: 22px;
}
.hamburger-btn:hover span:nth-child(2) {
  width: 22px;
}

/* When offcanvas is open — turn into X */
body.menu-open .hamburger-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
body.menu-open .hamburger-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.menu-open .hamburger-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* ============== OFFCANVAS MOBILE MENU ============== */
.premium-offcanvas {
  width: 400px !important;
  max-width: 100%;
  background: #fff;
  color: #1a1a1a;
  border: none !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1) !important;
}
.premium-offcanvas.offcanvas-end {
  transform: translateX(100%);
}
.premium-offcanvas.show {
  transform: translateX(0);
}

.premium-offcanvas .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.offcanvas-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f8ec;
  border: 1px solid rgba(174, 44, 47, 0.2);
  color: #2E6B1A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.offcanvas-close:hover {
  background: #2E6B1A;
  color: #fff;
  transform: rotate(90deg);
  border-color: #2E6B1A;
}

.premium-offcanvas .offcanvas-body {
  padding: 24px 24px 30px;
  display: flex;
  flex-direction: column;
}

.offcanvas-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.offcanvas-menu li {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.68, -0.3, 0.27, 1.3);
  transition-delay: calc(var(--i) * 0.06s + 0.15s);
}
.premium-offcanvas.show .offcanvas-menu li {
  opacity: 1;
  transform: translateX(0);
}
.offcanvas-menu li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.offcanvas-menu li a:hover {
  color: #2E6B1A;
  padding-left: 12px;
}
.offcanvas-menu li a .menu-num {
  font-size: 11px;
  letter-spacing: 2px;
  color: #2E6B1A;
  font-family: "AvenirNextLTPro", sans-serif;
  font-weight: 700;
}
.offcanvas-menu li a > i {
  margin-left: auto;
  font-size: 16px;
  opacity: 0;
  color: #2E6B1A;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.offcanvas-menu li a:hover > i {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas-footer {
  margin-top: auto;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: 0.6s;
}
.premium-offcanvas.show .offcanvas-footer {
  opacity: 1;
  transform: translateY(0);
}
.offcanvas-footer .btn-primary-blue {
  background: #2E6B1A;
  color: #fff;
  padding: 14px 24px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  transition: background 0.3s ease;
}
.offcanvas-footer .btn-primary-blue:hover {
  background: #1E4A10;
  color: #fff;
}

.offcanvas-contact {
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
}
.contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
  font-family: "AvenirNextLTPro", sans-serif;
}
.contact-number {
  font-family: "AvenirNextLTPro", sans-serif;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
}
.contact-number i {
  color: #2E6B1A;
  margin-right: 6px;
  font-size: 16px;
}
.contact-number:hover {
  color: #2E6B1A;
}

/* Premium backdrop */
.offcanvas-backdrop.show {
  opacity: 0.7;
  background: #000;
  backdrop-filter: blur(4px);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
}
/* Desktop: push text to left matching Figma (199px / 1920px ≈ 10.4%) */
@media (min-width: 992px) {
  .hero-content > .container {
    max-width: 100%;
    padding-left: 10.4%;
    padding-right: 5%;
  }
}
@media (max-width: 991px) {
  .hero-content {
    align-items: flex-start;
    padding-top: 60px;
  }
  .hero-text {
    text-align: center;
    width: 100%;
  }
  .hero-title {
    font-size: 48px;
    letter-spacing: -0.5px;
    line-height: 1.1;
  }
  .hero-title br {
    display: none;
  }
  .hero-sub {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-side-btns {
    display: none;
  }
  .btn-hero {
    display: inline-flex !important;
    margin: 0 auto;
    min-height: 0 !important;
    min-width: 0 !important;
    padding: 8px 18px;
    font-size: 10px;
    gap: 5px;
    letter-spacing: 0px;
    border-radius: 999px;
  }
  .btn-hero i {
    font-size: 10px;
  }
}
@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .container,
.hero-content .hero-text,
.hero-content .btn-hero {
  pointer-events: auto;
}
.hero-title {
  animation: heroFadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.4s;
  font-family: "Gambarino", serif;
  color: #fff;
  font-size: 95px;
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
  font-style: normal;
  letter-spacing: -1px;
}
.hero-sub {
  animation: heroFadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.75s;
  font-family: "AvenirNextLTPro", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 440px;
  letter-spacing: 0;
  transition: opacity 0.3s ease;
}
.btn-hero {
  animation: heroFadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 1.05s;
  font-family: "AvenirNextLTPro", sans-serif;
  background: #fff;
  color: #2E6B1A;
  padding: 0 32px;
  min-height: 56px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0;
}
.btn-hero i {
  color: #2E6B1A;
  font-size: 16px;
}
.btn-hero:hover {
  background: #2E6B1A;
  color: #fff;
}
.btn-hero:hover i {
  color: #fff;
}


/* ============== NAVBAR CTA BUTTON ============== */
.btn-nav-enquire {
  background: #2e6b1a;
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 46px;
  min-width: 174px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: "AvenirNextLTPro", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
  letter-spacing: -0.3px;
}
.btn-nav-enquire:hover {
  background: #1e4a10;
  color: #fff;
}
/* ============== HERO RIGHT-SIDE BUTTONS ============== */
.hero-side-btns {
  position: absolute;
  right: 48px;
  bottom: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: heroFadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 1.2s;
}
.btn-hero-inquire {
  background: #fff;
  color: #2E6B1A;
  border: none;
  border-radius: 999px;
  padding: 0 28px;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  font-family: "AvenirNextLTPro", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0;
}
.btn-hero-inquire i {
  color: #2E6B1A;
  font-size: 16px;
}
.btn-hero-inquire:hover {
  background: #2E6B1A;
  color: #fff;
}
.btn-hero-inquire:hover i {
  color: #fff;
}
.btn-hero-brochure {
  background: #2E6B1A;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 28px;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  font-family: "AvenirNextLTPro", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
}
.btn-hero-brochure:hover {
  background: #1E4A10;
  color: #fff;
}


/* ============== PREMIUM ENQUIRY MODAL ============== */
.premium-modal .modal-dialog {
  max-width: 880px;
}
.premium-modal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  background: #fff;
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.modal-close-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: rotate(90deg);
}

.modal-left {
  background: linear-gradient(135deg, #2E6B1A 0%, #1E4A10 60%, #1E4A10 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.modal-left::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
  border-radius: 50%;
}
.modal-left::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  border-radius: 50%;
}
.modal-left-content {
  position: relative;
  z-index: 2;
  padding: 50px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-logo {
  font-family: "Gambarino", serif;
  font-size: 26px;
  letter-spacing: 4px;
  font-weight: 700;
  display: block;
}
.modal-tagline {
  font-size: 9px;
  letter-spacing: 4px;
  opacity: 0.85;
  margin-bottom: 36px;
  display: block;
}
.modal-headline {
  font-family: "Gambarino", serif;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 600;
}
.modal-headline .title-blue {
  color: rgba(255,255,255,0.9) !important;
  font-style: italic;
}
.modal-sub {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
}
.modal-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}
.modal-perks li i {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.modal-right {
  background: #fff;
}
.modal-right-content {
  padding: 50px 40px;
  height: 100%;
}
.form-title {
  font-family: "Gambarino", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.enquiry-form .form-floating {
  position: relative;
}
.enquiry-form .form-control {
  height: 58px;
  padding: 18px 18px 6px 46px !important;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  background: #fff;
  transition: all 0.25s;
}
.enquiry-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(174, 44, 47, 0.1);
}
.enquiry-form .form-floating > label {
  padding: 18px 18px 18px 46px;
  font-size: 14px;
  color: var(--text-muted);
}
.enquiry-form .form-floating > label i {
  margin-right: 6px;
  color: var(--primary-blue);
}
.enquiry-form .form-floating > .form-control:focus ~ label,
.enquiry-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.78) translateY(-0.6rem) translateX(0.15rem);
  color: var(--primary-blue);
}

.btn-lg-modal {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  box-shadow: 0 8px 20px rgba(174, 44, 47, 0.25);
}
.btn-lg-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(174, 44, 47, 0.35);
}

.form-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 14px;
  margin-bottom: 0;
}

.success-msg {
  text-align: center;
  padding: 60px 20px;
}
.success-msg i {
  font-size: 64px;
  color: #5b9c4f;
  margin-bottom: 16px;
}
.success-msg h4 {
  font-family: "Gambarino", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.success-msg p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.84px;
    line-height: 1.32;
    margin-bottom: 8px;
  }
  .hero-sub {
    font-size: 12px;
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto 24px;
    letter-spacing: -0.3px;
  }
  .section-title {
    font-size: 36px;
  }
  .layout-prev {
    left: 5px;
  }
  .layout-next {
    right: 5px;
  }
  .main-navbar {
    background: #fff;
    padding: 14px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 32px;
  }
  .section-title {
    font-size: 28px;
  }
  .stats-grid .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .brochure-card {
    flex-direction: column;
    text-align: center;
  }
  .modal-left {
    display: none;
  }
  .premium-modal .modal-dialog {
    margin: 12px;
  }
  .modal-right-content {
    padding: 30px 22px;
  }
  .alive-swiper {
    padding: 20px 14px;
  }
  .slider-arrows {
    width: 100%;
    justify-content: flex-end;
  }

  .btn-hero {
    display: inline-flex !important;
    margin: 0 auto;
    padding: 8px 18px;
    font-size: 10px;
    gap: 5px;
    letter-spacing: 0px;
    border-radius: 999px;
  }
  .btn-hero i {
    font-size: 10px;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="fade-up"]   { transform: translateY(35px); }
[data-anim="fade-right"]{ transform: translateX(-35px); }
[data-anim="fade-left"] { transform: translateX(35px); }
[data-anim="zoom-in"]   { transform: scale(0.93); }
[data-anim].anim-in {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== STEP MODAL ===== */
.step-modal .modal-dialog {
  max-width: 660px;
}
.step-modal-content {
  border-radius: 20px;
  border: none;
  padding: 52px 64px 48px;
  position: relative;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}
@media (max-width: 575px) {
  .step-modal-content {
    padding: 36px 24px 32px;
    border-radius: 16px;
  }
}
.step-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.step-modal-close img {
  display: block;
}
.step-modal-logo {
  text-align: center;
  margin-bottom: 22px;
}
.step-modal-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.step-modal-heading {
  text-align: center;
  color: #1a3a7a;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 28px;
}
.step-modal-body {
  margin-bottom: 4px;
}
.step-pane {
  display: none;
}
.step-pane.active {
  display: block;
}
.step-input {
  width: 100%;
  background: #f0f2f5;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 17px 20px;
  font-size: 15px;
  color: #1a1a2e;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
  font-family: "AvenirNextLTPro", sans-serif;
}
.step-input:focus {
  background: #e8ecf4;
  border-color: #2E6B1A44;
}
.step-input::placeholder {
  color: #8a939f;
}
.step-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  font-family: "AvenirNextLTPro", sans-serif;
  padding: 10px 0;
  line-height: 1.5;
}
.step-checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #2E6B1A;
  cursor: pointer;
}
.step-auth-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 14px;
  color: #555;
  padding: 10px 0;
}
.step-auth-label {
  color: #444;
  white-space: nowrap;
}
.step-auth-option {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
}
.step-auth-option input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #2E6B1A;
  cursor: pointer;
}
.step-progress-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 18px;
}
.step-progress-track {
  flex: 1;
  height: 3px;
  background: #e0e3ea;
  border-radius: 999px;
  position: relative;
}
.step-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2E6B1A 0%, #4E9422 100%);
  border-radius: 999px;
  width: 20%;
  position: relative;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: visible;
}
.step-progress-dot {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2E6B1A;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #2E6B1A33;
}
.step-counter {
  font-size: 13px;
  color: #8a939f;
  font-family: "AvenirNextLTPro", sans-serif;
  white-space: nowrap;
  min-width: 28px;
  text-align: right;
}
.step-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "AvenirNextLTPro", sans-serif;
  cursor: pointer;
  transition: background 0.35s, box-shadow 0.35s;
  background: #c5cde0;
  color: #fff;
  letter-spacing: 0.4px;
}
.step-submit-btn.active {
  background: #2E6B1A;
  box-shadow: 0 6px 20px rgba(174, 44, 47, 0.3);
}
.step-submit-btn.active:hover {
  background: #1a3575;
}
.step-success {
  text-align: center;
  padding: 24px 0 8px;
}
.step-success i {
  font-size: 52px;
  color: #2E6B1A;
}
.step-success h4 {
  margin-top: 18px;
  color: #1a3a7a;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 22px;
}
.step-success p {
  color: #666;
  font-family: "AvenirNextLTPro", sans-serif;
  margin-top: 8px;
}

/* ============== OTP MODAL CSS ============== */
.form-loader { display: none; }
.form-loader-wrapper { display: flex; justify-content: center; align-items: center; gap: 0.5rem; width: 100%; background-color: transparent; margin: auto; padding: 0.45rem 0.75rem 0.3rem; border-radius: 4px; }
.form-loader-wrapper .loader-div { display: flex; justify-content: center; align-items: center; }
.form-loader-wrapper .loader-div .check { display: flex; justify-content: center; align-items: center; color: #fff; background-color: #01dd01; border-radius: 100px; width: 30px; height: 30px; }
.form-loader-wrapper .loader-div .check i { font-size: 1.15rem; }
.form-loader-wrapper .loader-div .check.red { background-color: #2E6B1A; }
.form-loader-wrapper .loader-txt { color: var(--primary); font-size: 1rem; font-weight: 500; }
.f-loader { width: 25px; height: 25px; border: 3px solid var(--primary); border-bottom-color: transparent; border-radius: 50%; display: inline-block; box-sizing: border-box; animation: rotation 0.75s linear infinite; }
@keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.otp-form { display: none; }
.otp-title { font-size: 1.25rem; font-weight: 500; margin: 0 0 0.25rem 0 !important; text-align: center; }
.otp-subtitle { font-size: 1rem; font-weight: 400; margin: 0 0 1.25rem 0 !important; text-align: center; opacity: 0.7; }
.otp-inputs { display: flex; gap: 1rem; justify-content: center; align-items: center; }
.otp-input { width: 15%; height: 56px; font-weight: 600; font-size: 1.15rem; border-radius: 7px; text-align: center; border: none; outline: 2px solid rgba(35,64,143,0.42); }
.otp-input:focus, .otp-input:active { outline: 2px solid var(--primary); }
.otp-input.valid { outline: 2px solid #07d307 !important; }
.otp-input.invalid { outline: 2px solid #e05c00 !important; }
.btn-resend { border: none; background: transparent; border-bottom: 1px solid #0e7fc3; padding: 0 0 0.25rem; width: max-content; color: #0e7fc3; margin: 1.15rem 0 0; }
.custom-modal .modal-body { position: relative; overflow-y: auto; }
.custom-modal .modal-body.show { height: 45dvh; overflow: hidden; }
.opt-success-res { position: absolute; top: 40%; left: 50%; width: 100%; height: 100%; overflow: hidden; background-color: #fff; z-index: 99999; display: none; justify-content: center; align-items: center; transform: translate(-50%, -50%); opacity: 0; transition: all 0.5s ease; }
.opt-success-res.active { display: flex; }
.custom-modal .modal-body.show .opt-success-res.active { top: 50%; opacity: 1; transition: all 0.5s ease; }
.success-content { display: flex; flex-direction: column; align-items: center; gap: 0.65rem; }
.success-content .success-res { font-size: 1.185rem; font-weight: 600; color: #2E6B1A; }
.input-hide.hide { display: none !important; }
.modal-logo { width: 160px; max-width: 100%; }
.modal-logo img { width: 100%; height: auto; object-fit: contain; }
.form-control.custom-input { border: none; border-bottom: 1px solid var(--primary); background: transparent; border-radius: 0; color: var(--primary); font-family: "AvenirNextLTPro", sans-serif; }
.form-control.custom-input::placeholder { color: rgba(174,44,47,0.55); }
.form-control.custom-input:focus { box-shadow: none; border-bottom-color: var(--dark-blue); }
.mobile-input-div { position: relative; }
.mobile-input-div .country-code { position: absolute; top: 7px; left: 2px; font-weight: 500; font-size: 0.9rem; color: var(--primary); }
.form-control.custom-input.mobile-input { padding-left: 2.55rem; }
.btn-submit { background: var(--primary); color: #fff; border: none; padding: 0.65rem 2rem; border-radius: 6px; font-family: "AvenirNextLTPro", sans-serif; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--dark-blue); }
.contact-form { padding: 1rem 0 0.25rem; }
.otp-through { color: var(--text-dark); font-size: 1.1rem; margin: 0.5rem 0 0.65rem 0 !important; }
.checkbox-label { font-size: 0.85rem; }
.not-allowed { cursor: not-allowed !important; opacity: 0.6; }
input:disabled { cursor: not-allowed !important; }

/* OTP modal — step-modal variant */
.step-modal .opt-success-res { border-radius: 20px; }
.otp-modal-form { display: flex; flex-direction: column; gap: 14px; }
.otp-fields-wrap { display: flex; flex-direction: column; gap: 14px; }
.step-mobile-wrap { position: relative; display: flex; align-items: center; }
.step-cc { position: absolute; left: 20px; font-size: 15px; color: #1a1a2e; font-family: "AvenirNextLTPro", sans-serif; font-weight: 500; pointer-events: none; }
.step-mobile-input { padding-left: 52px !important; }
.step-input.input-hide, .step-mobile-wrap.input-hide, .step-auth-row.input-hide, .step-checkbox-label.input-hide { display: block; }

/* ============== CUSTOM CONTAINER ============== */
.custom-container {
  width: 80%;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .custom-container {
    width: 100%;
    padding: 0 16px;
  }
}

/* ============== HIGHLIGHTS SECTION ============== */
.highlights-section {
  padding: 4rem 0;
  background: #F9F8F6;
}

/* Header */
.highlights-header {
  margin-bottom: 48px;
}
.highlights-title {
  font-family: "Gambarino", serif;
  font-size: 64px;
  font-weight: 400;
  color: #2d2d2d;
  margin-bottom: 16px;
  line-height: 1.1;
}
.highlights-title-red {
  color: #2E6B1A;
}
.highlights-sub-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}
.highlights-sub-line {
  display: block;
  width: 60px;
  height: 1px;
  background: #aaa;
  flex-shrink: 0;
}
.highlights-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 27px;
  color: #5F5F5F;
  margin: 0;
  white-space: nowrap;
}

/* Two-column grid: text (6 cols) + gap (2 cols) + form (4 cols) */
.highlights-body {
  display: grid;
  grid-template-columns: 6fr 4fr;
  column-gap:60px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 991px) {
  .highlights-body {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 40px;
  }
}

/* Left text block */
.highlights-text-block p {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 1rem;
  color: #5F5F5F;
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 500;
  text-align: left;
}
.highlights-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-hl-brochure,
.btn-hl-visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #2E6B1A;
  transition: all 0.25s ease;
}
.btn-hl-brochure {
  background: #2E6B1A;
  color: #fff;
}
.btn-hl-brochure:hover {
  background: #1E4A10;
  border-color: #1E4A10;
}
.btn-hl-visit {
  background: #fff;
  color: #2E6B1A;
}
.btn-hl-visit:hover {
  background: #f2f8ec;
}
.btn-hl-brochure img,
.btn-hl-visit img {
  width: 20px;
  height: 20px;
}

/* Right form card */
.highlights-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  height: 100%;
}
.hf-tag {
  display: inline-block;
  background: #f2f8ec;
  color: #2E6B1A;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0 0 12px;
}
.hf-heading {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 0 10px;
}
.hf-lead {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 20px;
  line-height: 1.55;
}
.highlights-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hf-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 14px;
  color: #333;
  background: #f7f7f7;
  outline: none;
  transition: border-color 0.2s;
}
.hf-input:focus {
  border-color: #2E6B1A;
}
.hf-input::placeholder {
  color: #aaa;
}
.hf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 12px;
  color: #666;
  cursor: pointer;
}
.hf-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #2E6B1A;
  flex-shrink: 0;
}
.hf-submit {
  background: #2E6B1A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
  width: 140px;
}
.hf-submit:hover {
  background: #1E4A10;
}

/* Highlight cards — desktop */
.highlights-cards-wrap {
  margin-top: 56px;
}
.highlights-cards-grid {
  display: flex;
  gap: 16px;
}
.hl-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 28px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s;
}
.hl-card:hover {
  box-shadow: 0 8px 32px rgba(174,44,47,0.10);
}
.hl-card-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 18px;
}
.hl-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f5fbef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1.5px solid #c8e6b0;
  transition: background 0.25s, border-color 0.25s;
}
.hl-card:hover .hl-icon-wrap {
  background: #2e6b1a;
  border-color: #2e6b1a;
}
.hl-icon {
  font-size: 38px;
  color: #2e6b1a;
  transition: color 0.25s;
}
.hl-card:hover .hl-icon {
  color: #fff;
}
.hl-card-title {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 10px;
}
.hl-card-desc {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Desktop/mobile toggle — !important needed to beat .owl-carousel.owl-loaded specificity */
.hl-desktop-only { display: flex; }
.hl-mobile-only  { display: none !important; }
@media (max-width: 767px) {
  .hl-desktop-only { display: none !important; }
  .hl-mobile-only  { display: block !important; }
}

/* Mobile owl carousel */
.highlights-owl .hl-card {
  flex: unset;
  margin: 0 6px;
}

/* Owl dots */
.highlights-owl .owl-dots {
  margin-top: 20px;
  text-align: center;
  display: block;
}
.highlights-owl .owl-dot {
  display: inline-block;
}
.highlights-owl .owl-dot span {
  background: #ccc !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  display: block;
}
.highlights-owl .owl-dot.active span {
  background: #2E6B1A !important;
}

/* Owl nav arrows */
.highlights-owl .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.highlights-owl {
  position: relative;
}
.highlights-owl .owl-nav button {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  background: #2E6B1A !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin: 0 -12px;
}
.highlights-owl .owl-nav button:hover {
  background: #1E4A10 !important;
}
.highlights-owl .owl-nav button.disabled {
  opacity: 0.4;
}

@media (max-width: 767px) {
  .highlights-title { font-size: 36px; }
  .highlights-sub { white-space: normal; font-size: 14px; }
  .highlights-sub-line { width: 30px; }
  .highlights-form-card { padding: 24px 18px; }
  .highlights-btns { flex-direction: column; }
  .btn-hl-brochure, .btn-hl-visit { width: 100%; justify-content: center; }
}
.step-input.input-hide.hide, .step-mobile-wrap.input-hide.hide, .step-auth-row.input-hide.hide, .step-checkbox-label.input-hide.hide { display: none !important; }

/* ============== CONFIGURATION SECTION ============== */
.config-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Header row */
.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}
.config-heading-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.config-title {
  font-family: "Gambarino", serif;
  font-size: 75px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1;
  margin: 0;
}
.config-title-red {
  color: #2E6B1A;
}
.config-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #5f5f5f;
  margin: 0;
}

/* Tab buttons */
.config-tabs {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.config-tab {
  width: 172px;
  height: 57px;
  border-radius: 10px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #2E6B1A;
  background: transparent;
  color: #2E6B1A;
  transition: all 0.25s ease;
}
.config-tab.active {
  background: #2E6B1A;
  color: #ffffff;
}
.config-tab:hover:not(.active) {
  background: #f2f8ec;
}

/* Content row: card + plan */
.config-content {
  display: grid;
  grid-template-columns: 508px 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Detail card */
.config-card {
  background: #f9f8f6;
  border: 1px solid rgba(86, 86, 86, 0.1);
  border-radius: 10px;
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.config-card-title {
  font-family: "Gambarino", serif;
  font-size: 36px;
  font-weight: 400;
  color: #2E6B1A;
  margin: 0;
}
.config-card-desc {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1.65;
  margin: 0;
}
.config-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(86, 86, 86, 0.15);
}
.config-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1.4;
}
.spec-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Floor plan panel */
.config-plan-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f8f6;
  border: 1px solid rgba(86, 86, 86, 0.1);
  min-height: 427px;
}
.config-plan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transform: scale(1.04);
}
.config-plan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249, 248, 246, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.config-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2E6B1A;
  color: #ffffff;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 0 24px;
  height: 54px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
  z-index: 2;
}
.config-view-btn:hover {
  background: #1E4A10;
}
.view-btn-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1100px) {
  .config-content {
    grid-template-columns: 1fr;
  }
  .config-plan-wrap {
    min-height: 320px;
  }
  .config-title {
    font-size: 52px;
  }
  .config-sub {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .config-section {
    padding: 48px 0;
  }
  .config-title {
    font-size: 36px;
  }
  .config-sub {
    font-size: 16px;
  }
  .config-card {
    padding: 24px 20px;
  }
  .config-card-title {
    font-size: 26px;
  }
  .config-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .config-tabs {
    width: 100%;
  }
  .config-tab {
    flex: 1;
    width: auto;
  }
}

/* ============== GALLERY SECTION ============== */
.gallery-section {
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

/* Header */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-heading-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-title {
  font-family: "Gambarino", serif;
  font-size: 75px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
.gallery-title-red {
  color: #2E6B1A;
}
.gallery-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #5f5f5f;
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

/* Tab buttons */
.gallery-tabs {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  align-items: center;
}
.gallery-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 57px;
  padding: 0 24px;
  border-radius: 10px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #2E6B1A;
  background: transparent;
  color: #2E6B1A;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.gallery-tab.active {
  background: #2E6B1A;
  color: #ffffff;
}
.gallery-tab.active .gtab-icon {
  filter: brightness(0) invert(1);
}
.gallery-tab:hover:not(.active) {
  background: #f2f8ec;
}
.gtab-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(800%) hue-rotate(330deg) brightness(85%);
}

/* Swiper wrap — full bleed, overflow visible */
.gallery-swiper-wrap {
  position: relative;
  width: 100%;
  padding: 0 7.5%;
  box-sizing: border-box;
}
.gallerySwiper {
  width: 100%;
  overflow: visible;
}
.gallery-slide {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.gallery-slide img {
  width: 115%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-left: -7.5%;
  display: block;
}

/* Custom nav arrows — SVG already contains the white circle + red arrow */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 63px;
  height: 63px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-arrow:hover {
  opacity: 0.85;
  transform: translateY(-50%) scale(1.06);
}
.gallery-arrow img {
  width: 63px;
  height: 63px;
  display: block;
}
.gallery-arrow-prev {
  left: calc(7.5% - 20px);
}
.gallery-arrow-next {
  right: calc(7.5% - 20px);
}

/* Progress bar + counter */
.virtual-tours-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  color: #2e6b1a;
}
.virtual-tours-placeholder i {
  font-size: 64px;
  opacity: 0.5;
}
.virtual-tours-placeholder p {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #5f5f5f;
  margin: 0;
}

.gallery-progress-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}
.gallery-progress-track {
  flex: 1;
  height: 5px;
  background: #e6e6e6;
  border-radius: 999px;
  overflow: hidden;
}
.gallery-progress-fill {
  height: 5px;
  background: #2E6B1A;
  border-radius: 999px;
  width: 10%;
  transition: width 0.4s ease;
}
.gallery-slide-count {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #5f5f5f;
  white-space: nowrap;
  min-width: 52px;
}
#galleryCurrent {
  color: #2E6B1A;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-title { font-size: 52px; }
  .gallery-sub { font-size: 17px; }
  .gallery-swiper-wrap { padding: 0 4%; }
}
@media (max-width: 767px) {
  .gallery-title { font-size: 34px; white-space: normal; }
  .gallery-sub { font-size: 15px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .gallery-swiper-wrap { padding: 0 16px; }
  .gallery-arrow { width: 44px; height: 44px; }
  .gallery-arrow img { width: 44px; height: 44px; }
  .gallery-arrow-prev { left: 0; }
  .gallery-arrow-next { right: 0; }
}

/* ============== AMENITIES SECTION ============== */
.amenities-section {
  padding: 4rem 0;
  background: #F9F8F6;
}

/* Header */
.amenities-header {
  margin-bottom: 40px;
  text-align: center;
}
.amenities-title {
  font-family: "Gambarino", serif;
  font-size: 75px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1;
  margin: 0 0 10px;
}
.amenities-title-red {
  color: #2E6B1A;
}
.amenities-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #5f5f5f;
  margin: 0;
}

/* Amenities wrap */
.amenities-wrap {
  position: relative;
  padding: 0;
}

/* Desktop: 6-column CSS grid */
.am-desktop-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.am-mobile-swiper { display: none; }

/* Download brochure button below grid */
.am-brochure-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.am-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2E6B1A;
  color: #fff;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.am-brochure-btn:hover { background: #1E4A10; color: #fff; }
.am-brochure-btn img { width: 20px; height: 20px; }

/* Amenity card */
.am-card {
  background: #ffffff;
  border: 1px solid rgba(86, 86, 86, 0.12);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 20px;
  text-align: center;
  min-height: 180px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.am-card:hover {
  box-shadow: 0 6px 24px rgba(174, 44, 47, 0.09);
  border-color: rgba(174, 44, 47, 0.25);
}
.am-icon {
  font-size: 40px;
  color: #2e6b1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am-label {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.3;
}

/* Nav arrows (shared base) */
.am-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 63px;
  height: 63px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-arrow:hover { opacity: 0.85; transform: translateY(-50%) scale(1.06); }
.am-arrow img { width: 63px; height: 63px; display: block; }
.am-arrow-prev { left: 0; }
.am-arrow-next { right: 0; }
.am-mob-prev { left: 0; }
.am-mob-next { right: 0; }

/* Responsive */
@media (max-width: 1200px) {
  .am-desktop-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
  .amenities-title { font-size: 52px; }
  .am-desktop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .amenities-title { font-size: 36px; }
  .amenities-sub { font-size: 15px; }
  .amenities-wrap { padding: 0; }
  .am-desktop-grid { display: none; }
  .am-mobile-swiper { display: block; position: relative; padding: 0 56px; }
  .am-brochure-wrap { margin-top: 28px; }
  .am-brochure-btn { font-size: 14px; padding: 12px 24px; }
  .am-card { min-height: 160px; }
  .am-arrow { width: 44px; height: 44px; }
  .am-arrow img { width: 44px; height: 44px; }
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  padding: 4rem 0;
  background: #F9F8F6;
}

.location-header {
  text-align: center;
  margin-bottom: 48px;
}
.location-title {
  font-family: "Gambarino", serif;
  font-size: 75px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1.05;
  margin: 0 0 12px;
}
.location-title-red { color: #2E6B1A; }
.location-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #5f5f5f;
  margin: 0;
}

/* Body row — Bootstrap handles the 50/50 columns */
.location-body { --bs-gutter-x: 2rem; }

/* Left: white accordion card with red right border */
.loc-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(86,86,86,0.12);
  border-right: 3px solid #2E6B1A;
  border-radius: 16px;
  overflow-y: auto;
  max-height: 480px;
  scrollbar-width: thin;
  scrollbar-color: rgba(46,107,26,0.3) transparent;
}
.loc-card::-webkit-scrollbar { width: 4px; }
.loc-card::-webkit-scrollbar-thumb { background: rgba(46,107,26,0.35); border-radius: 4px; }

/* Right: map */
.loc-map-wrap {
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
.loc-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Bootstrap accordion overrides ---- */
.loc-acc-item {
  border: none;
  border-bottom: 1px solid rgba(86,86,86,0.12);
  border-radius: 0 !important;
  background: transparent;
}
.loc-acc-item--last { border-bottom: none; }

.loc-acc-btn {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #2d2d2d;
  background: transparent;
  padding: 20px 24px;
  gap: 16px;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.loc-acc-btn:not(.collapsed) {
  color: #2E6B1A;
  background: transparent;
}
.loc-acc-btn:focus { box-shadow: none; }

/* Custom chevron — hide Bootstrap's default */
.loc-acc-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 6L8 11L13 6' stroke='%235f5f5f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.loc-acc-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 10L8 5L13 10' stroke='%232E6B1A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: none;
}

.loc-icon-wrap {
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon { width: 32px; height: 32px; object-fit: contain; }

/* Accordion body */
.loc-acc-body {
  padding: 0 24px 20px 76px;
}
.loc-acc-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.loc-acc-body ul li {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  color: #5f5f5f;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.loc-acc-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2E6B1A;
}

/* Responsive */
@media (max-width: 991px) {
  .location-title { font-size: 52px; }
  .location-sub { font-size: 16px; }
}
@media (max-width: 767px) {
  .location-title { font-size: 36px; }
  .location-sub { font-size: 14px; }
  .location-header { margin-bottom: 28px; }
  .loc-card {
    max-height: none;
    overflow-y: visible;
    border-right: 1px solid rgba(86,86,86,0.12);
    border-bottom: 3px solid #2E6B1A;
  }
  .loc-map-wrap { min-height: 260px; }
  .loc-acc-btn { font-size: 15px; padding: 16px 16px; }
  .loc-acc-body { padding: 0 16px 16px 64px; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 4rem 0;
  background: #F9F8F6;
}

.about-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-title {
  font-family: "Gambarino", serif;
  font-size: 75px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1.05;
  margin: 0 0 12px;
}
.about-title-red { color: #2E6B1A; }
.about-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #5f5f5f;
  margin: 0;
}

/* Body text */
.about-para {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #5f5f5f;
  text-align: justify;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Stats row */
.about-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 40px;
}
.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 24px;
}
.about-stat-num {
  font-family: "Gambarino", serif;
  font-size: 48px;
  font-weight: 400;
  color: #2E6B1A;
  line-height: 1;
}
.about-stat-label {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  color: #5f5f5f;
  line-height: 1.4;
}
.about-stat-divider {
  width: 1px;
  background: rgba(86,86,86,0.2);
  align-self: stretch;
  margin: 0 24px 0 0;
  flex-shrink: 0;
}

/* Image */
.about-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-title { font-size: 52px; }
  .about-stat-num { font-size: 38px; }
}
@media (max-width: 767px) {
  .about-title { font-size: 36px; }
  .about-sub { font-size: 14px; }
  .about-header { margin-bottom: 32px; }
  .about-para { font-size: 15px; }
  .about-stat-num { font-size: 32px; }
  .about-stat-label { font-size: 13px; }
  .about-img-wrap { margin-top: 8px; }
  .about-stats { justify-content: center; }
  .about-stat { align-items: center; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: #F9F8F6;
  padding: 4rem 0 0;
  overflow: hidden;
}

/* Background city skyline */
.footer-bg {
  position: absolute;
  bottom: -4%;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.footer-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, #F9F8F6 0%, transparent 100%);
  z-index: 1;
}
.footer-bg-img {
  width: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.35;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

/* Header */
.footer-logo-wrap {
  text-align: center;
  margin-bottom: 32px;
}
.footer-project-logo {
  height: 100px;
  width: auto;
}
.footer-header {
  text-align: center;
  margin-bottom: 48px;
}
.footer-title {
  font-family: "Gambarino", serif;
  font-size: 75px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1.05;
  margin: 0 0 16px;
}
.footer-title-red { color: #2E6B1A; }
.footer-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 20px;
  color: #5f5f5f;
  margin: 0;
}

/* Inline form */
.footer-form { margin-bottom: 48px; }
.footer-form-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-input {
  flex: 1;
  min-width: 200px;
  height: 57px;
  background: rgba(86,86,86,0.1);
  border: none;
  border-radius: 10px;
  padding: 0 24px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 16px;
  color: #2d2d2d;
  outline: none;
  transition: background 0.2s;
}
.footer-input::placeholder { color: #727272; }
.footer-input:focus { background: rgba(86,86,86,0.15); }
.footer-field-wrap { position: relative; flex: 1; min-width: 200px; }
.footer-field-wrap .invalid-feedback { color: #ff6b6b; font-size: 12px; padding-left: 4px; }
.footer-field-wrap .footer-input { width: 100%; }
.footer-submit-btn {
  height: 57px;
  padding: 0 40px;
  background: #2E6B1A;
  color: #fff;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.footer-submit-btn:hover { background: #1E4A10; }

/* Divider */
.footer-hr {
  border: none;
  border-top: 1px solid rgba(86,86,86,0.18);
  margin: 0 0 32px;
}

/* Disclaimer */
.footer-disclaimer {
  margin-bottom: 32px;
}
.footer-disclaimer p {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  color: #5f5f5f;
  line-height: 1.75;
  margin: 0 0 12px;
}
.footer-disclaimer p strong {
  font-weight: 700;
}
.footer-rera {
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 220px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy,
.footer-created,
.footer-links a {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  color: #5f5f5f;
}
.footer-created {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-relatte-logo {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #2E6B1A; }

/* Responsive */
@media (max-width: 991px) {
  .footer-title { font-size: 52px; }
  .footer-sub { font-size: 17px; }
}
@media (max-width: 767px) {
  .footer-title { font-size: 36px; }
  .footer-sub { font-size: 15px; }
  .footer-header { margin-bottom: 28px; }
  .footer-form-row { flex-direction: column; gap: 12px; }
  .footer-field-wrap { width: 100%; min-width: unset; flex: none; }
  .footer-field-wrap .footer-input { width: 100%; }
  .footer-input { width: 100%; flex: none; min-width: unset; }
  .footer-submit-btn { width: 100%; flex: none; padding: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-bottom: 140px; }
  .footer-bg-img { opacity: 0.25; }
  .footer-bg { bottom: 0%; }
}

/* ============================================================
   GLOBAL SUBMIT LOADER
   ============================================================ */
.submit-loader-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.submit-loader-overlay.active {
  display: flex;
}
.submit-loader-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  min-width: 220px;
  text-align: center;
}
.submit-loader-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid #f0e0e0;
  border-top-color: #2E6B1A;
  border-radius: 50%;
  animation: loaderSpin 0.75s linear infinite;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
.submit-loader-text {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
  letter-spacing: 0.2px;
}

/* ============================================================
   PREMIUM ENQUIRY MODAL
   ============================================================ */
.enq-dialog {
  max-width: 820px;
}
.enq-content {
  display: flex;
  flex-direction: row;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  min-height: 500px;
  position: relative;
}

/* ---- Close ---- */
.enq-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 20;
  background: #f2f2f2;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.enq-close:hover { background: #2E6B1A; color: #fff; }

/* ---- Left panel ---- */
.enq-left {
  flex: 0 0 42%;
  background: url('../images/gallery/gal3.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px 32px;
}
.enq-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(30,10,10,0.55) 0%, rgba(174,44,47,0.75) 100%);
}
.enq-left-logo {
  position: relative;
  z-index: 2;
}
.enq-left-logo img {
    height: 60px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}
.enq-left-body {
  position: relative;
  z-index: 2;
}
.enq-left-title {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 8px;
}
.enq-left-tag {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 20px;
  line-height: 1.5;
}
.enq-left-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enq-left-perks li {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}
.enq-left-perks li i {
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---- Right panel ---- */
.enq-right {
  flex: 1;
  background: #fff;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enq-right-tag {
  display: inline-block;
  background: #f2f8ec;
  color: #2E6B1A;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0 0 14px;
  width: fit-content;
}
.enq-right-title {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.enq-right-sub {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 13px;
  color: #7a7a7a;
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Horizontal fields grid */
.enq-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 16px;
}
.enq-field-full {
  grid-column: 1 / -1;
}

/* Floating label fields */
.enq-field {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 22px;
}
.enq-input {
  width: 100%;
  height: 54px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 18px 16px 6px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  outline: none;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}
.enq-input:focus {
  border-color: #2E6B1A;
  background: #fff;
}
.enq-input.enq-input-err { border-color: #e53935; }

.enq-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 14px;
  color: #9e9e9e;
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease;
}
.enq-input:focus ~ .enq-label,
.enq-input:not(:placeholder-shown) ~ .enq-label {
  top: 12px;
  transform: none;
  font-size: 11px;
  color: #2E6B1A;
}
.enq-err {
  position: absolute;
  bottom: 4px;
  left: 0;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 12px;
  color: #e53935;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Submit button */
.enq-submit {
  width: 100%;
  height: 52px;
  background: #2E6B1A;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}
.enq-submit i { font-size: 22px; }
.enq-submit:hover { background: #1E4A10; transform: translateY(-1px); }
.enq-submit:active { transform: translateY(0); }

.enq-disclaimer {
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 11px;
  color: #b0b0b0;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 640px) {
  .enq-content { flex-direction: column !important; }
  .enq-left { display: none; }
  .enq-right { padding: 40px 24px 28px; }
  .enq-close { top: 12px; right: 12px; }
  .enq-right-title { font-size: 22px; }
  .enq-fields-grid { grid-template-columns: 1fr; }
  .enq-field-full { grid-column: 1; }
}


/* =================== SIDE FIXED BUTTONS =================== */
@keyframes sidePulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,107,26,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(46,107,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,107,26,0); }
}
@keyframes sidePulseRight {
  0%   { box-shadow: 0 0 0 0 rgba(30,74,16,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(30,74,16,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,74,16,0); }
}

.side-btn {
  position: fixed;
  bottom: 20px;
  z-index: 1050;
  border: none;
  cursor: pointer;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 20px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.side-btn:hover { opacity: 0.92; }

.side-left {
  left: 20px;
  background: #2E6B1A;
  border-radius: 8px;
  animation: sidePulse 2s infinite;
}
.side-left:hover { transform: translateX(4px); }

.side-right {
  right: 20px;
  background: #1E4A10;
  border-radius: 8px;
  animation: sidePulseRight 2s infinite 0.5s;
}
.side-right:hover { transform: translateX(-4px); }

/* =================== FIXED BOTTOM BAR (Mobile) =================== */
.mobile-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1050;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.15);
}
.mfb-btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-family: "AvenirNextLTPro", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  border: none;
  cursor: pointer;
  background: #2E6B1A;
  text-decoration: none;
}
.mfb-btn i { font-size: 16px; }
.mfb-call    { background: #2E6B1A; }
.mfb-enquire { background: #2E6B1A; }
.mfb-divider {
  width: 1px;
  background: rgba(255,255,255,0.35);
  align-self: stretch;
  flex-shrink: 0;
}

/* Hide side buttons on mobile, show only mobile bar */
@media (max-width: 991px) {
  .side-btn { display: none !important; }
  body { padding-bottom: 50px; }
}

/* Mobile bar full width fix */
.mobile-fixed-bar {
  width: 100%;
  left: 0;
  right: 0;
}
