:root {
  --gold: #c49a2e;
  --gold-light: #d4ae4e;
  --gold-pale: #f0e0b0;
  --navy: #0b2440;
  --navy-mid: #163558;
  --navy-light: #1e4570;
  --off-white: #f8f5ef;
  --cream: #f2ebd9;
  --dark: #0a1628;
  --text-muted: #6c757d;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── Typography ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}
.gold-divider.centered {
  margin: 1rem auto;
}

/* ── Sections ── */
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 70px 0;
}
.bg-navy {
  background-color: var(--navy);
}
.bg-cream {
  background-color: var(--cream);
}
.section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 154, 46, 0.25),
    transparent
  );
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 36, 64, 0.97) 0%,
    rgba(11, 36, 64, 0.88) 45%,
    rgba(11, 36, 64, 0.55) 100%
  );
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 154, 46, 0.12);
  border: 1px solid rgba(196, 154, 46, 0.35);
  border-radius: 2px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-title span {
  font-weight: 700;
  color: var(--gold-light);
  font-style: italic;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(196, 154, 46, 0.45);
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 154, 46, 0.07);
}

.hero-img-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 600px;
  background: linear-gradient(160deg, #1a3a5c 0%, #0d2440 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.hero-img-placeholder {
  color: rgba(196, 154, 46, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}
.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 36, 64, 0.85) 0%,
    transparent 100%
  );
  padding: 28px 22px 22px;
  z-index: 2;
}
.hero-floors-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(196, 154, 46, 0.15);
  padding: 28px 0;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.hero-stat-sep {
  width: 1px;
  background: rgba(196, 154, 46, 0.18);
  height: 40px;
  align-self: center;
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
}
.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/4;
  background: linear-gradient(135deg, #e8dcc8 0%, #d5c9b5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 420px; */
}
.about-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  z-index: 2;
}
.about-meta-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 25px 24px;
  color: #fff;
  height: 100%;
}
.about-meta-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-meta-value {
  /* font-family: var(--font-display); */
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

/* ── HIGHLIGHTS ── */
#highlights {
  background: var(--navy);
}
.highlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 154, 46, 0.14);
  border-radius: 4px;
  padding: 32px 26px;
  height: 100%;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.highlight-card:hover {
  border-color: rgba(196, 154, 46, 0.42);
  background: rgba(196, 154, 46, 0.05);
  transform: translateY(-4px);
}
.highlight-icon {
  width: 44px;
  height: 44px;
  background: rgba(196, 154, 46, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  color: var(--gold);
}
.highlight-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.highlight-body {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.78;
}

/* ── AMENITIES ── */
#amenities {
  background: var(--cream);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 1px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(11, 36, 64, 0.07);
}
.amenity-item {
  background: #fff;
  padding: 28px 18px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}
.amenity-item:hover {
  background: var(--navy);
  transform: scale(1.02);
}
.amenity-item:hover .amenity-icon {
  color: var(--gold);
  background: rgba(196, 154, 46, 0.12);
}
.amenity-item:hover .amenity-label {
  color: #fff;
}
.amenity-icon {
  width: 50px;
  height: 50px;
  background: rgba(11, 36, 64, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 auto 12px;
  transition: color 0.3s, background 0.3s;
}
.amenity-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

/* .amenity-img-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 240px;
  background: #c0b8a8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.amenity-img-placeholder {
  color: rgba(11, 36, 64, 0.25);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 1;
}
.amenity-img-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(11, 36, 64, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  border-left: 2px solid var(--gold);
  z-index: 2;
} */

/* ── AMENITY SWIPER NEW STYLE ── */
.amenity-swiper-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(11, 36, 64, 0.08);
  padding: 32px 32px 28px;
}

.amenitySwiper {
  overflow: hidden;
}

/* White card */
.amenity-card-new {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.amenity-card-new:hover {
  box-shadow: 0 6px 24px rgba(11, 36, 64, 0.12);
  transform: translateY(-3px);
}

/* Image area */
.amenity-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0ece4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.amenity-card-new:hover .amenity-card-img img {
  transform: scale(1.05);
}

/* Label below image */
.amenity-card-label {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
}

/* Controls row: ← dots → */
.amenity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

/* Arrow buttons */
.amenity-btn-prev,
.amenity-btn-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #0b2440; /* red arrows like the reference */
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.amenity-btn-prev:hover {
  color: var(--gold);
  transform: translateX(-2px);
}
.amenity-btn-next:hover {
  color: var(--gold);
  transform: translateX(2px);
}

/* Pagination dots */
.amenity-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  width: auto !important;
}
.amenity-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  margin: 0 !important;
}
.amenity-pagination .swiper-pagination-bullet-active {
  background: var(--navy);
  width: 22px;
  border-radius: 4px;
}

/* ── CONFIGURATION ── */
#configuration {
  background: var(--off-white);
}
.config-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(11, 36, 64, 0.07);
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}
.config-card:hover {
  box-shadow: 0 8px 40px rgba(11, 36, 64, 0.13);
  transform: translateY(-4px);
}
.config-card-head {
  background: var(--navy);
  padding: 22px 24px 18px;
  position: relative;
}
.config-card-head.gold-head {
  background: var(--gold);
}
.config-unit-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  float: right;
}
.config-type-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.config-type-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.config-card-body {
  padding: 22px 24px;
}
.config-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(11, 36, 64, 0.06);
  font-size: 0.83rem;
}
.config-row:last-child {
  border-bottom: none;
}
.config-key {
  color: var(--text-muted);
  font-weight: 400;
}
.config-val {
  color: var(--navy);
  font-weight: 600;
}

.floor-plan-card {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 18px rgba(11, 36, 64, 0.07);
}
.floor-plan-img {
  min-height: 260px;
  background: #f0ece4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.floor-plan-img img {
  width: 100%;
  display: block;
}
.floor-plan-label {
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 18px;
  text-align: center;
}
.floor-plan-label span {
  color: var(--gold);
  margin-right: 6px;
}

/* ── GALLERY ── */
#gallery {
  background: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.gitem {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gitem img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gitem:hover img {
  transform: scale(1.06);
}
.gi1 {
  grid-column: span 7;
  min-height: 370px;
}
.gi2 {
  grid-column: span 5;
  min-height: 370px;
}
.gi3,
.gi4,
.gi5 {
  grid-column: span 4;
  min-height: 270px;
}
.g-placeholder {
  color: rgba(196, 154, 46, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 1;
  text-align: center;
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 36, 64, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gitem:hover .g-overlay {
  opacity: 1;
}
.g-cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
  border-left: 2px solid var(--gold);
  padding-left: 8px;
  z-index: 2;
}
.gitem:hover .g-cap {
  opacity: 1;
}
@media (max-width: 767px) {
  .gi1,
  .gi2,
  .gi3,
  .gi4,
  .gi5 {
    grid-column: span 12;
    min-height: 220px;
  }
}

/* ── LOCATION ── */
#location {
  background: var(--off-white);
}
.loc-cat-title {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 154, 46, 0.2);
  padding-bottom: 8px;
  /* margin-bottom: 10px; */
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.loc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11, 36, 64, 0.06);
  font-size: 0.84rem;
}
.loc-row:last-child {
  border-bottom: none;
}
.loc-name {
  color: var(--dark);
  font-weight: 400;
}
.loc-dist {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
  margin-left: 0.8rem;
}
.loc-map {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e2d40 0%, #0d2440 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loc-map-ph {
  color: rgba(196, 154, 46, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 1;
}
.loc-pill {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 36, 64, 0.9);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 30px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(196, 154, 46, 0.3);
  z-index: 2;
}
.loc-pill i {
  color: var(--gold);
}

/* ── DEVELOPER ── */
#developer {
  background: var(--navy);
}
.dev-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 154, 46, 0.14);
  border-radius: 4px;
  padding: 34px 22px;
  text-align: center;
}
.dev-stat-box.gold {
  background: var(--gold);
  border-color: var(--gold);
}
.dev-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.dev-stat-box.gold .dev-stat-num {
  color: #fff;
}
.dev-stat-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 5px;
}
.dev-stat-box.gold .dev-stat-lbl {
  color: rgba(255, 255, 255, 0.75);
}
.dev-info-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 11px 0;
}
.dev-info-row:last-child {
  border-bottom: none;
}
.dev-info-key {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.dev-info-val {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ── RERA ── */
#rera {
  background: var(--dark);
  border-top: 1px solid rgba(196, 154, 46, 0.14);
}

.rera-section {
  padding: 60px 0;
  background: #1a6ba0; /* your bg-blue */
}

.rera-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ── Stats grid (left column) ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid #e4e8ee;
}

.stat-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px;
  border-bottom: 1px dashed #c8d4e0;
}

.stat-cell:nth-child(odd) {
  border-right: 1px dashed #c8d4e0;
}
.stat-cell:nth-child(3),
.stat-cell:nth-child(4) {
  border-bottom: none;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f0f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #274c77;
  font-size: 15px;
  margin-top: 2px;
}

.stat-label {
  font-size: 11px;
  color: #6b7a8d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
}

.stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a3a;
  margin: 0;
  line-height: 1.4;
}

/* ── Right column ── */
.rera-right {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.project-name {
  font-size: 28px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0 0 8px;
}

.project-addr {
  font-size: 14px;
  color: #4a5a6a;
  line-height: 1.65;
  margin: 0;
}

/* ── RERA badge ── */
.rera-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f5f8fb;
  border: 1px solid #d8e4f0;
  border-radius: 10px;
  padding: 16px 18px;
}

.rera-qr {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.rera-num {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  margin: 0 0 6px;
}

.rera-desc {
  font-size: 12px;
  color: #6b7a8d;
  line-height: 1.6;
  margin: 0;
}

.rera-link {
  color: #1a6ba0;
  word-break: break-all;
}
/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta a {
  background: var(--gold);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 28px rgba(196, 154, 46, 0.35);
  transition: background 0.2s, transform 0.2s;
}
.sticky-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
#footer {
  background: var(--dark);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}
.footer-addr {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* .hero-stats .container-xl .row .col {
   
  } */
}
@media (max-width: 767px) {
  .rera-box {
    padding: 24px 18px;
  }
  .rera-right {
    padding: 24px 20px;
  }
}


.topBar .container .row{
  @media(max-width: 400px){
    max-width: 349px !important;
  }
}