@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   Gaur Alaris – Premium Real Estate Website
   Custom Stylesheet – Matching aspireleisurepark.co.in layout
   ============================================================ */

/* ---- CSS Custom Properties / Design Tokens ---- */
:root {
  --clr-primary: #7C5C2A;
  --clr-primary-dark: #5A3E18;
  --clr-primary-light: #A07828;
  --clr-dark: #0A0F1A;
  --clr-dark-light: #151f33;
  --clr-gold: #D4AF37;
  --clr-gold-light: #F3E5AB;
  --clr-light-bg: #F0E6D4;
  --clr-white: #FAF2E5;
  --clr-body-text: #4A5568;
  --clr-heading: #1A202C;
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 100px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Gold Button Gradient */
  --btn-gold-start: #E8C96A;
  --btn-gold-mid: #D4AF37;
  --btn-gold-end: #A07828;
  --btn-gold-gradient: linear-gradient(135deg, #E8C96A 0%, #D4AF37 45%, #B8920E 80%, #A07828 100%);
  --btn-gold-hover: linear-gradient(135deg, #D4AF37 0%, #C49A28 45%, #A07828 80%, #8B6914 100%);
  --btn-gold-text: #2A1A08;
  --btn-gold-shadow: 0 6px 24px rgba(180, 140, 20, 0.45);
}

/* ---- Bootstrap Color Overrides (force theme palette) ---- */
:root {
  --bs-white: #FAF2E5;
  --bs-light: #F0E6D4;
  --bs-light-rgb: 240, 230, 212;
  --bs-white-rgb: 250, 242, 229;
  --bs-body-bg: #FAF2E5;
  --bs-secondary-bg: #F5ECD8;
  --bs-tertiary-bg: #F0E6D4;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-body-text);
  line-height: 1.7;
  overflow-x: hidden;
  background: #FAF2E5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  color: var(--clr-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* ---- Utility ---- */
.section-padding {
  padding: 90px 0;
}

.bg-light-custom {
  background: var(--clr-light-bg);
}

/* ---- Section Headers ---- */
.section-header {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.section-tag .tag-line {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--clr-primary);
  vertical-align: middle;
  margin: 0 8px;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--clr-heading);
  margin-bottom: 12px;
  position: relative;
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--clr-primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-desc {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   1. STICKY HEADER / NAVBAR
   ============================================================ */
#mainNavbar {
  padding: 0px 0;
  transition: var(--transition);
  background: transparent;
  z-index: 1050;
}

#mainNavbar.scrolled {
  background: var(--clr-white) !important;
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

#mainNavbar.scrolled .nav-link {
  color: var(--clr-dark) !important;
}

#mainNavbar.scrolled .brand-text {
  color: var(--clr-dark) !important;
}

#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active {
  color: var(--clr-primary) !important;
}

#mainNavbar.scrolled .navbar-toggler {
  border-color: var(--clr-dark);
}

#mainNavbar.scrolled .navbar-toggler-icon {
  filter: invert(1) grayscale(100%) brightness(0);
}

.navbar-brand {
  font-family: var(--ff-heading);
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-brand img {
  transition: filter 0.3s ease !important;
}

#mainNavbar.scrolled .navbar-brand img {
  filter: brightness(0) !important;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 13px !important;
  letter-spacing: 0.3px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* CTA Buttons */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call-now {
  background: var(--btn-gold-gradient);
  color: var(--btn-gold-text) !important;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(180, 140, 20, 0.2);
  letter-spacing: 0.2px;
}

.btn-call-now:hover {
  background: var(--btn-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--btn-gold-shadow);
  color: var(--btn-gold-text) !important;
}

.btn-site-visit {
  border: 2px solid #D4AF37;
  color: #D4AF37 !important;
  border-radius: var(--radius-full);
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-site-visit:hover {
  background: var(--btn-gold-gradient);
  border-color: transparent;
  color: var(--btn-gold-text) !important;
  transform: translateY(-2px);
  box-shadow: var(--btn-gold-shadow);
}

#mainNavbar.scrolled .btn-site-visit {
  border-color: #C49A28;
  color: #8B6914 !important;
}

#mainNavbar.scrolled .btn-site-visit:hover {
  background: var(--btn-gold-gradient);
  border-color: transparent;
  color: var(--btn-gold-text) !important;
  box-shadow: var(--btn-gold-shadow);
}

/* Mobile Collapse Menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--clr-dark);
    padding: 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }

  .navbar-collapse .nav-link {
    color: var(--clr-white) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .navbar-collapse .nav-link:hover {
    color: var(--clr-gold-light) !important;
  }

  .navbar-collapse .nav-link::after {
    display: none;
  }

  .nav-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .nav-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn-site-visit {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }

  /* Ensure toggler icon is white when mobile menu is opened */
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    filter: none !important;
  }
  .navbar-toggler:not(.collapsed) {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
}

/* ============================================================
   2. HERO BANNER
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/img771.jpg') center/cover no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 26, 0.88) 0%, rgba(10, 15, 26, 0.55) 50%, rgba(60, 40, 10, 0.65) 100%);
  z-index: 0;
}

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

.hero-badge {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 60px);
  color: var(--clr-white);
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--clr-gold-light);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-price-pill {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.hero-payment-pill {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-payment-pill>i {
  font-size: 20px;
}

.price-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ff-heading);
  display: block;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--clr-white);
  transition: var(--transition);
}

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

.stat-card i {
  font-size: 22px;
  color: var(--clr-gold-light);
  margin-bottom: 4px;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--ff-heading);
}

.stat-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 40px;
}

.btn-hero-primary {
  background: var(--btn-gold-gradient);
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(180, 140, 20, 0.3);
  letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
  background: var(--btn-gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--btn-gold-shadow);
  color: var(--btn-gold-text) !important;
}

.btn-hero-outline {
  border: 2px solid #D4AF37;
  color: #D4AF37 !important;
  border-radius: var(--radius-full);
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-hero-outline:hover {
  background: var(--btn-gold-gradient);
  border-color: transparent;
  color: var(--btn-gold-text) !important;
  transform: translateY(-3px);
  box-shadow: var(--btn-gold-shadow);
}

/* Hero Form */
.hero-form-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}

.hero-form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--clr-heading);
}

.hero-form-card .form-control {
  border: 1.5px solid #d9c9b0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #F5ECD8;
  height: 52px;
}

.hero-form-card .form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(124, 92, 42, 0.15);
  background: #FAF2E5;
}

.hero-form-card .form-floating label {
  font-size: 14px;
  color: #999;
}

.btn-submit-form {
  background: var(--btn-gold-gradient);
  color: var(--btn-gold-text) !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(180, 140, 20, 0.25);
  letter-spacing: 0.3px;
}

.btn-submit-form:hover {
  background: var(--btn-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--btn-gold-shadow);
  color: var(--btn-gold-text) !important;
}

.form-privacy {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 0;
}

/* ============================================================
   4. ABOUT PROJECT
   ============================================================ */
.about-section {
  position: relative;
  color: var(--clr-white);
  overflow: hidden;
}

.about-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/img927.jpg') center/cover no-repeat;
  z-index: 0;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40, 25, 5, 0.90) 0%, rgba(15, 10, 5, 0.85) 50%, rgba(10, 10, 30, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-section .container {
  z-index: 2;
  position: relative;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame-outer {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 18px;
  border-radius: 4px;
}

.about-image-frame-inner {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  display: block;
  border-radius: 0;
  max-width: none;
  box-shadow: none;
}

.about-img-logo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.40) 60%, transparent 100%);
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-logo-title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-logo-sub {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-heading {
  font-family: var(--ff-heading);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.rera-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.btn-brochure-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--clr-white) !important;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-top: 12px;
}

.btn-brochure-new:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
  .about-image-frame-outer {
    max-width: 420px;
    margin: 0 auto 20px;
  }
}

/* ============================================================
   5. HIGHLIGHTS – Dark Section
   ============================================================ */
.highlights-dark {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 80px 0;
  font-family: 'Outfit', sans-serif;
}

.highlights-dark .section-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.highlights-dark .section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--clr-gold);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.highlights-dark .section-desc {
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 50px;
}

.highlight-card-new {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: default;
}

.highlight-card-new:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--clr-gold);
  box-shadow: 0 15px 40px rgba(124, 92, 42, 0.15);
}

.highlight-card-new .icon-box {
  min-width: 54px;
  height: 54px;
  background: rgba(124, 92, 42, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.highlight-card-new:hover .icon-box {
  background: var(--clr-primary);
  color: #fff;
}

.highlight-card-new .point-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .highlights-dark .section-title {
    font-size: 2rem;
  }

  .highlight-card-new {
    padding: 20px;
  }
}

/* ============================================================
   6. HIGHLIGHT CARD (Location/Why Invest)
   ============================================================ */
.highlight-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #f0f0f0;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 92, 42, 0.12), rgba(124, 92, 42, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.highlight-icon i {
  font-size: 26px;
  color: var(--clr-primary);
}

.highlight-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 13px;
  color: #888;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Location Map Image Styles */
.location-map-wrapper {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.location-map-wrapper img {
  transition: transform 0.5s ease;
}

.location-map-wrapper:hover img {
  transform: scale(1.02);
}

.image-overlay-zoom {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}

.location-map-wrapper:hover .image-overlay-zoom {
  opacity: 1;
  transform: scale(1.05);
}


/* ============================================================
   7. AMENITIES – Premium Cards
   ============================================================ */
.amenities-section {
  background-color: #FAF2E5;
  position: relative;
}

.amenity-premium-card {
  background: #FAF2E5;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(124, 92, 42, 0.06);
  padding: 10px;
}

.amenity-premium-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(124, 92, 42, 0.12);
  border-color: rgba(124, 92, 42, 0.2);
}

.amenity-image-wrapper {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #F0E6D4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 92, 42, 0.08);
}

.amenity-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.amenity-premium-card:hover .amenity-image-wrapper img {
  transform: scale(1.1);
}

.amenity-premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(250, 242, 229, 0.92);
  backdrop-filter: blur(10px);
  color: var(--clr-primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  z-index: 5;
}

.amenity-premium-content {
  padding: 25px 15px 15px;
  text-align: left;
}

.amenity-premium-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.amenity-premium-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 0.85;
}

.section-tag-premium {
  display: inline-block;
  color: var(--clr-primary);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}

.section-tag-premium::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--clr-primary);
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .amenity-image-wrapper {
    height: 200px;
  }
}

/* ============================================================
   PRICE LIST & FLOOR PLAN – Glassmorphic
   ============================================================ */
.plan-card {
  min-height: 280px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(124, 92, 42, 0.15);
  margin-top: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #1a1408, #0c0c04);
  cursor: pointer;
}

.plan-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 92, 42, 0.08), rgba(0, 0, 0, 0.4));
  z-index: 2;
  transition: all 0.5s ease;
}

.plan-content {
  position: relative;
  z-index: 10;
  width: 85%;
  text-align: center;
}

.plan-details-btn {
  background: rgba(250, 242, 229, 0.95);
  border: none;
  color: #1a1a1a;
  padding: 20px 25px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: block;
  text-decoration: none;
  width: 100%;
  line-height: 1.3;
}

.plan-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(124, 92, 42, 0.4);
  box-shadow: 0 25px 50px rgba(124, 92, 42, 0.15);
}

.plan-card:hover .plan-card-overlay {
  background: linear-gradient(135deg, rgba(124, 92, 42, 0.3), rgba(0, 0, 0, 0.6));
}

.plan-card:hover .plan-details-btn {
  background: #FAF2E5;
  color: var(--clr-primary);
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(124, 92, 42, 0.4);
}

.plan-tag-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--clr-primary);
  color: #FAF2E5;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 11;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .plan-card {
    padding: 40px 20px;
    min-height: 200px;
  }
}

/* ============================================================
   9. GALLERY
   ============================================================ */
.gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
}

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

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover i {
  font-size: 32px;
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover i {
  transform: scale(1);
}

/* ============================================================
   11. CONTACT SECTION
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--clr-dark) 0%, #1e293b 100%);
  padding: 90px 0;
  color: var(--clr-white);
}

.contact-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 480px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--transition);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-info-item i {
  font-size: 22px;
  color: var(--clr-gold);
}

.contact-info-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item a {
  color: var(--clr-white);
  font-size: 16px;
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--clr-gold-light);
}

.contact-form-card {
  background: #FAF2E5;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h4 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
}

.contact-form-card .form-control {
  border: 1.5px solid #d9c9b0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #F5ECD8;
}

.contact-form-card .form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(124, 92, 42, 0.15);
  background: #FAF2E5;
}

.btn-submit-contact {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white) !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 92, 42, 0.4);
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-logo-text {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: 1px;
}

.footer-logo-text span {
  color: var(--clr-gold);
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 16px;
  color: var(--clr-white);
  margin-bottom: 20px;
  font-family: var(--ff-body);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: var(--clr-primary);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--clr-white);
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact li i {
  color: var(--clr-gold);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--clr-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   FLOATING & FIXED BUTTONS
   ============================================================ */
.floating-actions-desktop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.12) rotate(5deg);
  color: var(--clr-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.call-float {
  background: var(--clr-primary);
}

.message-float {
  background: #f59e0b;
}

.whatsapp-float {
  background: #25D366;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: #FAF2E5;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-top: 1px solid #d9c9b0;
}

.footer-sticky-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #555;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 4px;
  transition: all 0.3s ease;
}

.footer-sticky-item i {
  font-size: 1.3rem;
  color: var(--clr-primary);
}

.footer-sticky-item.whatsapp-item i {
  color: #25D366;
}

.footer-sticky-item:active {
  background: #F0E6D4;
  transform: scale(0.95);
}

/* Fixed Side Buttons */
.fixed-side-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
}

.side-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 22px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-side-call {
  background-color: var(--clr-primary);
  border-top-left-radius: 6px;
}

.btn-side-call:hover {
  background-color: var(--clr-primary-dark);
  color: var(--clr-white);
}

.btn-side-message {
  background-color: #f59e0b;
}

.btn-side-message:hover {
  background-color: #d97706;
  color: var(--clr-white);
}

.btn-side-whatsapp {
  background-color: #22c55e;
  border-bottom-left-radius: 6px;
}

.btn-side-whatsapp:hover {
  background-color: #16a34a;
  color: var(--clr-white);
}

/* Responsive Visibility */
@media (max-width: 991px) {

  .fixed-side-buttons,
  .floating-actions-desktop {
    display: none !important;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (min-width: 992px) {

  .fixed-side-buttons,
  .mobile-sticky-footer {
    display: none !important;
  }
}

/* ============================================================
   SPEC DETAIL BOX (Why Invest / Specifications)
   ============================================================ */
.spec-detail-box {
  padding: 30px;
  border-radius: var(--radius-md);
  background: #FAF2E5;
  border: 1px solid #E0CEBC;
  height: 100%;
  transition: var(--transition);
}

.spec-detail-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-price-row,
  .hero-stats,
  .hero-cta-group {
    justify-content: center;
  }

  .hero-form-card {
    margin: 0 auto;
  }

  .about-image-wrapper {
    text-align: center;
    display: block;
  }

  .contact-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info-cards {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .price-value {
    font-size: 18px;
  }

  .stat-card {
    padding: 12px 18px;
  }

  .stat-number {
    font-size: 18px;
  }

  .gallery-item {
    height: 200px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-form-card {
    padding: 28px 20px;
    max-width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }

  .stat-card {
    flex: 1;
    min-width: 80px;
    padding: 10px 12px;
  }

  .hero-price-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-price-pill,
  .hero-payment-pill {
    width: 100%;
    max-width: 280px;
  }
}

/* ---- Scroll Reveal Animations ---- */
[data-aos] {
  transition-property: opacity, transform;
}

/* ---- RERA Banner ---- */
.rera-banner {
  background: linear-gradient(90deg, var(--clr-primary-dark), var(--clr-primary));
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
}

/* ---- Onload Modal ---- */
.onload-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.btn-close-custom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5) !important;
  opacity: 1;
  filter: invert(1);
  border-radius: 50%;
  padding: 6px;
}

.onload-btn-group {
  display: flex;
  gap: 12px;
  padding: 16px;
}

.btn-enquiry {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-close-modal {
  flex: 1;
  background: rgba(0, 0, 0, 0.08);
  border: 2px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: var(--transition);
}

.btn-close-modal:hover {
  background: #E8D8C4;
}

/* ============================================================
   THEME OVERRIDES — Bootstrap Modal & Form Controls
   ============================================================ */

/* Bootstrap modal content card */
.modal-content {
  background-color: #FAF2E5 !important;
  border: 1px solid #D9C9B0;
}

.modal-header {
  background-color: #F5ECD8;
  border-bottom: 1px solid #D9C9B0;
}

/* Bootstrap form controls (inputs, textareas, selects) */
.form-control,
.form-select {
  background-color: #F5ECD8 !important;
  border-color: #D9C9B0 !important;
  color: #3a3028 !important;
}

.form-control:focus,
.form-select:focus {
  background-color: #FAF2E5 !important;
  border-color: #7C5C2A !important;
  box-shadow: 0 0 0 3px rgba(124, 92, 42, 0.15) !important;
}

/* Bootstrap form-floating label */
.form-floating>label {
  color: #7a6a58 !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: #7C5C2A !important;
}

/* highlight-card uses --clr-white, ensure FAF2E5 */
.highlight-card {
  background: #FAF2E5 !important;
}

/* Why Invest bg-light-custom section */
.bg-light-custom {
  background: #F0E6D4 !important;
}

/* ✅ CREATIVE MODAL DESIGN FROM GAUR CHRYSALIS */
.simple-modal-modern {
  background: #0f0f0f !important;
  border: 2px solid #d4b26a !important;
  border-radius: 14px !important;
  box-shadow: 0 0 25px rgba(212, 178, 106, 0.4) !important;
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}

/* Header */
.simple-modal-modern .modal-header {
  background: linear-gradient(90deg, #d4b26a, #b6914c) !important;
  color: #fff !important;
  border-bottom: none !important;
  padding: 14px 20px !important;
  align-items: center !important;
}

.simple-modal-modern .modal-title {
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  font-family: "Poppins", sans-serif !important;
  color: #fff !important;
}

.btn-close.doms {
  filter: invert(1) brightness(250%) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.btn-close.doms:hover {
  filter: drop-shadow(0 0 5px gold) !important;
}

/* Carousel */
#myCarouselnew img {
  object-fit: contain !important;
  border-radius: 12px !important;
  transition: transform 0.5s ease !important;
}

#myCarouselnew img:hover {
  transform: scale(1.02) !important;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
  background-color: #d4b26a !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
}

.carousel-indicators .active {
  background-color: #fff5cc !important;
}

/* Arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(150%) !important;
}

/* Footer Buttons */
.call-btn,
.enquiry-btn {
  font-weight: 600 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 18px !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.call-btn {
  background: linear-gradient(90deg, #ff6b6b, #ff4949) !important;
  box-shadow: 0 0 10px rgba(255, 75, 75, 0.3) !important;
  color: #fff !important;
}

.call-btn:hover {
  background: linear-gradient(90deg, #ff8585, #ff5555) !important;
  box-shadow: 0 0 15px rgba(255, 120, 120, 0.6) !important;
  color: #fff !important;
}

.enquiry-btn {
  background: linear-gradient(90deg, #b6914c, #d4b26a) !important;
  box-shadow: 0 0 10px rgba(212, 178, 106, 0.3) !important;
  color: #fff !important;
}

.enquiry-btn:hover {
  background: linear-gradient(90deg, #d9b97b, #f5d48a) !important;
  box-shadow: 0 0 15px rgba(240, 200, 130, 0.7) !important;
  color: #fff !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsive */
@media (max-width: 768px) {
  #myCarouselnew img {
    height: 390px !important;
    object-fit: contain !important;
  }
}

/* Modal backdrop blur & dialog animation */
.modal-backdrop.show {
  background-color: rgba(10, 15, 26, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: opacity 0.3s ease !important;
}

.modal.fade .modal-dialog {
  transform: scale(0.9) translateY(20px) !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease !important;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0) !important;
}