.error-name, .error-email, .error-phone, .error-email-valid, .error-phone-valid {
    color: red;
    float: left;
    margin-bottom: 10px;
    display: none;
}

#loading_bottom_1, #loading_bottom_2, #loading_bottom_3 {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
}

#contactForm {
    position: relative;
}


:root {
  /* ── NEW LIGHT PALETTE ── */
  --bg-main:   #E7E0C9;
  --bg-light:  #F2EBDD;
  --bg-dark:   #D8CFB5;
  --bg-deeper: #C9BEA3;

  /* ── MAROON (kept, now used as accent/primary) ── */
  --maroon:       #6B0F1A;
  --maroon-dark:  #4A0912;
  --maroon-light: #8B1535;

  /* ── GOLD (slightly warmed to read on light bg) ── */
  --gold:       #8C6A1A;
  --gold-light: #B08530;

  /* ── TEXT ── */
  --primary-text:   #6B0F1A;
  --secondary-text: #8C6A5D;
  --muted-text:     #A09070;

  /* ── LEGACY ALIASES (so old var() refs still work) ── */
  --white:    #F2EBDD;
  --charcoal: #E7E0C9;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-main);
  color: var(--primary-text);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar-luxury {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, rgba(242,235,221,0.97) 0%, rgba(231,224,201,0.97) 50%, rgba(242,235,221,0.97) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,15,26,0.2);
  box-shadow: 0 2px 30px rgba(107,15,26,0.12); transition: all 0.4s;
}
.navbar-luxury::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--maroon), var(--maroon-light), var(--maroon), transparent);
}
.navbar-luxury.scrolled { height: 58px; }
.navbar-brand-text {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700;
  letter-spacing: 3px; color: var(--maroon); text-transform: uppercase; text-decoration: none; line-height: 1.1;
}
.navbar-brand-sub {
  font-size: 8px; letter-spacing: 4px; color: rgba(107,15,26,0.55);
  display: block; text-transform: uppercase; margin-top: 1px; font-family: 'Montserrat', sans-serif;
}
.nav-link-luxury {
  color: rgba(107,15,26,0.75); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; margin: 0 10px;
  transition: color 0.3s; text-decoration: none; position: relative;
}
.nav-link-luxury::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--maroon); transform: scaleX(0); transition: transform 0.3s;
}
.nav-link-luxury:hover { color: var(--maroon); }
.nav-link-luxury:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--bg-light) !important; padding: 9px 22px; font-weight: 700;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; display: inline-block; border-radius: 50px;
  box-shadow: 0 4px 15px rgba(107,15,26,0.25); transition: all 0.3s;
}
.nav-cta:hover { box-shadow: 0 6px 20px rgba(107,15,26,0.35); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--maroon); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none; position: fixed; top: 58px; left: 0; right: 0; z-index: 999;
  background: linear-gradient(180deg, rgba(242,235,221,0.99), rgba(231,224,201,0.99));
  backdrop-filter: blur(20px); border-bottom: 1px solid rgba(107,15,26,0.2);
  padding: 20px 24px 24px; transform: translateY(-110%); transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block; color: rgba(107,15,26,0.8); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(107,15,26,0.1); transition: color 0.3s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--maroon); }
.mobile-nav .mobile-cta {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--bg-light) !important; text-align: center;
  margin-top: 16px; padding: 14px; font-weight: 700;
  border-bottom: none !important; border-radius: 50px;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
#hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/slider/slider-01.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 8s ease;
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(0,0,0,0.38) 0%, transparent 55%),
              linear-gradient(to top, rgba(0,0,0,0.32) 0%, transparent 35%);
}
.hero-ornament {
  position: absolute; width: 500px; height: 500px;
  border: 1px solid rgba(107,15,26,0.1); border-radius: 50%;
  right: -80px; top: 50%; transform: translateY(-50%); pointer-events: none;
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 50px;
  border: 1px solid rgba(107,15,26,0.06); border-radius: 50%;
}
.hero-tag {
  display: inline-block; font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--bg-light); border: 1px solid rgba(242,235,221,0.55); padding: 6px 18px;
  margin-bottom: 26px; background: rgba(107,15,26,0.35); backdrop-filter: blur(8px);
  border-radius: 50px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 7vw, 92px);
  font-weight: 300; line-height: 1.05; color: var(--bg-light); letter-spacing: -1px;
  margin-bottom: 10px; text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title .gold-word { color: #F0D080; font-weight: 600; font-style: italic; }
.hero-subtitle { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(242,235,221,0.8); margin-bottom: 30px; }
.hero-price-badge {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: rgba(242,235,221,0.15); border: 1px solid rgba(242,235,221,0.45);
  padding: 12px 20px; margin-bottom: 30px; backdrop-filter: blur(12px);
  border-radius: 12px;
}
.hero-price-badge .price-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #F0D080; }
.hero-price-badge .price-value { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--bg-light); line-height: 1.1; }
.hero-price-badge .divider { width: 1px; height: 34px; background: rgba(242,235,221,0.3); flex-shrink: 0; }

/* Buttons */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--bg-light);
  border: none; padding: 13px 34px; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; transition: all 0.3s; cursor: pointer;
  display: inline-block; text-decoration: none; line-height: 1.4; border-radius: 50px;
}
.btn-primary-gold:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon));
  color: var(--bg-light);
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,15,26,0.35);
}
.btn-outline-gold {
  background: transparent; color: var(--maroon); border: 1px solid rgba(107,15,26,0.5);
  padding: 13px 34px; font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; transition: all 0.3s; cursor: pointer;
  display: inline-block; text-decoration: none; line-height: 1.4; border-radius: 50px;
}
.btn-outline-gold:hover { background: rgba(107,15,26,0.08); color: var(--maroon-dark); border-color: var(--maroon); }

/* Hero form */
.hero-form-card {
  background: rgba(242,235,221,0.88); border: 1px solid rgba(107,15,26,0.25);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 36px 32px; position: relative; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-light), var(--maroon), var(--maroon-dark));
  border-radius: 4px 4px 0 0;
}
.hero-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--maroon); margin-bottom: 4px; }
.hero-form-card .form-tagline { font-size: 10px; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 24px; text-transform: uppercase; }
.form-control-luxury {
  background: rgba(255,255,255,0.6) !important; border: 1px solid rgba(107,15,26,0.2) !important;
  color: var(--primary-text) !important; padding: 12px 14px !important; font-size: 13px !important;
  border-radius: 8px !important; transition: all 0.3s; width: 100%;
}
.form-control-luxury:focus {
  border-color: var(--maroon) !important; box-shadow: 0 0 0 2px rgba(107,15,26,0.1) !important;
  background: rgba(255,255,255,0.85) !important; outline: none;
}
.form-control-luxury::placeholder { color: rgba(107,15,26,0.38) !important; }
.form-select-luxury {
  background: rgba(255,255,255,0.6) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236B0F1A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat right 10px center !important;
  border: 1px solid rgba(107,15,26,0.2) !important; color: rgba(107,15,26,0.7) !important;
  padding: 8px 32px 8px 12px !important; font-size: 11px !important; border-radius: 8px !important; width: 100%;
}
.form-select-luxury option { background: var(--bg-light); color: var(--maroon); }
.privacy-line { font-size: 10px; color: rgba(107,15,26,0.42); margin-top: 10px; text-align: center; }
.privacy-line a { color: rgba(107,15,26,0.65); text-decoration: none; }

/* ═══════════════════════════════════
   STATS STRIP
═══════════════════════════════════ */
.stats-strip {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon) 50%, var(--maroon-dark));
  padding: 28px 0; border-top: 1px solid rgba(242,235,221,0.2); border-bottom: 1px solid rgba(242,235,221,0.2);
}
.stat-item { text-align: center; position: relative; padding: 10px 0; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 36px; width: 1px; background: rgba(242,235,221,0.25);
}
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 5vw, 42px); font-weight: 600; color: #F2EBDD; line-height: 1; }
.stat-number span { font-size: 0.55em; }
.stat-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(242,235,221,0.65); margin-top: 4px; }

/* ═══════════════════════════════════
   SECTION COMMON
═══════════════════════════════════ */
.section-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 56px); font-weight: 300; line-height: 1.15; color: var(--primary-text); }
.section-title .accent { color: var(--maroon); font-style: italic; }
.section-divider { width: 50px; height: 2px; background: linear-gradient(90deg, var(--maroon), transparent); margin: 20px 0; }
.section-body-text { font-size: 14px; line-height: 1.9; color: var(--secondary-text); }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
#about { background: var(--bg-main); padding: 90px 0; }
.about-image-block { position: relative; overflow: hidden; border-radius: 4px; }
.about-image-block img { width: 100%; height: 480px; object-fit: cover; }
.about-image-block .img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(231,224,201,0.95), transparent);
  padding: 36px 20px 20px; font-size: 12px; color: var(--secondary-text);
}
.about-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(107,15,26,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon); font-size: 16px; background: rgba(107,15,26,0.06);
}
.about-feature-title { font-size: 12px; font-weight: 700; letter-spacing: 0.8px; color: var(--primary-text); margin-bottom: 4px; }
.about-feature-text { font-size: 12px; color: var(--secondary-text); line-height: 1.7; }

/* ═══════════════════════════════════
   LIFESTYLE
═══════════════════════════════════ */
#lifestyle { background: var(--bg-deeper); padding: 90px 0; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; padding: 0 40px; }
.lifestyle-item { position: relative; overflow: hidden; background: #1a1008; border-radius: 4px; }
.lifestyle-item img {
  width: 100%; height: auto; min-height: 300px; max-height: 500px;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.6s ease;
}
.lifestyle-item:hover img { transform: scale(1.04); }
.lifestyle-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10,5,3,0.85) 0%, rgba(10,5,3,0.4) 55%, transparent 100%);
  padding: 40px 20px 20px;
}
.lifestyle-overlay-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: #F2EBDD; }
.lifestyle-overlay-text { font-size: 11px; color: rgba(242,235,221,0.65); letter-spacing: 0.4px; margin-top: 4px; }

/* ═══════════════════════════════════
   GALLERY
═══════════════════════════════════ */
#gallery { background: var(--bg-dark); padding: 90px 0; position: relative; overflow: hidden; }
#gallery::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(107,15,26,0.06), transparent 70%);
}
#lifestyle .section-eyebrow { color: var(--gold); }
#lifestyle .section-title { color: var(--bg-light); }
#lifestyle .section-title .accent { color: #E8C060; }

.gallery-slider-wrap { position: relative; overflow: hidden; border-radius: 4px; }
.gallery-slider { display: flex; transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.gallery-slide { min-width: 100%; position: relative; background: var(--bg-deeper); }
.gallery-slide img {
  width: 100%; height: 620px;
  object-fit: contain; object-position: center;
  display: block; background: var(--bg-deeper);
}.gallery-slide-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(216,207,181,0.92), transparent 55%);
  padding: 50px 44px 32px;
}
.gallery-slide-num {
  font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300;
  color: rgba(107,15,26,0.1); position: absolute; top: 18px; right: 36px; line-height: 1;
}
.gallery-slide-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--primary-text); margin-bottom: 6px; }
.gallery-slide-desc { font-size: 11px; letter-spacing: 1.5px; color: var(--secondary-text); }
.gallery-controls {
  position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0;
  display: flex; justify-content: space-between; pointer-events: none; z-index: 10; padding: 0 20px;
}
.gallery-btn {
  width: 52px; height: 52px; border: 1px solid rgba(107,15,26,0.45);
  background: rgba(242,235,221,0.75); backdrop-filter: blur(10px); color: var(--maroon); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all; transition: all 0.3s; border-radius: 50%;
}
.gallery-btn:hover { background: var(--maroon); color: var(--bg-light); border-color: var(--maroon); transform: scale(1.08); }
.gallery-thumbs { display: flex; gap: 6px; margin-top: 12px; }
.gallery-thumb {
  flex: 1; height: 66px; cursor: pointer; overflow: hidden;
  opacity: 0.45; transition: all 0.3s; border: 2px solid transparent; border-radius: 4px;
}
.gallery-thumb.active { opacity: 1; border-color: var(--maroon); }
.gallery-thumb:hover { opacity: 0.8; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-progress-bar { height: 2px; background: rgba(107,15,26,0.12); margin-top: 14px; border-radius: 2px; }
.gallery-progress-fill { height: 100%; background: linear-gradient(90deg, var(--maroon-dark), var(--maroon-light)); transition: width 0.5s ease; border-radius: 2px; }

/* ═══════════════════════════════════
   CONFIGURATIONS
═══════════════════════════════════ */
#configurations { background: var(--bg-light); padding: 90px 0; }
.config-card {
  background: rgba(255,255,255,0.55); border: 1px solid rgba(107,15,26,0.18);
  padding: 32px 26px; transition: all 0.4s; position: relative; overflow: hidden;
  height: 100%; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(107,15,26,0.07);
}
.config-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--maroon), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.config-card:hover { border-color: rgba(107,15,26,0.4); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(107,15,26,0.15); }
.config-card:hover::after { transform: scaleX(1); }
.config-type { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.config-bhk { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 300; color: var(--primary-text); line-height: 1; margin-bottom: 6px; }
.config-carpet { font-size: 11px; color: var(--secondary-text); letter-spacing: 0.8px; margin-bottom: 18px; }
.config-price { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--maroon); margin-bottom: 4px; }
.config-price-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-text); }
.config-divider { height: 1px; background: rgba(107,15,26,0.12); margin: 20px 0; }
.config-feature { font-size: 12px; color: var(--secondary-text); display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start; }
.config-feature i { color: var(--maroon); font-size: 9px; margin-top: 4px; flex-shrink: 0; }

/* Signature card top border override */
#configurations .config-card:nth-child(1) [style*="border-color:rgba(201"] {
  border-color: rgba(107,15,26,0.35) !important;
}

/* ═══════════════════════════════════
   FLOOR PLANS
═══════════════════════════════════ */
#floorplans { background: var(--bg-main); padding: 90px 0; }
.plan-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.plan-tab {
  padding: 11px 24px; background: rgba(107,15,26,0.06); border: 1px solid rgba(107,15,26,0.18);
  color: var(--secondary-text); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'Montserrat', sans-serif;
  border-radius: 50px;
}
.plan-tab.active, .plan-tab:hover { background: var(--maroon); border-color: var(--maroon); color: var(--bg-light); }
.plan-image-wrap {
  background: rgba(255,255,255,0.5); border: 1px solid rgba(107,15,26,0.15);
  padding: 16px; border-radius: 8px;
}
.plan-image-wrap img { width: 100%; transition: opacity 0.4s; border-radius: 4px; }
.plan-info { padding: 24px 0; }
.plan-info-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(107,15,26,0.1); }
.plan-info-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-text); }
.plan-info-value { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--primary-text); }
.plan-info-value.gold { color: var(--maroon); }

/* ═══════════════════════════════════
   LOCATION
═══════════════════════════════════ */
#location { background: var(--bg-light); padding: 90px 0; }
.location-image-wrap { overflow: hidden; position: relative; border: 1px solid rgba(107,15,26,0.18); margin-bottom: 16px; border-radius: 8px; }
.location-image-wrap img { width: 100%; height: 240px; object-fit: cover; }
.location-image-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(242,235,221,0.95), transparent);
  padding: 28px 18px 14px; font-size: 12px; color: var(--secondary-text);
}
.location-map-wrap { border: 1px solid rgba(107,15,26,0.18); overflow: hidden; border-radius: 8px; }
.location-map-wrap img { width: 100%; display: block; }
.connectivity-item { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(107,15,26,0.1); }
.connectivity-item:last-child { border-bottom: none; }
.connectivity-dot { width: 8px; height: 8px; flex-shrink: 0; background: var(--maroon); border-radius: 50%; }
.connectivity-name { font-size: 13px; color: var(--secondary-text); flex: 1; }
.connectivity-time { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--maroon); font-weight: 500; }

/* ═══════════════════════════════════
   DEVELOPER
═══════════════════════════════════ */
#developer { background: var(--bg-dark); padding: 70px 0; border-top: 1px solid rgba(107,15,26,0.12); }
.dev-logo-area {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 26px 32px; border: 1px solid rgba(107,15,26,0.2);
  background: rgba(255,255,255,0.4); border-radius: 8px;
}
.dev-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; letter-spacing: 3px; color: var(--maroon); }
.dev-logo-text span { font-size: 12px; letter-spacing: 4px; display: block; color: var(--gold); font-weight: 300; margin-top: -5px; }
.dev-badge {
  padding: 5px 16px; border: 1px solid rgba(107,15,26,0.3); border-radius: 50px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--maroon); display: inline-block;
}
.rera-badge {
  background: rgba(107,15,26,0.07); border: 1px solid rgba(107,15,26,0.22); border-radius: 8px;
  padding: 12px 20px; display: inline-flex; align-items: center; gap: 12px; margin-top: 18px;
}
.rera-badge i { color: var(--maroon); font-size: 15px; }
.rera-text { font-size: 11px; color: var(--secondary-text); }
.rera-text strong { display: block; font-size: 13px; color: var(--primary-text); }

/* Developer stats boxes */
#developer .col-4 > div { background: rgba(255,255,255,0.45) !important; border: 1px solid rgba(107,15,26,0.15) !important; }
#developer .col-4 > div > div:first-child { color: var(--maroon) !important; }
#developer .col-4 > div > div:last-child { color: var(--muted-text) !important; }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
#contact { background: var(--bg-main); padding: 90px 0; }
.contact-card {
  background: rgba(255,255,255,0.55); border: 1px solid rgba(107,15,26,0.18);
  padding: 48px 44px; position: relative; border-radius: 8px;
  box-shadow: 0 8px 40px rgba(107,15,26,0.08);
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-light), var(--maroon), var(--maroon-dark));
  border-radius: 8px 8px 0 0;
}
.form-label-luxury { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.captcha-box {
  background: rgba(255,255,255,0.5); border: 1px solid rgba(107,15,26,0.18);
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
  border-radius: 8px;
}
.captcha-left { display: flex; align-items: center; gap: 12px; }
.captcha-check {
  width: 20px; height: 20px; border: 2px solid rgba(107,15,26,0.45); border-radius: 4px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--maroon); flex-shrink: 0;
}
.captcha-check.checked { background: rgba(107,15,26,0.12); }
.captcha-text { font-size: 13px; color: var(--secondary-text); }
.captcha-right { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-text); text-align: right; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon { color: var(--maroon); font-size: 17px; margin-top: 2px; }
.contact-detail-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-text); margin-bottom: 3px; }
.contact-detail-value { font-size: 14px; color: var(--primary-text); }

/* Site visit timings box */
#contact .col-lg-5 > div:last-child {
  background: rgba(255,255,255,0.45) !important;
  border: 1px solid rgba(107,15,26,0.18) !important;
}
#contact .col-lg-5 span[style*="rgba(255,255,255,0.55)"] { color: var(--muted-text) !important; }
#contact .col-lg-5 span[style*="var(--white)"] { color: var(--primary-text) !important; }
#contact [style*="border-left:3px solid var(--gold)"] {
  border-left-color: var(--maroon) !important;
  background: rgba(107,15,26,0.06) !important;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { background: var(--maroon-dark); border-top: 1px solid rgba(242,235,221,0.25); overflow: hidden; }
.footer-top-banner { position: relative; overflow: hidden; }
.footer-top-banner img { width: 100%; height: 180px; object-fit: cover; display: block; }
.footer-top-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(74,9,18,0.98), rgba(74,9,18,0.35));
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-banner img { height: 55px; object-fit: contain; filter: brightness(1.15); }
.footer-bottom-bar { padding: 18px 0 22px; border-top: 1px solid rgba(242,235,221,0.15); text-align: center; }
.footer-bottom { font-size: 11px; color: rgba(242,235,221,0.4); letter-spacing: 0.3px; }
.footer-bottom a { color: rgba(242,235,221,0.4); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--bg-light); }
.footer-disclaimer { font-size: 9.5px; color: rgba(242,235,221,0.22); line-height: 1.75; margin-top: 10px; padding: 0 16px; max-width: 900px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════
   STICKY MOBILE BAR
═══════════════════════════════════ */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; }
.sticky-bar-inner {
  display: flex; background: var(--bg-light);
  border-top: 2px solid rgba(107,15,26,0.4); box-shadow: 0 -8px 30px rgba(107,15,26,0.15);
}
.sticky-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 12px 6px 14px; text-decoration: none; transition: all 0.2s;
}
.sticky-btn:active { transform: scale(0.96); }
.sticky-btn-call { background: linear-gradient(135deg, #8B1535, #6B0F1A); color: var(--bg-light); border-right: 1px solid rgba(255,255,255,0.08); }
.sticky-btn-whatsapp { background: linear-gradient(135deg, #128C7E, #075E54); color: var(--bg-light); border-right: 1px solid rgba(255,255,255,0.08); }
.sticky-btn-enquire { background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: var(--bg-light); flex: 1.4; }
.sticky-btn-call:hover, .sticky-btn-whatsapp:hover { filter: brightness(1.12); }
.sticky-btn-enquire:hover { filter: brightness(1.08); }
.btn-icon-wrap {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.sticky-btn-call .btn-icon-wrap { background: rgba(255,255,255,0.12); }
.sticky-btn-whatsapp .btn-icon-wrap { background: rgba(255,255,255,0.15); font-size: 17px; }
.sticky-btn-enquire .btn-icon-wrap { background: rgba(242,235,221,0.18); }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(107,15,26,0.4); } 50% { box-shadow: 0 0 0 6px rgba(107,15,26,0); } }
.sticky-btn-enquire .btn-icon-wrap { animation: pulse-glow 2.5s ease infinite; }
.btn-label { font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }

/* ═══════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════ */
.scroll-top-btn {
  position: fixed; bottom: 80px; right: 20px; width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border: 1px solid rgba(242,235,221,0.45); color: var(--bg-light); font-size: 15px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 997;
  opacity: 0; transform: translateY(20px); transition: all 0.4s; text-decoration: none;
  box-shadow: 0 4px 20px rgba(107,15,26,0.3); border-radius: 50%;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--maroon-dark); color: var(--bg-light); transform: translateY(-3px); }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }

/* ═══════════════════════════════════
   LAUNCHING SOON POPUP
═══════════════════════════════════ */
.launch-popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(107,15,26,0.4);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeInOverlay 0.5s ease;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.launch-popup-overlay.hide {
  animation: fadeOutOverlay 0.4s ease forwards;
}
@keyframes fadeOutOverlay { to { opacity: 0; pointer-events: none; } }

.launch-popup {
  background: linear-gradient(145deg, var(--bg-light) 0%, var(--bg-main) 60%, var(--bg-dark) 100%);
  border: 1px solid rgba(107,15,26,0.3);
  max-width: 520px; width: 100%;
  position: relative; overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(107,15,26,0.3), 0 0 0 1px rgba(107,15,26,0.08);
  animation: slideUpPopup 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUpPopup { from { transform: translateY(40px) scale(0.95); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.launch-popup::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-light), var(--maroon), var(--maroon-dark));
}
.launch-popup-body { padding: 40px 36px 36px; }
.launch-popup-close {
  position: absolute; top: 14px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(107,15,26,0.08); border: 1px solid rgba(107,15,26,0.2);
  color: var(--secondary-text); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.launch-popup-close:hover { background: var(--maroon); color: var(--bg-light); border-color: var(--maroon); }
.launch-popup-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,15,26,0.1); border: 1px solid rgba(107,15,26,0.3);
  padding: 5px 16px; border-radius: 50px; margin-bottom: 20px;
}
.launch-popup-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--maroon);
  animation: blink 1.4s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.launch-popup-badge span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--maroon); font-weight: 700; }
.launch-popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5vw, 38px); font-weight: 300; color: var(--primary-text);
  line-height: 1.1; margin-bottom: 6px;
}
.launch-popup-title strong { color: var(--maroon); font-weight: 600; font-style: italic; }
.launch-popup-subtitle { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--secondary-text); margin-bottom: 28px; }
.launch-popup-divider { height: 1px; background: linear-gradient(90deg, rgba(107,15,26,0.3), transparent); margin-bottom: 24px; }

.launch-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.launch-stat {
  background: rgba(255,255,255,0.5); border: 1px solid rgba(107,15,26,0.15);
  padding: 14px 10px; text-align: center; border-radius: 8px;
}
.launch-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--maroon); line-height: 1; }
.launch-stat-num span { font-size: 0.55em; }
.launch-stat-label { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-text); margin-top: 4px; }

.launch-configs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.launch-config-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(107,15,26,0.15);
  padding: 14px 18px; border-radius: 8px; gap: 12px;
}
.launch-config-left { display: flex; flex-direction: column; gap: 2px; }
.launch-config-type { font-size: 13px; font-weight: 700; color: var(--primary-text); letter-spacing: 0.5px; }
.launch-config-area { font-size: 10px; color: var(--secondary-text); letter-spacing: 1px; }
.launch-config-price {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600;
  color: var(--maroon); white-space: nowrap;
}

.launch-popup-btns { display: flex; gap: 10px; }
.launch-popup-btns .btn-primary-gold { flex: 1; text-align: center; padding: 13px 20px; font-size: 10px; }
.launch-popup-btns .btn-outline-gold { text-align: center; padding: 13px 20px; font-size: 10px; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1199px) {
  .navbar-luxury { padding: 0 28px; }
  .nav-link-luxury { margin: 0 7px; }
  .lifestyle-grid { padding: 0 20px; }
}

@media (max-width: 991px) {
  .sticky-mobile-bar { display: block; }
  body { padding-bottom: 72px; }
  .navbar-luxury { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .desktop-nav { display: none !important; }

  #hero .container { padding-top: 90px; padding-bottom: 40px; }
  #hero .col-lg-6:first-child {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero-title { font-size: clamp(38px, 8vw, 58px); }
  .hero-price-badge { justify-content: center; }
  #hero .d-flex.gap-3 { justify-content: center; }
  .hero-bg-vignette {
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 50%, transparent 100%) !important;
  }
  .hero-form-card { margin-top: 40px; padding: 28px 24px; }

  #about { padding: 70px 0; }
  .about-image-block img { height: 380px; }
  #lifestyle { padding: 70px 0; }
  .lifestyle-grid { grid-template-columns: 1fr; gap: 8px; padding: 0 16px; }
  .lifestyle-item img { min-height: 220px; max-height: 420px; object-fit: cover; }
  #gallery { padding: 70px 0; }
  .gallery-slide img { height: 420px; }
  .gallery-slide-overlay { padding: 36px 24px 22px; }
  .gallery-slide-title { font-size: 22px; }
  .gallery-thumbs { gap: 4px; }
  .gallery-thumb { height: 52px; }
  #configurations { padding: 70px 0; }
  #floorplans { padding: 70px 0; }
  #location { padding: 70px 0; }
  #contact { padding: 70px 0; }
  .contact-card { padding: 32px 24px; }
  #developer { padding: 60px 0; }
  .dev-logo-area { padding: 20px 24px; }
  .footer-top-banner img { height: 140px; }
  .scroll-top-btn { bottom: 80px; right: 14px; }
}

@media (max-width: 767px) {
  .hero-price-badge { gap: 10px; padding: 10px 16px; }
  .hero-price-badge .divider { height: 28px; }
  .hero-price-badge .price-value { font-size: 22px; }
  .plan-tabs { flex-wrap: wrap; gap: 6px; }
  .plan-tab { font-size: 9px; padding: 9px 16px; letter-spacing: 1.5px; }
  .gallery-slide img { height: 340px; }
  .gallery-slide-num { font-size: 50px; top: 10px; right: 18px; }
  .gallery-thumbs { gap: 3px; }
  .gallery-thumb { height: 44px; }
  .dev-logo-area { flex-direction: column; text-align: center; gap: 14px; }
  .dev-logo-area > div:last-child { text-align: center !important; }
}

@media (max-width: 575px) {
  .navbar-luxury { padding: 0 16px; }
  .navbar-brand-text { font-size: 17px; letter-spacing: 2px; }
  .navbar-brand-sub { font-size: 7px; letter-spacing: 3px; }
  .hero-title { font-size: clamp(34px, 10vw, 48px); }
  .hero-tag { font-size: 9px; letter-spacing: 2.5px; padding: 5px 16px; }
  .hero-price-badge { flex-direction: column; gap: 8px; align-items: center; }
  .hero-price-badge .divider { display: none; }
  .btn-primary-gold, .btn-outline-gold { padding: 12px 26px; font-size: 10px; }
  .stat-item + .stat-item::before { display: none; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .lifestyle-grid { padding: 0 8px; gap: 6px; }
  .lifestyle-item img { min-height: 180px; max-height: 360px; object-fit: cover; }
  .gallery-slide img { height: 260px; }
  .gallery-btn { width: 40px; height: 40px; font-size: 14px; }
  .gallery-thumbs { display: none; }
  .contact-card { padding: 24px 18px; }
  .footer-logo-banner img { height: 44px; }
  .footer-top-banner img { height: 110px; }
}

@media (max-width: 480px) {
  .launch-popup-body { padding: 32px 22px 28px; }
  .launch-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .launch-stat-num { font-size: 20px; }
  .launch-popup-btns { flex-direction: column; }
  .launch-popup-btns .btn-outline-gold { flex: 1; }
}



/* Custom CAPTCHA Section */
.captcha-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 15px;
    padding: 10px;
    margin: 22px 0;
    border: 2px solid #e2e8f0;
    position: relative;
}

.captcha-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--secondary-color);
}

.captcha-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.captcha-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.captcha-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    background: var(--white-color);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.captcha-code {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 10px;
    padding: 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 8px;
    color: var(--primary-color);
    user-select: none;
    text-align: center;
    flex-grow: 1;
    margin-right: 20px;
    border: 1px dashed #cbd5e1;
}

.captcha-refresh-btn {
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(12, 74, 110, 0.2);
}

.captcha-refresh-btn:hover {
    transform: rotate(180deg);
    box-shadow: 0 8px 20px rgba(12, 74, 110, 0.3);
}

.captcha-input-container {
    margin-bottom: 15px;
}

.captcha-input {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    background-color: var(--white-color);
}

.captcha-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.1);
}

.captcha-message {
    font-size: 0.9rem;
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 10px;
}

.captcha-success {
    background-color: #d1fae5;
    color: #065f46;
    display: flex;
}

.captcha-error {
    background-color: #fee2e2;
    color: #991b1b;
    display: flex;
}