:root {
  --gold: #b89a5a;
  --gold-light: #d4b882;
  --gold-pale: #f5edd8;
  --charcoal: #1a1a18;
  --charcoal2: #252520;
  --ink: #2e2e2b;
  --stone: #7a7a70;
  --linen: #f8f5ef;
  --white: #ffffff;
  --border: rgba(184,154,90,0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', sans-serif;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 18px 40px;
  /* background: rgba(26,26,24,0.85); */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,154,90,0.15);
  transition: var(--transition);
}

.nav-logo img { width: 100px; }

.site-nav .navbar-nav .nav-link {
  color:#000;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  transition: var(--transition);
  padding: 0;
}

.site-nav .navbar-nav .nav-link:hover { color: var(--gold-light); }

.navbar-nav .nav-cta {
  padding: 10px 24px !important;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  letter-spacing: 1.5px;
  font-size: 11px !important;
  border-radius: 0 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

/* hamburger icon color */
.navbar-toggler { border-color: rgba(184,154,90,0.4); }
.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='rgba(184,154,90,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(26,26,24,0.65) 0%, rgba(26,26,24,0.4) 50%, rgba(26,26,24,0.8) 100%),
    url('./images/banner-image.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; right: 180px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,154,90,0.4), transparent);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 88px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}
.hero-section h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}

.hero-stats-bar {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--gold);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal2);
  margin-top: 6px;
  font-weight: 600;
}

/* ── BUTTONS ── */
.btn-primary-gold {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  border-radius: 0;
}
.btn-primary-gold:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,154,90,0.35);
}

.btn-outline-white {
  padding: 16px 40px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  border-radius: 0;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal2));
  padding: 20px 40px;
  border-bottom: 2px solid var(--gold);
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e5834a;
  animation: blink 1.5s ease infinite;
  flex-shrink: 0;
}
.urgency-gold { color: var(--gold-light); font-weight: 700; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,154,90,0.2);
}
.marquee-inner {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.marquee-item span { color: var(--gold); font-size: 16px; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::after { background: var(--gold-light); }

/* ── H2 ── */
.display-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
.display-heading em { font-style: italic; color: var(--gold); }
.display-heading.white { color: var(--white); }

/* ── ABOUT ── */
.about-section { padding: 100px 24px; background: var(--linen); }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(184,154,90,0.15), rgba(26,26,24,0.1)),
    url('./images/about-1.png') center/cover;
  position: relative;
}
.about-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  padding: 28px 32px;
  text-align: center;
  z-index: 1;
}
.about-img-badge-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1;
}
.about-img-badge-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
  margin-top: 6px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 20px;
  font-weight: 300;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.features-list li::before {
  content: '';
  width: 20px; height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--gold);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b89a5a' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── CONFIGURATIONS ── */
.configs-section { background: var(--charcoal); padding: 100px 24px; }
.configs-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 56px;
  font-weight: 300;
}
.config-card {
  background: var(--charcoal2);
  padding: 40px 36px;
  border: 1px solid rgba(184,154,90,0.12);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.config-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.config-card:hover { background: rgba(184,154,90,0.06); }
.config-card:hover::before { transform: scaleX(1); }
.config-type {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}
.config-size {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.config-unit { font-size: 13px; color: rgba(255,255,255,0.4); }
.config-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.config-detail {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.config-detail-label { color: rgba(255,255,255,0.4); }
.config-detail-value { color: rgba(255,255,255,0.85); font-weight: 500; }
.config-price {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-light);
  font-style: italic;
}

/* ── AMENITIES ── */
.amenities-section { padding: 100px 24px; background: var(--linen); }
.amenity-card {
  background: var(--linen);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(184,154,90,0.12);
  height: 100%;
}
.amenity-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.amenity-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.amenity-name { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: 0.5px; }

/* ── LOCATION ── */
.location-section { background: var(--white); padding: 100px 24px; }
.location-point {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184,154,90,0.2);
}
.location-point:last-child { border-bottom: none; }
.location-dist {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
  min-width: 80px;
  font-style: italic;
}
.location-name { font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: 0.3px; }
.location-note { font-size: 12px; color: var(--stone); margin-top: 2px; }
.location-map-placeholder {
  aspect-ratio: 1;
  background: url('https://villas64.in/assets/img/all-images/loaction-map-2.png') center/cover;
  position: relative;
  overflow: hidden;
}

/* Main carousel slide */
.gallery-slide {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 767.98px) { .gallery-slide { height: 300px; } }

/* Gradient overlay + caption */
.gallery-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.gallery-slide-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  font-style: italic;
}
.gallery-slide-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

/* Custom prev/next arrows */
.gallery-ctrl {
  width: 56px; height: 56px;
  background: rgba(26,26,24,0.75) !important;
  border: 1px solid rgba(184,154,90,0.3) !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.gallery-ctrl:hover { background: var(--gold) !important; border-color: var(--gold) !important; }
.carousel-control-prev.gallery-ctrl { left: 20px; }
.carousel-control-next.gallery-ctrl { right: 20px; }
.gallery-ctrl-icon {
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}
.gallery-ctrl:hover .gallery-ctrl-icon { color: var(--charcoal); }

/* Thumbnail strip */
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold); }

.gallery-thumb {
  flex: 0 0 calc(20% - 7px);
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: var(--transition);
}
.gallery-thumb:hover::after,
.gallery-thumb.active::after { background: rgba(0,0,0,0.1); }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb-label {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .gallery-thumb { flex: 0 0 calc(33.33% - 6px); }
}

/* ── TRUST ── */
.trust-section { padding: 100px 24px; background: var(--white); }
.trust-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-pale);
  margin-top: 48px;
}
.trust-stat { background: var(--white); padding: 32px 24px; text-align: center; }
.trust-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.trust-stat-label { font-size: 12px; color: var(--stone); margin-top: 8px; letter-spacing: 0.5px; line-height: 1.5; }
.trust-img {
  aspect-ratio: 5/4;
  background: url('./images/about-2.png') center/cover;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--linen); padding: 100px 24px; }
.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 3px solid var(--gold);
  position: relative;
  height: 100%;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--gold-pale);
  line-height: 1;
  position: absolute;
  top: 16px; left: 32px;
  font-style: italic;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  padding-top: 24px;
  position: relative;
}
.testimonial-author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gold-pale);
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--stone); margin-top: 2px; }

/* ── CONTACT ── */
.contact-section {
  background: var(--charcoal);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184,154,90,0.1);
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -150px; right: 50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(184,154,90,0.07);
  pointer-events: none;
}
.contact-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 40px;
}
.contact-perks { display: flex; flex-direction: column; gap: 16px; }
.contact-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.contact-perk-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(184,154,90,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,154,90,0.2);
  padding: 48px 44px;
  position: relative;
  z-index: 1;
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 400;
}
.form-label-custom {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-input-custom {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}
.form-input-custom::placeholder { color: rgba(255,255,255,0.3); }
.form-input-custom:focus { border-color: var(--gold); box-shadow: none; background: rgba(255,255,255,0.06); color: var(--white); }

.form-select-custom {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: var(--transition);
  border-radius: 0;
}
.form-select-custom:focus { border-color: var(--gold); box-shadow: none; }
.form-select-custom option { background: var(--charcoal); color: var(--white); }

.form-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  border-radius: 0;
}
.form-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,154,90,0.3);
}
.form-brochure-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
  text-align: center;
  text-decoration: none;
  display: block;
  border-radius: 0;
}
.form-brochure-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.form-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal2);
  padding: 20px;
  border-top: 1px solid rgba(184,154,90,0.15);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 2px;
}
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-rera { font-size: 11px; color: rgba(255,255,255,0.3); text-align: right; }
.footer-rera strong { color: var(--gold); display: block; font-size: 12px; margin-bottom: 4px; }

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.fcta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-radius: 0;
}
.fcta-call { background: #25D366; color: white; }
.fcta-call:hover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(37,211,102,0.4); color: white; }
.fcta-enquire { background: var(--gold); color: var(--charcoal); }
.fcta-enquire:hover { background: var(--gold-light); transform: scale(1.04); color: var(--charcoal); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.3; }
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 991.98px) {
  .hero-section { padding: 0 24px 260px; }
  .hero-stats-bar {
    position: relative;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    bottom: auto; right: auto;
  }
  .about-img-badge { right: 0; bottom: -16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-row: span 1; }
  .gallery-item.large .gallery-img { min-height: auto; aspect-ratio: 1; }
  .trust-stat-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .site-footer { text-align: center; }
  .footer-rera { text-align: center; }
  .urgency-bar { text-align: center; }
  .urgency-item { justify-content: center; }
}

@media (max-width: 767.98px) {
  .hero-section { padding: 0 20px 20px; min-height: auto; padding-top: 120px; }
  .hero-stats-bar { padding: 24px; gap: 16px; }
   .gallery-grid { grid-template-columns: 1fr; }
  .trust-stat-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo img {
    width: 60px;
}
}
.carousel-control-prev.gallery-ctrl { left: 20px; }
.carousel-control-next.gallery-ctrl { right: 20px; }
.carousel-control-next, .carousel-control-prev {
    top: 50% !important;
    width: 5% !important;
}
.footer-logo img{
  width: 60px;
}
.rera-number{
  font-size: 14px;
}
.location-dist span{
 font-size:16px;    
}