/* ==========================================
   CODENAME EDEN GARDEN - LANDING PAGE CSS
   Theme Colors from Brochure:
   Primary: #7B2D3B (Dark Maroon/Burgundy)
   Secondary: #F5EDE0 (Cream/Beige)
   Gold Accent: #C9A96E
   Font-size: Responsive vw with clamp()
   ========================================== */

:root {
  --primary: #7b2d3b;
  --primary-dark: #5a1f2b;
  --primary-light: #9e4a5a;
  --secondary: #f5ede0;
  --gold: #c9a96e;
  --gold-dark: #b08a50;
  --cream: #faf6f0;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background-color: #3a10162d; */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  overflow: hidden auto !important;
  padding-right: 0 !important;
}

html,
body {
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: clamp(3rem, 5.5vw, 5rem) 0;
}

.bg-light-cream {
  background-color: var(--cream);
}

.bg-dark-maroon {
  background-color: var(--primary);
}

.compensate-for-scrollbar {
  margin-right: 0px;
}

.invalid-feedback {
  font-size: 0.725rem;
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: auto;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

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

.custom-container-2 {
  width: 70vw;
  max-width: 90%;
  margin: auto;
}

/* form loader css */

/* ==================== SECTION TITLES ==================== */
.section-subtitle {
  display: inline-block;
  font-size: clamp(0.65rem, 0.97vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.section-desc {
  font-size: clamp(0.813rem, 1.1vw, 1rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.text-gold {
  color: var(--gold) !important;
}

/* ==================== BUTTONS ==================== */
.btn-primary-custom {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 45, 59, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ==================== NAVBAR ==================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

#navbar {
  transition: all 0.4s ease;
  padding: 0.5rem 4rem;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

#navbar.dropped {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.35s ease;
}

.navbar-container .navlogo {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.35s ease;
}

.navbar-container .menu {
  display: none;
}

.navbar-container .menu a {
  color: var(--primary-dark);
  display: flex;
  align-items: center;
}

.navbar-container .navlogo .logo {
  transition: all 0.45s ease;
  width: 17rem;
  object-fit: cover;
}

.mob-logo {
  width: clamp(100px, 30vw, 140px);
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.navbar-container .navbar-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: var(--primary-dark);
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  font-weight: 600;
  white-space: nowrap;
  text-transform: capitalize;
  transition: var(--transition);
  padding: 0;
}

.navbar-container .navbar-links .navbar-link .nav-link:hover,
.navbar-container .navbar-links .navbar-link .nav-link.active {
  color: var(--gold);
}

.btn-contact {
  border: 1px solid var(--gold);
  background: var(--primary);
  color: var(--white);
  white-space: nowrap;
  font-weight: 600;
  display: flex;
  padding: 0.55rem 1.15rem;
  font-size: clamp(0.75rem, 0.95vw, 0.95rem);
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-effect 2.5s infinite;
}

.btn-contact:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

@keyframes pulse-effect {
  0% {
    box-shadow: 0 0 0 0px rgba(123, 45, 59, 0.4);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(123, 45, 59, 0);
  }
}

/* ==================== OFFCANVAS MOBILE MENU ==================== */
.offcanvas.offcanvas-start {
  background: var(--primary-dark);
  z-index: 9999;
}

.offcanvas-header .btn-close {
  filter: invert(1);
}

.offcanvas-body .offcanvas-navs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offcanvas-body .offcanvas-navs .offcanvas-nav .offcanvas-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.875rem, 1.04vw, 1rem);
  font-weight: 500;
  transition: var(--transition);
}

.offcanvas-body .offcanvas-navs .offcanvas-nav .offcanvas-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.offcanvas-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== FIXED ENQUIRE CTA (Desktop) ==================== */
.fixed-enquire-cta {
  position: fixed;
  right: 0;
  top: 70%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  color: var(--primary-dark) !important;
  background: var(--gold) !important;
  border: none !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: enquirePulse 2s infinite;
}

.fixed-enquire-cta i {
  font-size: 14px;
}

.fixed-enquire-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--gold) !important;
  /* transform: translateY(-50%) translateX(-2px); */
}

@keyframes enquirePulse {
  0% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(197, 165, 90, 0.5);
  }

  70% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 0 0 12px rgba(197, 165, 90, 0);
  }

  100% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(197, 165, 90, 0);
  }
}

@media (max-width: 991px) {
  .fixed-enquire-cta {
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    justify-content: center;
    writing-mode: horizontal-tb;
    border-radius: 0;
    padding: 16px 20px;
    font-size: 13px;
    animation: none;
    transform: none;
  }

  .fixed-enquire-cta:hover {
    transform: none;
  }

  .mobile-sticky-cta {
    display: none !important;
  }
}

/* ==================== MOBILE BOTTOM STICKY CTA ==================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: flex;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border: none;
  background: none;
  font-size: clamp(0.5rem, 2.5vw, 0.625rem);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  gap: 3px;
}

.sticky-btn i {
  font-size: clamp(0.938rem, 4.5vw, 1.125rem);
}

.sticky-btn.call-btn {
  background: var(--primary);
  color: var(--white);
}

.sticky-btn.interested-btn {
  background: var(--primary-dark);
  color: var(--white);
}

.sticky-btn.brochure-btn {
  background: var(--gold);
  color: var(--white);
}

.sticky-btn.whatsapp-btn {
  background: #25d366;
  color: var(--white);
}

/* ==================== BANNER ==================== */
.banner-section {
  margin-top: 4rem;
}

.banner-slide {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.75) 0%,
      rgba(123, 45, 59, 0.5) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
  padding: 40px 0;
}

.banner-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: clamp(0.625rem, 0.83vw, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.banner-title {
  font-size: clamp(1.5rem, 3.33vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-size: clamp(0.938rem, 1.25vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.banner-location {
  font-size: clamp(0.938rem, 1.25vw, 1.125rem);
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.banner-location i {
  margin-right: 5px;
}

.banner-config {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.config-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: clamp(0.688rem, 0.97vw, 0.875rem);
  font-weight: 600;
}

.banner-price {
  font-size: clamp(1rem, 1.39vw, 1.25rem);
  margin-bottom: 15px;
}

.banner-price strong {
  color: var(--gold);
  font-size: clamp(1.125rem, 1.67vw, 1.5rem);
}

.banner-usps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  font-weight: 500;
}

.usp-item i {
  color: var(--gold);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(123, 45, 59, 0.6);
  border-radius: 50%;
  opacity: 1;
  margin: 0 20px;
  bottom: auto;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
}

/* ==================== OVERVIEW SECTION ==================== */
.overview-content .section-title {
  font-size: clamp(1.375rem, 2.22vw, 2rem);
}

.overview-text {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: clamp(0.813rem, 1.04vw, 0.938rem);
}

.overview-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.highlight-item i {
  font-size: clamp(1.125rem, 1.53vw, 1.375rem);
  color: var(--primary);
  margin-top: 2px;
}

.highlight-item strong {
  display: block;
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  color: var(--primary-dark);
}

.highlight-item span {
  font-size: clamp(0.625rem, 0.83vw, 0.75rem);
  color: var(--text-light);
}

/* ==================== LEAD FORM ==================== */
.lead-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.form-header {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  padding: 25px 30px;
  text-align: center;
}

.form-header h3 {
  color: var(--white);
  font-size: clamp(1.125rem, 1.53vw, 1.375rem);
  margin-bottom: 5px;
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  margin: 0;
}

.lead-form {
  padding: 25px 30px;
}

.lead-form .form-control {
  padding: 14px 16px;
  border: 1px solid #e0d5c7;
  border-radius: var(--radius);
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  background: var(--cream);
  transition: var(--transition);
}

.lead-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
  background: var(--white);
}

.form-disclaimer {
  font-size: clamp(0.563rem, 0.76vw, 0.688rem);
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ==================== CONFIGURATION TABLE ==================== */
.table-config {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 0;
  table-layout: fixed;
  width: 100%;
}

.table-config thead {
  background: var(--primary);
}

.table-config thead th {
  color: var(--white);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  padding: 16px 20px;
  border: none;
  text-transform: uppercase;
  background-color: var(--primary-dark);
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.table-config tbody tr {
  transition: var(--transition);
}

.table-config tbody tr:hover {
  background: var(--cream);
}

.table-config tbody td {
  padding: 16px 20px;
  font-size: clamp(0.813rem, 1.04vw, 0.938rem);
  vertical-align: middle;
  border-color: #f0e8dc;
}

.price-tag {
  font-weight: 600;
  color: var(--primary);
}

/* ==================== FLOOR PLAN ==================== */
.floorplan-card {
  text-align: center;
}

.floorplan-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floorplan-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blur-img {
  filter: blur(6px);
  transform: scale(1.05);
}

.floorplan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(123, 45, 59, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.floorplan-overlay h4 {
  color: var(--white);
  font-size: clamp(1.125rem, 1.53vw, 1.375rem);
}

.floorplan-label {
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
}

/* ==================== AMENITIES (Owl Carousel) ==================== */
.amenities-carousel {
  margin-top: 1.5rem;
}

.amenities-carousel .owl-stage-outer {
  padding: 1rem 0;
}

.amenities-carousel .owl-stage-outer .owl-stage {
  height: 22dvh;
  padding: 1rem 0 2rem;
}

.amenity-card {
  text-align: center;
  padding: 30px 15px;
  background: var(--white);
  margin: 1rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--gold);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.amenity-icon i {
  font-size: clamp(1.25rem, 1.67vw, 1.5rem);
  color: var(--white);
}

.amenity-card h5 {
  font-size: clamp(0.688rem, 0.97vw, 0.875rem);
  font-weight: 600;
  color: var(--text);
  margin: 0;
  font-family: var(--font-body);
}

/* Owl Nav for Amenities */
.amenities-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  /* margin-top: 1.5rem; */
}

.amenities-carousel .owl-nav button.owl-prev,
.amenities-carousel .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary) !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: clamp(1rem, 1.25vw, 1.25rem) !important;
  border: none;
  box-shadow: var(--shadow);
}

.amenities-carousel .owl-nav button.owl-prev:hover,
.amenities-carousel .owl-nav button.owl-next:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.1);
}

.amenities-carousel .owl-nav button.owl-prev span,
.amenities-carousel .owl-nav button.owl-next span {
  line-height: 1;
  margin-top: -2px;
}

.amenities-carousel .owl-dots {
  text-align: center;
  margin-top: 1rem;
}

.amenities-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 3px;
  background: rgba(123, 45, 59, 0.25);
  border-radius: 50%;
  transition: var(--transition);
}

.amenities-carousel .owl-dots .owl-dot.active span {
  background: var(--primary);
  width: 28px;
  border-radius: 20px;
}

/* ==================== GALLERY ==================== */
.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 280px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(123, 45, 59, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: clamp(1.5rem, 2.22vw, 2rem);
  color: var(--white);
}

.swiper-pagination {
  position: relative;
  margin: 1.5rem 0 0 0;
}

/* ==================== LOCATION ==================== */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.location-card:hover {
  border-top-color: var(--primary);
  transform: translateY(-3px);
}

.location-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.location-icon i {
  font-size: clamp(1rem, 1.39vw, 1.25rem);
  color: var(--white);
}

.location-card h5 {
  font-size: clamp(0.938rem, 1.25vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-body);
  color: var(--primary-dark);
}

.location-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-card ul li {
  padding: 6px 0;
  font-size: clamp(0.688rem, 0.9vw, 0.813rem);
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.location-card ul li i {
  color: var(--gold);
  font-size: clamp(0.625rem, 0.83vw, 0.75rem);
  margin-top: 4px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  display: block;
}

/* ==================== 360 VIEW ==================== */
.experience-content .section-title {
  font-size: clamp(1.375rem, 2.22vw, 2rem);
}

.experience-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(123, 45, 59, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
  transition: var(--transition);
  transition: all 0.5s ease;
}

.play-overlay.play-overlay-new {
  opacity: 0;
}

.play-overlay:hover {
  background: rgba(123, 45, 59, 0.6);
  transition: all 0.5s ease;
}

.play-overlay.play-overlay-new:hover {
  background: rgba(123, 45, 59, 0.6);
  opacity: 1;
}

.play-overlay i {
  font-size: 2.5rem;
  color: var(--white);
}

/* ==================== LEGACY ==================== */
.legacy-card {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.legacy-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.legacy-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.legacy-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.688rem, 0.9vw, 0.813rem);
  margin: 0;
  font-weight: 500;
}

.legacy-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
}

.legacy-logo-card img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.section-legacy .row>[class*="col-"]+[class*="col-"] .legacy-logo-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(197, 165, 90, 0.6),
      transparent);
}

.section-legacy .legacy-card:hover {
  background: transparent;
  transform: none;
}

/* ==================== ELEVATION ==================== */
.section-elevation .elevation-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 20px 50px rgba(30, 10, 15, 0.2);
  border: 1px solid rgba(197, 165, 90, 0.25);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease,
    border-color 0.6s ease;
  isolation: isolate;
}

.section-elevation .elevation-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(30, 10, 15, 0.3),
    0 0 0 1px rgba(197, 165, 90, 0.5),
    0 0 40px rgba(197, 165, 90, 0.25);
  border-color: rgba(197, 165, 90, 0.6);
}

.section-elevation .elevation-img-wrapper img {
  transition:
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;
  display: block;
  will-change: transform;
}

.section-elevation .elevation-img-wrapper:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

/* Primary bright shine sweep */
.section-elevation .elevation-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.15) 35%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0.15) 65%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

.section-elevation .elevation-img-wrapper:hover::before {
  animation: elevationShine 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes elevationShine {
  0% {
    left: -120%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 160%;
    opacity: 0;
  }
}

.section-elevation .elevation-content h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  color: var(--primary-dark, #3a1016);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-elevation .elevation-content p {
  color: #6b5d52;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.section-elevation .elevation-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.section-elevation .elevation-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--primary-dark, #3a1016);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px dashed rgba(197, 165, 90, 0.3);
}

.section-elevation .elevation-features li:last-child {
  border-bottom: none;
}

.section-elevation .elevation-features i {
  color: var(--gold, #c5a55a);
  font-size: 16px;
  flex-shrink: 0;
}

/* ==================== DESKTOP STICKY FORM ==================== */
.desktop-sticky-form {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1039;
  background: linear-gradient(135deg,
      rgba(30, 10, 15, 0.97),
      rgba(90, 20, 30, 0.97));
  backdrop-filter: blur(8px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);
  border-top: 2px solid var(--gold, #c5a55a);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.desktop-sticky-form.show {
  transform: translateY(0);
}

.desktop-sticky-form .sticky-form {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.sticky-form-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold, #c5a55a);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-form-title i {
  font-size: 16px;
}

.sticky-form-fields {
  display: flex;
  gap: 12px;
  flex: 1;
  align-items: stretch;
}

.sticky-field {
  position: relative;
  flex: 1;
}

.sticky-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold, #c5a55a);
  font-size: 13px;
  pointer-events: none;
}

.sticky-field .form-control {
  height: 46px;
  padding: 10px 14px 10px 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  transition: all 0.25s ease;
}

.sticky-field .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.sticky-field .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold, #c5a55a);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.2);
  color: #fff;
  outline: none;
}

.sticky-submit-btn {
  height: 46px;
  padding: 0 32px !important;
  border-radius: 8px !important;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sticky-form-close {
  position: absolute;
  top: -30px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold, #c5a55a);
  background: var(--primary-dark, #3a1016);
  color: var(--gold, #c5a55a);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sticky-form-close:hover {
  background: var(--gold, #c5a55a);
  color: var(--primary-dark, #3a1016);
}

/* ==================== FAQ ACCORDION ==================== */
.accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.813rem, 1.04vw, 0.938rem);
  color: var(--primary-dark);
  padding: 18px 24px;
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 20px 24px;
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  color: var(--text-light);
  line-height: 1.8;
  background: var(--cream);
}

.section-thankyou {
  height: 90dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==================== FOOTER ==================== */
footer {
  padding: 2rem 0;
  background: var(--cream);
}

/* Footer Logos */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 2rem;
}

.footer-logo-item img {
  width: clamp(100px, 12vw, 160px);
  height: auto;
  object-fit: contain;
}

footer hr {
  border-color: rgba(0, 0, 0, 0.12);
  margin: 0 0 1.5rem 0;
}

/* Disclaimer & RERA */
.disc {
  color: var(--text-light);
  margin: 0 0 1.5rem 0;
  font-size: clamp(0.75rem, 0.95vw, 0.95rem);
  line-height: 1.8;
}

.disc strong {
  font-size: clamp(0.813rem, 1.04vw, 1.035rem);
  font-weight: 600;
  color: var(--text);
}

.disc a {
  color: var(--primary);
  text-decoration: underline;
}

.disc a:hover {
  color: var(--primary-dark);
}

/* Copyright */
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copy-right {
  color: var(--text-light);
  font-size: clamp(0.688rem, 0.83vw, 0.813rem);
}

/* ==================== MODAL ==================== */
#mainModalPopup .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#mainModalPopup .modal-header {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border-bottom: none;
  padding: 18px 24px;
}

#mainModalPopup .modal-title {
  color: var(--white);
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
}

#mainModalPopup .btn-close {
  filter: brightness(0) invert(1);
}

#mainModalPopup .modal-body {
  padding: 25px;
}

.modal-form .form-control {
  padding: 14px 16px;
  border: 1px solid #e0d5c7;
  border-radius: var(--radius);
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  background: var(--cream);
}

.modal-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
  background: var(--white);
}

.thank-you-icon {
  font-size: clamp(2.5rem, 4.44vw, 4rem);
  color: #28a745;
  margin-bottom: 15px;
}

/* ==================== CRO POPUP ==================== */
.cro-modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cro-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  opacity: 1;
}

.cro-img-col {
  min-height: 200px;
}

.cro-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
}

.cro-form-wrapper {
  padding: 30px 25px;
}

.cro-form-wrapper h4 {
  color: var(--primary);
  font-size: clamp(1.25rem, 1.67vw, 1.5rem);
  margin-bottom: 8px;
}

.cro-form-wrapper p {
  color: var(--text-light);
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  margin-bottom: 20px;
}

.cro-form-wrapper .form-control {
  padding: 12px 16px;
  border: 1px solid #e0d5c7;
  border-radius: var(--radius);
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  background: var(--cream);
}

.cro-form-wrapper .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1030;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top.show {
  display: flex;
}

/* ==================== SWIPER CUSTOM ==================== */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: var(--primary);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

@media (max-width: 767px) {

  .gallerySwiper,
  .floorplanSwiper {
    padding-bottom: 64px;
  }

  .gallerySwiper .swiper-button-next,
  .gallerySwiper .swiper-button-prev,
  .floorplanSwiper .swiper-button-next,
  .floorplanSwiper .swiper-button-prev {
    top: auto;
    bottom: 0;
    margin-top: 0;
    width: 40px;
    height: 40px;
  }

  .gallerySwiper .swiper-button-prev,
  .floorplanSwiper .swiper-button-prev {
    left: calc(50% - 56px);
    right: auto;
  }

  .gallerySwiper .swiper-button-next,
  .floorplanSwiper .swiper-button-next {
    right: calc(50% - 56px);
    left: auto;
  }
}

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

/* Navbar links shrink */
@media (max-width: 1400px) {
  .navbar-container .navbar-links {
    gap: 1rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: clamp(0.65rem, 0.85vw, 0.8rem);
  }
}

@media (max-width: 1280px) {
  .navbar-container .navbar-links {
    gap: 0.75rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: clamp(0.6rem, 0.8vw, 0.75rem);
  }
}

/* Hamburger menu kicks in */
@media (max-width: 1200px) {
  .navbar-container .menu {
    display: block;
  }

  .navbar-links {
    display: none !important;
  }

  #navbar {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }

  .btn-contact {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
  }

  .btn-contact:hover {
    background: var(--primary);
    color: var(--white);
  }
}

@media (max-width: 991px) {
  .banner-slide {
    min-height: 70vh;
  }

  .banner-usps {
    flex-direction: column;
    gap: 8px;
  }

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

  .back-to-top {
    bottom: 75px;
    right: 15px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .custom-container {
    width: 90vw;
    max-width: 92%;
  }

  .custom-container-2 {
    width: 90vw;
    max-width: 95%;
  }
}

@media (max-width: 767px) {
  #navbar {
    padding: 0.6rem 1rem;
  }

  .navbar-container .navlogo {
    gap: 0.65rem;
    transition: all 0.35s ease;
  }

  .navbar-container .navlogo .logo {
    width: 10rem;
  }

  .banner-slide {
    min-height: 75vh;
  }

  .banner-content {
    padding: 30px 0;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
    margin: 0 10px;
  }

  .lead-form-wrapper {
    margin-bottom: 30px;
  }

  .form-header {
    padding: 20px;
  }

  .lead-form {
    padding: 20px;
  }

  .gallery-card {
    height: 220px;
  }

  .floorplan-img {
    height: 250px;
  }

  .mobile-sticky-cta {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .cro-img-col {
    display: none;
  }

  .footer-logos {
    gap: 1.5rem;
  }

  .footer-logo-item img {
    width: clamp(80px, 25vw, 120px);
  }

  .copy-right {
    text-align: center;
    width: 100%;
  }

  .footer-copyright {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .legacy-logo-card {
    height: 100%;
    padding: 0.5rem;
  }

  .amenity-card {
    padding: 20px 10px;
  }

  .amenity-icon {
    width: 50px;
    height: 50px;
  }

  .btn-primary-custom.custom-size {
    padding: 10px 5px;
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  }

  .custom-container {
    width: 92vw;
    max-width: 95%;
  }

  .amenities-carousel .owl-stage-outer .owl-stage {
    height: 20dvh;
    padding: 1rem 0 0rem;
  }
}

/* ==================== ENQUIRY FORM ==================== */
.section-enquiry {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e0a0f 0%, #3a1016 50%, #5a141e 100%);
}

.section-enquiry::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(197, 165, 90, 0.18),
      transparent 70%);
  pointer-events: none;
}

.section-enquiry::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(197, 165, 90, 0.12),
      transparent 70%);
  pointer-events: none;
}

.section-enquiry>.custom-container,
.section-enquiry>.custom-container-2 {
  position: relative;
  z-index: 1;
}

.section-enquiry .section-subtitle,
.section-enquiry .section-title {
  color: #fff;
}

.section-enquiry .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

.enquiry-form-wrapper {
  position: relative;
  background: var(--white, #fff);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(30, 10, 15, 0.12);
  border: 1px solid rgba(197, 165, 90, 0.25);
}

.enquiry-form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(197, 165, 90, 0.6),
      transparent 50%,
      rgba(197, 165, 90, 0.35));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.enquiry-form .form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary-dark, #3a1016);
  margin-bottom: 8px;
}

.enquiry-form .input-icon-group {
  position: relative;
}

.enquiry-form .input-icon-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold, #c5a55a);
  font-size: 15px;
  pointer-events: none;
  transition: color 0.25s ease;
}

.enquiry-form .form-control {
  height: 54px;
  padding: 12px 18px 12px 48px;
  border-radius: 12px;
  border: 1.5px solid #e6ddd0;
  background: #fbf8f3;
  font-size: 15px;
  color: var(--primary-dark, #3a1016);
  transition: all 0.25s ease;
}

.enquiry-form .form-control::placeholder {
  color: #b3a89a;
  font-weight: 400;
}

.enquiry-form .form-control:focus {
  background: #fff;
  border-color: var(--gold, #c5a55a);
  box-shadow: 0 0 0 4px rgba(197, 165, 90, 0.15);
  outline: none;
}

.enquiry-form .input-icon-group:focus-within i {
  color: var(--primary-dark, #3a1016);
}

.enquiry-form .was-validated .form-control:invalid,
.enquiry-form .form-control.is-invalid {
  border-color: #dc3545;
  background-image: none;
  padding-right: 18px;
}

.enquiry-form .invalid-feedback {
  font-size: 12px;
  margin-top: 6px;
  padding-left: 4px;
}

.enquiry-submit-btn {
  /* min-width: 240px; */
  padding: 16px 42px !important;
  border-radius: 50px !important;
  letter-spacing: 1px;
  box-shadow: 0 10px 28px rgba(90, 20, 30, 0.25);
  transition: all 0.3s ease;
}

.enquiry-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(90, 20, 30, 0.32);
}

.form-privacy-note {
  font-size: 12.5px;
  color: #8a7d6e;
  letter-spacing: 0.3px;
}

.form-privacy-note i {
  color: var(--gold, #c5a55a);
}

@media (max-width: 767px) {
  .enquiry-form-wrapper {
    padding: 32px 22px;
    border-radius: 16px;
  }

  .enquiry-form .form-control {
    height: 50px;
    font-size: 14px;
  }

  .enquiry-submit-btn {
    min-width: 100%;
  }
}

@media (max-width: 350px) {
  .banner-section {
    margin-top: 18vw;
  }
}