/* ============================================================
   1. :ROOT VARIABLES
   ============================================================ */
:root {
  /* Colors - Primary Gradient */
  --color-primary-start: #cc9478;
  --color-primary-end: #d2a890;
  --color-primary-solid: #d1a58d;
  --gradient-primary: linear-gradient(to right,
      var(--color-primary-start),
      var(--color-primary-end));

  /* Colors - Backgrounds */
  --color-bg: #ffffff;
  --color-bg-alt: #ffe9e3;
  --color-bg-alt2: #ffeee9;
  --color-bg-card: #fffcfb;

  /* Colors - Text */
  --color-dark: #3a0000;
  --color-text: #3a0000;
  --color-text-muted: rgba(58, 0, 0, 0.32);
  --color-text-secondary: rgba(58, 0, 0, 0.6);
  --color-text-dark: #1e1e1e;
  --color-white: #ffffff;

  /* Colors - UI */
  --color-border: #cc9478;
  --color-overlay: rgba(0, 0, 0, 0.5);

  /* Fonts */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
  --font-credit: "Montserrat", sans-serif;

  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 60px;
  --space-xxl: 100px;

  /* Transition */
  --transition-base: all 0.3s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-pill: 35px;

  /* Container */
  --container-max: 1680px;
  --container-padding: 120px;
}

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

html {
  overflow-y: auto;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  content-visibility: auto;
  display: block;
}

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

/* ============================================================
   3. TYPOGRAPHY BASE STYLES
   ============================================================ */
.heading-xl {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 1.2;
  color: var(--color-dark);
  text-transform: capitalize;
}

.heading-lg {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.3;
  color: var(--color-dark);
  text-transform: capitalize;
}

.heading-md {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.4;
  color: var(--color-dark);
  text-transform: capitalize;
}

.heading-sm {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.4;
  color: var(--color-dark);
  text-transform: capitalize;
}

/* Text Reveal Animation */
.text-reveal {
  visibility: hidden;
}

.text-reveal.is-split {
  visibility: visible;
}

.text-reveal .line-wrap {
  overflow: hidden;
  display: block;
  padding-bottom: 4px;
}

.text-reveal .line-inner {
  display: block;
}

.text-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--color-text);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-italic-gradient {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   4. REUSABLE UTILITY CLASSES
   ============================================================ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  text-transform: capitalize;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 1px;
  background: var(--gradient-primary);
  flex-shrink: 0;
}

.section-padding {
  padding: clamp(60px, 5vw, 120px) 0;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to right, #d1a58d 0%, #d1a58d 46%, #ffffff 51%, #d1a58d 56%, #d1a58d 100%);
  background-size: 600% 600%;
  -webkit-animation: btnShine 3s ease infinite;
  animation: btnShine 3s ease infinite;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(209, 165, 141, 0.4);
  color: var(--color-white);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to right, #d1a58d 0%, #d1a58d 46%, #ffffff 51%, #d1a58d 56%, #d1a58d 100%);
  background-size: 600% 600%;
  -webkit-animation: btnShine 3s ease infinite;
  animation: btnShine 3s ease infinite;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  line-height: 1.2;
  text-decoration: none;
}

.btn-secondary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(209, 165, 141, 0.4);
  color: var(--color-white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #d1a58d 0%, #d1a58d 46%, #ffffff 51%, #d1a58d 56%, #d1a58d 100%);
  background-size: 600% 600%;
  -webkit-animation: btnShine 3s ease infinite;
  animation: btnShine 3s ease infinite;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  line-height: 1.2;
  text-decoration: none;
}

.btn-outline-custom span {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--color-white);
  background-clip: unset;
  color: var(--color-white);
}

.btn-outline-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(209, 165, 141, 0.4);
}

@-webkit-keyframes btnShine {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes btnShine {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.btn-white-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  height: 50px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
  line-height: 20px;
}

.btn-white-gradient span,
.btn-white-gradient i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-white-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  width: 200px;
  height: 48px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  /* border: 1px solid var(--color-border); */
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.tab-custom span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tab-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 148, 120, 0.25);
}

.tab-custom.active {
  background: var(--gradient-primary);
  border-color: transparent;
}

.tab-custom.active span {
  background: none;
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
}

.carousel-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 18px;
}

.carousel-nav-btn i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-nav-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.projects-prev,
.projects-next {
  background: var(--color-primary-solid);
}

.projects-prev i,
.projects-next i {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--color-white);
  background-clip: unset;
  color: var(--color-white);
}

.decorative-border {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.bg-texture {
  position: relative;
  background-color: var(--color-bg-alt);
}

.bg-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/texture/texture-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.39;
  pointer-events: none;
  z-index: 0;
}

.bg-texture>* {
  position: relative;
  z-index: 1;
}

.bg-texture-light {
  position: relative;
  background-color: var(--color-bg-alt2);
}

.bg-texture-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/texture-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}

.bg-texture-light>* {
  position: relative;
  z-index: 1;
}

/* ============================================================
   5. NAVBAR STYLES
   ============================================================ */
#mainNav {
  background-color: var(--color-white);
  padding: 6px 0;
  transition: box-shadow 0.3s ease;
  z-index: 1050;
  will-change: box-shadow;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#mainNav .navbar-brand img {
  height: clamp(50px, 5vw, 80px);
  width: auto;
  flex-shrink: 0;
}

.nav-partner-logo {
  display: inline-flex;
  align-items: center;
  margin: 0 20px;
  flex-shrink: 0;
}

.nav-partner-logo img {
  height: clamp(40px, 4vw, 64px);
  width: auto;
  object-fit: contain;
}

.nav-right-wrap {
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.nav-right-logos {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  flex-shrink: 0;
}

.nav-right-logos img {
  height: clamp(40px, 4vw, 64px);
  width: auto;
  object-fit: contain;
}

.nav-right-logos .nav-nandini-logo {
  border-left: 1px solid rgba(58, 0, 0, 0.2);
  padding-left: clamp(12px, 1.5vw, 24px);
}

.nav-right-wrap .nav-cta-wrap {
  gap: 0;
}

#mainNav .navbar-nav {
  gap: clamp(12px, 2.5vw, 61px);
}

#mainNav .nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 20px;
  text-transform: capitalize;
  white-space: nowrap;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 8px 0 !important;
  transition: var(--transition-base);
  white-space: nowrap;
  position: relative;
}

#mainNav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

#mainNav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

#mainNav .nav-link:hover {
  opacity: 0.85;
}

#mainNav .navbar-toggler {
  border: 1px solid var(--color-border);
  padding: 6px 10px;
}

#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23CC9478' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#navOffcanvas {
  background: var(--color-white);
  max-width: 300px;
}

#navOffcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(204, 148, 120, 0.2);
  padding: 20px;
}

#navOffcanvas .offcanvas-body {
  padding: 20px;
}

#navOffcanvas .navbar-nav {
  gap: 0;
}

#navOffcanvas .nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(204, 148, 120, 0.15);
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.navbar-brand-right img {
  height: clamp(35px, 3.5vw, 60px);
  width: auto;
}

.nav-cta-wrap .btn-primary-custom {
  height: clamp(40px, 3vw, 50px);
  font-size: clamp(13px, 1vw, 18px);
  padding: 0 clamp(16px, 1.5vw, 32px);
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.nav-cta-wrap .btn-primary-custom:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(204, 148, 120, 0.4);
  opacity: 1;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 4.25rem 0 0 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  height: 100%;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: auto;
  bottom: 260px;
  left: var(--container-padding);
  transform: none;
  z-index: 2;
  max-width: 784px;
}

.hero-content .hero-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.22;
  color: var(--color-white);
  text-transform: capitalize;
  margin-bottom: 32px;
  opacity: 0;
}

.hero-content .hero-heading .italic-accent {
  font-weight: 500;
  font-style: italic;
}

.hero-content .hero-subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 12px;
  opacity: 0;
}

.hero-content .hero-location {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
}

.hero-content .hero-cta {
  opacity: 0;
}

.hero-content .hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-content .hero-cta:active {
  transform: translateY(-1px) scale(1.02);
}

.hero-stats {
  position: absolute;
  bottom: 80px;
  left: var(--container-padding);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 2;
  max-width: 1022px;
  opacity: 0;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 25px;
  min-width: 130px;
}

.hero-stat-item .stat-number {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

.hero-stat-item .stat-number .stat-unit {
  font-size: clamp(16px, 1.2vw, 20px);
}

.hero-stat-item .stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 16px);
  color: var(--color-text-muted);
  margin-top: 8px;
  line-height: 1;
}

.hero-stat-divider {
  width: 1px;
  height: 80px;
  background: #d2a890;
  flex-shrink: 0;
}

.hero-carousel-nav {
  position: absolute;
  bottom: 80px;
  right: var(--container-padding);
  display: flex;
  gap: 16px;
  z-index: 2;
}

/* ==================Thankyou Page Csss================ */
section.secton-thankyou {
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0rem 1.5rem;
  margin: 8rem auto auto auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

section.secton-thankyou .thankyou-title {
  font-weight: 600;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  text-wrap: pretty;
  font-size: 3rem;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.75;
  text-align: center;
  text-wrap: pretty;
}

.go_txt {
  font-size: 15px;
  color: #000;
  background-color: #fff !important;
  border-radius: 3.125rem;
  border: 1px solid #000;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

/* ============================================================
   7. FLOOR PLANS SECTION
   ============================================================ */
#floorPlans {
  position: relative;
  overflow: hidden;
}

#floorPlans .section-label {
  margin-bottom: 16px;
}

#floorPlans .heading-lg {
  margin-bottom: 32px;
}

.floorplan-container {
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
}

.floorplan-desc {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

.floorplans-image-wrap {
  position: relative;
  padding: 20px;
}

.floorplans-form-wrap {
  position: relative;
  padding: 36px;
  max-width: 540px;
  margin-left: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.floorplans-form-wrap .enquiry-modal-title {
  margin-bottom: 8px;
}

.floorplans-form-wrap .enquiry-modal-subtitle {
  margin-bottom: 24px;
}

.floorplans-form-wrap .enquiry-input {
  width: 100%;
}

.floorplans-image-wrap .main-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 830 / 820;
  object-fit: cover;
  outline: 1px solid var(--color-border);
  outline-offset: 12px;
  border-radius: var(--radius-xl);
}

.floorplan-overlay {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 60%;
  height: 45%;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 2;
}

/* .floorplan-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(86, 86, 86, 0.1);
  border-radius: 2px;
  z-index: 1;
} */

.floorplan-overlay .lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: auto;
  z-index: 2;
  opacity: 0.8;
}

.floorplan-tabs {
  display: flex;
  gap: 32px;
  margin-top: 55px;
  margin-bottom: 55px;
}

.floorplan-lists-wrap {
  position: relative;
}

.floorplan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.floorplan-list.active {
  display: block;
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floorplan-list-item {
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  border-bottom: 0.8px solid var(--color-border);
  transition: var(--transition-base);
  gap: 20px;
}

.floorplan-list-item .floorplan-info {
  flex-shrink: 0;
  min-width: 100px;
}

.floorplan-list-item .floorplan-size {
  flex: 1;
  /* text-align: center; */
}

.floorplan-list-item .btn-secondary-custom {
  flex-shrink: 0;
  margin-left: auto;
}

.floorplan-list-item.active {
  border: 0.8px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
}

.floorplan-list-item:hover {
  background: var(--color-bg-card);
}

.floorplan-info .flat-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--color-text-secondary);
  text-transform: capitalize;
}

.floorplan-info .flat-facing {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(13px, 0.9vw, 16px);
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.floorplan-size {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: capitalize;
}

/* ============================================================
   8. MASTER PLAN SECTION
   ============================================================ */
#masterPlan {
  background: var(--color-white);
  padding: 2rem 0 !important;
}

#masterPlan .text-body {
  margin-bottom: 1.5rem !important;
}

.masterplan-image-wrap {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px;
}

.masterplan-image-wrap .decorative-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.masterplan-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 1108/620;
  object-fit: cover;
  filter: blur(8px);
}

.masterplan-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.masterplan-cta:hover {
  transform: translate(-50%, calc(-50% - 2px));
}

/* ============================================================
   17. FOOTER STYLES
   ============================================================ */

#footer {
  background: var(--color-white);
  padding-top: 40px;
  padding-bottom: 0;
}

.footer-logo-large {
  max-width: 452px;
  width: 100%;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-large img {
  display: block;
}

.footer-addresses {
  display: grid;
  grid-template-columns: 313px 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.footer-address-col:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}


.footer-company-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 40px);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: capitalize;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.footer-city {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--color-dark);
  text-transform: capitalize;
  margin-bottom: 12px;
}

.footer-address-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1vw, 18px);
  color: var(--color-dark);
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: var(--space-lg);
}

.footer-keerthi-logo {
  max-width: 313px;
  width: 100%;
  height: auto;
}

.footer-bottom-bar {
  max-width: var(--container-max);
  margin: var(--space-xl) auto 0;
}

.footer-rera-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(204, 148, 120, 0.3);
  border-bottom: 1px solid rgba(204, 148, 120, 0.3);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-rera-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer-rera-info .qr-code {
  width: 75px;
  height: 75px;
  border: 1px solid var(--color-border);
  object-fit: cover;
}

.footer-rera-info .rera-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 0.9vw, 18px);
  color: var(--color-dark);
  text-transform: capitalize;
  word-break: break-all;
}

.footer-rera-buttons {
  display: flex;
  gap: var(--space-sm);
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(204, 148, 120, 0.3);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copyright .copyright-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 16px);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copyright .credit-text {
  font-family: var(--font-credit);
  font-weight: 400;
  font-size: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copyright .credit-text strong {
  font-weight: 700;
  color: var(--color-text-dark);
  -webkit-text-fill-color: var(--color-text-dark);
}

/* ============================================================
   9. AMENITIES SECTION
   ============================================================ */
#amenities {
  position: relative;
  overflow: hidden;
}

.amenities-content {
  padding: 0;
}

#amenities .amenityCarousel {
  padding-left: clamp(16px, 4vw, 60px);
  padding-right: clamp(16px, 4vw, 60px);
}

.amenity-nav-wrap {
  justify-content: center !important;
}

.amenity-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  padding: 18px 18px 16px;
  transition: var(--transition-base);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenity-card img {
  width: 100%;
  aspect-ratio: 370 / 211;
  object-fit: cover;
}

.amenity-card .amenity-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 10px;
}

.amenity-nav-wrap {
  display: flex;
  justify-content: start;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================================
   10. GALLERY SECTION
   ============================================================ */
#gallery {
  background: var(--color-white);
  overflow: hidden;
}

.gallery-tabs {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
}

.gallery-tabs .tab-custom {
  border-radius: var(--radius-md);
}

.custom-container {
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
}

.custom-container22 {
  width: 93%;
  max-width: 100%;
  margin: auto 0 auto auto;
}

.gallery-coverflow-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.galleryCoverflowSwiper {
  width: 100%;
  height: 480px;
  overflow: hidden !important;
}

.galleryCoverflowSwiper .swiper-wrapper {
  align-items: center;
}

.galleryCoverflowSwiper .swiper-slide {
  width: 35%;
  height: 350px;
  overflow: hidden;
  transform: scale(1);
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.galleryCoverflowSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Active center slide — taller & on top */
.galleryCoverflowSwiper .swiper-slide-active {
  z-index: 3;
  width: 45%;
  height: 480px;
  transform: scale(1);
  opacity: 1;
}

.galleryCoverflowSwiper .swiper-slide-active img {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Prev and next — behind center */
.galleryCoverflowSwiper .swiper-slide-prev,
.galleryCoverflowSwiper .swiper-slide-next {
  z-index: 2;
  opacity: 1;
}

/* Far slides hidden */
.galleryCoverflowSwiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
  opacity: 0;
  pointer-events: none;
}

.gallery-nav-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.gallery-nav-wrap .carousel-nav-btn,
.testimonials-prev,
.testimonials-next {
  background: var(--color-primary-solid);
  border-color: var(--color-primary-solid);
}

.gallery-nav-wrap .carousel-nav-btn i,
.testimonials-prev i,
.testimonials-next i {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--color-white);
  background-clip: unset;
  color: var(--color-white);
}

@media (max-width: 991px) {
  body {
    padding-bottom: 52px;
  }

  .galleryCoverflowSwiper {
    height: 350px;
  }

  .galleryCoverflowSwiper .swiper-slide {
    width: 38%;
    height: 260px;
  }

  .galleryCoverflowSwiper .swiper-slide-active {
    width: 45%;
    height: 350px;
  }

  .amenities-content {
    padding: 0;
  }

  .hero-carousel-nav {
    bottom: 21px;
  }
}

@media (max-width: 575px) {
  .galleryCoverflowSwiper {
    height: 250px;
  }

  .galleryCoverflowSwiper .swiper-slide {
    width: 50%;
    height: 180px;
  }

  .galleryCoverflowSwiper .swiper-slide-active {
    width: 60%;
    height: 250px;
  }

  .custom-container {
    width: 90%;
  }

  .custom-container22 {
    width: 90%;
    margin: auto;
  }
}

/* ============================================================
   11. LOCATION SECTION
   ============================================================ */
#location {
  position: relative;
  overflow: hidden;
}

.location-map-wrap .decorative-border {
  display: none;
}

.location-map-wrap {
  height: 100%;
}

.location-map-wrap a {
  display: block;
  height: 100%;
}

.location-map-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

@media (max-width: 991.98px) {
  .location-map-wrap img {
    height: auto;
    aspect-ratio: 830/820;
  }
}

@media (min-width: 1450px) {
  .location-map-wrap,
  .location-map-wrap a,
  .location-map-wrap img {
    height: 600px;
  }
}

.distance-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 0.8px solid var(--color-border);
}

.distance-item .place-wrap {
  display: flex;
  align-items: center;
  gap: 27px;
}

.distance-item .place-icon {
  color: var(--color-primary-start);
  font-size: 24px;
}

.distance-item .place-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--color-dark);
  text-transform: capitalize;
}

.distance-item .place-distance {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  color: var(--color-dark);
  text-transform: capitalize;
}

/* ============================================================
   12. PROJECTS SECTION
   ============================================================ */
#projects {
  background: var(--color-white);
}

.project-card {
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-base);
}

.project-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 831/360;
  object-fit: cover;
}

.project-card-body {
  padding: 27px;
}

.project-card-body .project-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.project-card-body .project-location {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.project-stats {
  display: flex;
  gap: 65px;
}

.project-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-stat .stat-header {
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-stat .stat-header i {
  font-size: 20px;
  color: var(--color-text-dark);
}

.project-stat .stat-header span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-dark);
  text-transform: capitalize;
}

.project-stat .stat-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

/* ============================================================
   12. TESTIMONIALS SECTION
   ============================================================ */
#testimonials {
  background: var(--color-white);
  overflow: hidden;
}

.testimonialsSwiper {
  overflow: clip !important;
}

.testimonial-card {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  min-height: 444px;
}

.testimonial-content {
  background: var(--color-bg-alt2);
  padding: 40px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  flex-shrink: 0;
}

.testimonial-quote-icon {
  margin-bottom: 10px;
}

.testimonial-quote-icon img {
  width: 65px;
  height: auto;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-dark);
  margin-bottom: 20px;
  margin-top: 1rem;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: var(--color-dark);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.testimonial-project {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  color: var(--color-dark);
  margin: 0;
}

.testimonial-image-wrap {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  /* padding: 8px; */
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  outline: 1px solid var(--color-border);
  outline-offset: -8px;
}

.testimonial-play-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.testimonial-play-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .gal-badge-text{
  font-size: 10px !important;
}
  .testimonial-card {
    flex-direction: column;
    min-height: auto;
  }

  .footer-keerthi-logo {
    max-width: 200px;
  }

  #hero {
    margin: 0;
  }

  #mainNav .navbar-brand img {
    height: 47px;
  }

  .nav-right-wrap {
    gap: 10px;
  }

  .nav-right-logos {
    gap: 8px;
  }

  .nav-right-logos img {
    height: 36px;
  }

  .nav-right-logos .nav-nandini-logo {
    padding-left: 8px;
  }

  .testimonial-content,
  .testimonial-image-wrap {
    width: 100%;
  }

  .testimonial-image-wrap {
    height: 300px;
  }

  section.secton-thankyou .thankyou-title {
    font-size: 2rem;
  }
}

/* ============================================================
   13. FAQS SECTION
   ============================================================ */
#faqs {
  position: relative;
  overflow: hidden;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 0.8px solid var(--color-border);
  border-radius: 0 !important;
  background: transparent;
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 24px);
  color: var(--color-dark);
  text-transform: capitalize;
  background: transparent;
  padding: 24px 5px;
  box-shadow: none;
  line-height: 1.4;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-dark);
  background: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: url("../images/location/location.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  transition: var(--transition-base);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/location/location.svg");
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  color: var(--color-text-secondary);
  padding: 0 5px 24px;
  line-height: 1.7;
}

/* ============================================================
   14. LEGACY SECTION
   ============================================================ */

.legacy-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.legacy-heading-wrap {
  position: relative;
  flex-shrink: 0;
  padding-top: 20px;
}

.legacy-icon {
  width: 55px;
  height: auto;
  position: absolute;
  top: -32px;
  right: 32px;
}

.legacy-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.legacy-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 80px;
}

.legacy-stat-item .stat-number {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(32px, 2vw, 48px);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  white-space: nowrap;
}

.legacy-stat-item .stat-number .plus {
  font-size: inherit;
}

.legacy-stat-item .stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

.legacy-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
  flex-shrink: 0;
}

.legacy-description {
  flex: 1;
}

@media (max-width: 991px) {
  .legacy-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .legacy-icon {
    width: 55px;
    height: auto;
    position: absolute;
    top: -32px;
    right: -14px;
  }
}

/* ============================================================
   15. CONSULTANTS SECTION
   ============================================================ */
#consultants {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: 0;
}

#consultants .section-container {
  padding-bottom: var(--space-xl);
}

.consultant-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding: 0 var(--container-padding) var(--space-xl);
}

.consultant-logos .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 280px;
  width: 280px;
  height: 120px;
  padding: 20px 30px;
  border: 1px solid rgba(204, 148, 120, 0.2);
  border-radius: var(--radius-md);
}

.consultant-logos .item img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition-base);
}

.consultant-logos .item img:hover {
  opacity: 1;
}

/* ============================================================
   16. SIDEBAR CTA STYLES
   ============================================================ */
.sidebar-cta {
  position: fixed;
  right: 0;
  z-index: 999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 15px 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.sidebar-cta:hover {
  opacity: 0.9;
  padding-right: 14px;
}

.sidebar-cta-primary {
  top: 35%;
  background: linear-gradient(to right, #d1a58d 0%, #d1a58d 46%, #ffffff 51%, #d1a58d 56%, #d1a58d 100%);
  background-size: 600% 600%;
  -webkit-animation: btnShine 3s ease infinite;
  animation: btnShine 3s ease infinite;
}

.sidebar-cta-secondary {
  top: 55%;
  background: linear-gradient(to right, #d1a58d 0%, #d1a58d 46%, #ffffff 51%, #d1a58d 56%, #d1a58d 100%);
  background-size: 600% 600%;
  -webkit-animation: btnShine 3s ease infinite;
  animation: btnShine 3s ease infinite;
}

/* ============================================================
   18. RESPONSIVE OVERRIDES (Mobile-First)
   ============================================================ */

/* Base: 375px mobile (default styles above) */

@media (max-width: 575px) {
  :root {
    --container-padding: 20px;
  }

  .hero-stats {
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px 12px;
    gap: 12px;
    width: 60%;
    margin: 0 auto;
  }

  .hero-stat-item {
    min-width: auto;
    padding: 0 4px;
  }

  .hero-stat-item .stat-number {
    font-size: 20px;
    line-height: 1.2;
  }

  .hero-stat-item .stat-number .stat-unit {
    font-size: 14px;
  }

  .hero-stat-item .stat-label {
    font-size: 12px;
    margin-top: 4px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-carousel-nav {
    bottom: 200px;
    right: 20px;
    gap: 10px;
  }

  .hero-carousel-nav .carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .hero-content {
    top: 20%;
    bottom: auto;
    left: 20px;
    right: 20px;
    max-width: none;
    transform: none;
    text-align: center;
  }

  .hero-content .hero-heading {
    margin-bottom: 20px;
  }

  .hero-content .hero-location {
    margin-bottom: 20px;
  }

  .hero-content .hero-cta {
    display: inline-flex;
  }

  .floorplan-container {
    width: 90%;
  }

  .floorplan-tabs {
    flex-direction: row;
    gap: 16px;
  }

  .floorplan-tabs .tab-custom {
    width: 50%;
    font-size: 15px;
    height: 44px;
  }

  .floorplan-desc {
    font-size: 15px;
  }

  .floorplan-list-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .floorplan-list-item .floorplan-info,
  .floorplan-list-item .floorplan-size {
    flex: 0 0 auto;
  }

  .floorplan-list-item .btn-secondary-custom {
    text-align: center;
    margin-left: 0;
    font-size: 13px;
    padding: 8px 16px;
    height: 40px;
  }

  .floorplan-overlay {
    display: none;
  }

  .gallery-tabs {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .gallery-tabs .tab-custom {
    width: auto;
    min-width: 182px;
  }

  .project-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .legacy-stats {
    flex-wrap: wrap;
  }

  .footer-addresses {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: var(--space-lg);
  }

  .footer-address-col {
    padding: 0;
  }

  .footer-rera-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-rera-buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-rera-buttons .btn-outline-custom,
  .footer-rera-buttons .btn-secondary-custom {
    width: 100%;
  }

  .footer-bottom-bar {
    padding: 0 20px 30px;
    margin-top: var(--space-lg);
  }

  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: var(--space-md);
  }

  .consultant-logos {
    padding: 0 20px var(--space-lg);
    gap: var(--space-md);
  }

  .consultant-logos .item {
    flex: 0 0 calc(50% - var(--space-md) / 2);
    width: calc(50% - var(--space-md) / 2);
    height: 100px;
    padding: 16px 20px;
  }

  .sidebar-cta {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .floorplan-list-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .floorplan-list-item .floorplan-info {
    min-width: 80px;
  }

  .floorplan-list-item .btn-secondary-custom {
    text-align: center;
    margin-left: 0;
    font-size: 14px;
    padding: 10px 20px;
  }

  .floorplan-tabs .tab-custom {
    width: 150px;
    font-size: 15px;
    height: 44px;
  }

  .floorplan-desc {
    font-size: 16px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  :root {
    --container-padding: 30px;
  }

  .floorplan-container {
    width: 90%;
  }

  #footer {
    padding: 1rem 0 2rem !important;
  }

  .footer-addresses {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: var(--space-lg);
  }

  .footer-address-col:first-child {
    justify-content: center;
  }

  .hero-stats {
    left: 30px;
    right: 30px;
    bottom: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 15px;
    gap: 18px 0;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-item {
    min-width: auto;
    padding: 0 8px;
  }

  .hero-content {
    top: 30%;
    bottom: auto;
    transform: none;
    text-align: center;
  }

  .hero-carousel-nav {
    bottom: 214px;
    right: 30px;
  }

  .distance-item {
    padding: 1rem 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --container-padding: 60px;
  }

  .hero-stats {
    left: 60px;
    right: 60px;
    bottom: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 20px;
    gap: 20px 0;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-item {
    min-width: auto;
    padding: 0 10px;
  }

  .hero-content {
    top: 30%;
    bottom: auto;
    transform: none;
    text-align: center;
  }

  .hero-carousel-nav {
    bottom: 232px;
    right: 60px;
  }

  .floorplan-container {
    width: 90%;
  }

  .floorplan-tabs .tab-custom {
    width: 160px;
    font-size: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-stats {
    left: 60px;
    right: auto;
    max-width: none;
    padding: 24px 20px;
  }

  .hero-stat-item {
    min-width: auto;
    padding: 0 15px;
  }

  .hero-stat-item .stat-number {
    font-size: 24px;
  }

  .hero-stat-item .stat-label {
    font-size: 12px;
  }

  .hero-stat-divider {
    height: 60px;
  }
}

@media (min-width: 992px) {
  .amenities-content {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  :root {
    --container-padding: 120px;
  }
}

@media (min-width: 1440px) {
  /* Large desktop scaling — design is at 1920px */
}

/* Mobile: a little side padding + reduced vertical padding for all sections
   except hero/navbar/footer (those don't carry .section-padding) */
@media (max-width: 991.98px) {
  .section-padding {
    padding: clamp(28px, 4vw, 48px) 12px !important;
  }

  /* Floor plans: on mobile, show the enquiry form first, then the left content.
     Heading lives above the row so it always appears first. */
  #floorPlans .floorplan-container .row > .col-12.col-lg-6:first-child {
    order: 2;
  }
  #floorPlans .floorplan-container .row > .col-12.col-lg-6:last-child {
    order: 1;
  }

}

.floorplan-heading {
  margin-bottom: var(--space-md);
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.enquiry-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.enquiry-modal-header {
  background: var(--color-white);
  padding: 24px 30px;
  border-bottom: 1px solid rgba(204, 148, 120, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enquiry-modal-header .btn-close {
  filter: none;
  opacity: 0.5;
}

.enquiry-modal-logo img {
  height: 52px;
  width: auto;
}

.enquiry-modal-body {
  padding: 30px;
  text-align: center;
}

.enquiry-modal-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 37px;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.enquiry-modal-title span {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  font-weight: 500;
}

.enquiry-modal-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.enquiry-input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(204, 148, 120, 0.3);
  border-radius: 8px;
  color: var(--color-dark);
  transition: var(--transition-base);
}

.enquiry-input:focus {
  border-color: var(--color-primary-start);
  box-shadow: 0 0 0 3px rgba(204, 148, 120, 0.15);
}

.enquiry-input::placeholder {
  color: var(--color-text-muted);
}

.enquiry-submit-btn {
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
  background: var(--color-primary-solid);
  background-size: auto;
  -webkit-animation: none;
  animation: none;
}

.enquiry-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(209, 165, 141, 0.4);
}

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
}

.mobile-sticky-btn {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.mobile-sticky-btn:hover {
  opacity: 0.9;
}

.mobile-sticky-enquire {
  background: linear-gradient(to right, #d1a58d 0%, #d1a58d 46%, #ffffff 51%, #d1a58d 56%, #d1a58d 100%);
  background-size: 600% 600%;
  -webkit-animation: mobileBtnShine 3s ease infinite;
  animation: mobileBtnShine 3s ease infinite;
  color: #fff;
}

.mobile-sticky-enquire:hover,
.mobile-sticky-enquire:focus {
  color: #fff;
}

.mobile-sticky-brochure {
  background: linear-gradient(to right, #d1a58d 0%, #d1a58d 46%, #ffffff 51%, #d1a58d 56%, #d1a58d 100%);
  background-size: 600% 600%;
  -webkit-animation: mobileBtnShine 3s ease infinite;
  animation: mobileBtnShine 3s ease infinite;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-sticky-brochure:hover,
.mobile-sticky-brochure:focus {
  color: #fff;
}

@-webkit-keyframes mobileBtnShine {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes mobileBtnShine {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}
.gal-img-parent{
  position: relative;
}
.gal-badge-text{
  position: absolute;
  margin: 0px;
  bottom: 0 !important;
  left: 0;
  background-color:var(--color-primary-start);
  color: #fff;
  /* opacity: 0.5; */
  padding: 1px 6px;
  font-size: 14px;
  font-weight: 500;
}