/* ================================================================
   style.css — M3M Crown Landing Page
   Theme: White Background · Black Text · Black Buttons
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────── */
:root {
  --dark1:        #ffffff;
  --dark2:        #f9f9f9;
  --dark3:        #f2f2f2;
  --dark4:        #ebebeb;
  --dark5:        #e0e0e0;
  --gold:         #111111;
  --gold2:        #333333;
  --gold-dim:     rgba(0, 0, 0, .05);
  --gold-border:  rgba(0, 0, 0, .15);
  --white:        #111111;
  --text:         rgba(0, 0, 0, .72);
  --muted:        rgba(0, 0, 0, .45);
  --green:        #1aad6b;
  --red:          #e63b3b;
  --blue-accent:  #2a6fc7;
  --ff-serif:     'Playfair Display', Georgia, serif;
  --ff-sans:      'Poppins', sans-serif;
  --radius:       10px;
  --transition:   .3s ease;
}

/* ── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--ff-sans);
  background: #ffffff;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.padding {
  padding: 72px 0;
}


/* ================================================================
   SECTION HEADINGS (shared)
   ================================================================ */
.section-heading {
  margin-bottom: 40px;
}

.section-heading h6 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.section-heading h2.dark {
  color: #111;
}

.section-heading p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text);
  margin-top: 12px;
  max-width: 600px;
}

/* ── Gold divider line ─────────────────────────── */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 20px;
}


/* ================================================================
   BANNER / CAROUSEL
   ================================================================ */
#banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-item picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

/* Banner Overlay */
.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  width: 90%;
}

.banner-heading {
  color: #111111;
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.15);
  margin: 0;
  line-height: 1.15;
}

.banner-subline {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.85rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.banner-divider {
  width: 55px;
  height: 2px;
  background: #111111;
  margin: 12px auto;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background-size: 40%;
  transition: border-color .3s, background-color .3s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  border-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  z-index: 20;
  filter: none;
  opacity: 1;
}

/* Scroll Down */
.scrollDown {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0.85;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scrollDown img {
  width: 32px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-9px); }
}

/* Banner responsive */
@media (max-width: 768px) {
  .banner-heading  { font-size: 2rem; letter-spacing: 3px; }
  .banner-subline  { font-size: 0.72rem; letter-spacing: 2px; }
  .banner-divider  { width: 40px; }
}

@media (max-width: 576px) {
  #banner          { height: 100svh; }
  .banner-heading  { font-size: 1.6rem; letter-spacing: 2px; }
}


/* ================================================================
   1. HERO SPLIT — Left details / Right carousel
   ================================================================ */
.sec-hero-split {
  display: flex;
  align-items: stretch;
  min-height: 90vh;
  overflow: hidden;
}

/* LEFT */
.hsp-left {
  flex: 0 0 52%;
  max-width: 52%;
  background: linear-gradient(145deg, var(--dark4) 0%, var(--dark2) 100%);
  padding: 72px 56px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hsp-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}

.hsp-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hsp-tag::before {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}

.hsp-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 8px;
}

.hsp-title em {
  font-style: italic;
  color: var(--gold);
}

.hsp-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold2);
  margin-bottom: 22px;
}

.hsp-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 480px;
}

.hsp-desc p + p {
  margin-top: 12px;
}

/* Stats row */
.hsp-stats {
  display: flex;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}

.hsp-stat {
  flex: 1;
  padding: 16px 18px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
  background: var(--gold-dim);
  transition: background var(--transition);
}

.hsp-stat:last-child {
  border-right: none;
}

.hsp-stat:hover {
  background: rgba(0, 0, 0, .08);
}

.hsp-stat-val {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}

.hsp-stat-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  display: block;
}

/* Meta grid */
.hsp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 36px;
}

.hsp-meta-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.hsp-meta-val {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-top: 3px;
}

/* Buttons — BLACK */
.hsp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  background: #111111;
  color: #ffffff;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-gold:hover {
  background: #333333;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  background: transparent;
  color: #111111;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold-border);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--gold-dim);
  border-color: #111111;
  transform: translateY(-2px);
}

/* RIGHT — carousel */
.hsp-right {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  overflow: hidden;
}

.hsp-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.hsp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  z-index: 0;
}

.hsp-slide.active {
  opacity: 1;
  z-index: 1;
}

.hsp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 7s ease-out;
}

.hsp-slide.active img {
  transform: scale(1.06);
}

.hsp-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, .5) 0%, transparent 35%);
  z-index: 2;
  pointer-events: none;
}

.hsp-carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, .7), transparent);
  z-index: 2;
  pointer-events: none;
}

.hsp-caption {
  position: absolute;
  bottom: 50px;
  left: 18px;
  right: 18px;
  z-index: 5;
  font-size: 10px;
  color: rgba(0, 0, 0, .45);
  font-style: italic;
  letter-spacing: .06em;
}

.hsp-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  list-style: none;
}

.hsp-dots li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(0, 0, 0, .35);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.hsp-dots li.active {
  background: #111111;
  transform: scale(1.3);
}

.hsp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .2);
  color: #111111;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hsp-arrow:hover {
  background: rgba(0, 0, 0, .15);
  transform: translateY(-50%) scale(1.1);
}

.hsp-arrow-prev { left: 12px; }
.hsp-arrow-next { right: 12px; }

.hsp-counter {
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 5;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, .4);
}

.hsp-counter b {
  color: #111111;
}

.hsp-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #111111;
  z-index: 5;
  width: 0%;
  transition: width linear;
}


/* ================================================================
   2. PROPERTY LISTINGS
   ================================================================ */
.sec-listings {
  background: var(--dark2);
  padding: 72px 0;
}

/* Filter strip */
.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 18px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

/* Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

/* Card */
.prop-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.prop-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.prop-card:hover .prop-card-img img {
  transform: scale(1.05);
}

.prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.badge-new  { background: #e8772e; color: #fff; }
.badge-uc   { background: #1a6fcf; color: #fff; }
.badge-rtm  { background: #1aad6b; color: #fff; }

.prop-rera {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 9px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
}

.prop-card-body {
  padding: 18px 18px 20px;
}

.prop-card-name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.prop-card-loc {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.prop-card-loc i {
  color: var(--gold);
  font-size: 11px;
}

.prop-card-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 12px;
  margin-bottom: 14px;
}

.prop-card-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.prop-meta-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.prop-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.prop-meta-val.price-highlight {
  color: var(--gold);
  font-size: 14px;
}

.prop-card-cta .btn-gold {
  font-size: 11px;
  padding: 9px 20px;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 4px;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--ff-sans);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.pg-btn:hover,
.pg-btn.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}


/* ================================================================
   3. LOCALITIES
   ================================================================ */
.sec-localities {
  background: var(--dark3);
  padding: 72px 0;
}

.localities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.loc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.loc-card:hover {
  background: var(--dark5);
  border-color: var(--gold-border);
  transform: translateX(4px);
}

.loc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 59, 59, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-card-icon svg {
  width: 20px;
  height: 20px;
}

.loc-card-text {
  flex: 1;
}

.loc-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}

.loc-card-sub {
  font-size: 11.5px;
  color: var(--muted);
}

.loc-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--transition);
}

.loc-card:hover .loc-card-arrow {
  background: #111111;
  color: #ffffff;
}

.localities-grid .loc-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 7px);
}


/* ================================================================
   4. STAGES
   ================================================================ */
.sec-stages {
  background: var(--dark2);
  padding: 72px 0;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stage-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.stage-card:hover img {
  transform: scale(1.06);
}

.stage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .20) 60%, transparent 100%);
  z-index: 1;
}

.stage-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 2;
}

.stage-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
}

.stage-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  display: block;
  margin-bottom: 8px;
}

.stage-desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .65);
  display: block;
  margin-bottom: 14px;
}

.stage-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.stage-card:hover .stage-arrow {
  background: #e0e0e0;
  transform: translateX(3px);
}


/* ================================================================
   5. CTA BANNER + SEO CONTENT
   ================================================================ */

/* CTA Banner */
.sec-cta-banner {
   background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 56px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.28;
}

.cta-text p {
  font-size: 14px;
  color: var(--text);
  margin-top: 8px;
}

/* SEO Content */
.sec-seo {
  background: var(--dark3);
  padding: 72px 0;
}

.seo-article {
  max-width: 900px;
}

.seo-article p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.seo-article h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 28px 0 10px;
}

.seo-article strong {
  color: var(--gold);
}

.seo-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 28px 0;
}


/* ================================================================
   QUICK LINKS
   ================================================================ */
.snew-quicklinks {
  background: #ffffff;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 20px 0;
}

.snew-ql-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.snew-ql-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #111111;
  white-space: nowrap;
  font-family: var(--ff-sans);
}

.snew-ql-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.snew-ql-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 30px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  background: transparent;
  transition: all var(--transition);
}

.snew-ql-pill:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: #111111;
  transform: translateY(-1px);
}


/* ================================================================
   RATINGS & REVIEWS SECTION
   ================================================================ */
.snew-ratings-section {
  background: var(--dark2);
  padding: 72px 0;
}

/* Ratings Widget */
.snew-ratings-widget {
  display: flex;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.snew-rating-left {
  flex: 0 0 280px;
  padding: 32px 28px;
  border-right: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.snew-overall-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.snew-big-score {
  font-family: var(--ff-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}

.snew-score-denom {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.snew-stars {
  display: flex;
  gap: 3px;
  margin: 2px 0;
}

.snew-star {
  width: 20px;
  height: 20px;
}

.snew-star-full polygon  { fill: #111111; stroke: none; }
.snew-star-empty polygon { fill: none; stroke: rgba(0, 0, 0, .2); stroke-width: 1.5; }

.snew-review-count {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.snew-review-count small {
  font-size: 11px;
}

/* Bar breakdown */
.snew-bar-breakdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.snew-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.snew-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, .06);
  border-radius: 4px;
  overflow: hidden;
}

.snew-bar-fill {
  height: 100%;
  background: var(--blue-accent);
  border-radius: 4px;
  width: 0%;
  transition: width 1s ease .4s;
}

.snew-bar-label {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  font-family: var(--ff-sans);
}

.snew-calc-link {
  font-size: 11.5px;
  color: var(--blue-accent);
  text-decoration: none;
  margin-top: 4px;
  transition: opacity var(--transition);
}

.snew-calc-link:hover {
  opacity: .75;
  text-decoration: underline;
}

/* Rating Right */
.snew-rating-right {
  flex: 1;
  padding: 32px 32px 28px;
}

.snew-feature-label {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.snew-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  font-size: 9px;
  color: var(--muted);
  cursor: default;
  font-style: normal;
}

.snew-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.snew-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, .02);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition);
}

.snew-feature-item:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
}

.snew-feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(42, 111, 199, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.snew-feature-icon-wrap svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue-accent);
}

.snew-feature-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.snew-feature-name {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  font-family: var(--ff-sans);
}

.snew-feature-score {
  font-size: 11px;
  color: var(--muted);
}

.snew-feature-bar {
  height: 4px;
  background: rgba(0, 0, 0, .06);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.snew-feature-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-accent), #111111);
  border-radius: 3px;
  width: 0%;
  transition: width 1s ease .5s;
}

/* Mentions */
.snew-mentions-block {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 20px;
}

.snew-mentions-title {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 12px;
}

.snew-mentions-bar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.snew-mentions-bar {
  flex: 1;
  height: 10px;
  background: rgba(0, 0, 0, .06);
  border-radius: 6px;
  overflow: hidden;
}

.snew-mentions-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #52d998);
  border-radius: 6px;
  width: 0%;
  transition: width 1.2s ease .6s;
}

.snew-mentions-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

/* Reviews Header */
.snew-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.snew-reviews-header h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #111111;
}

.snew-review-sort {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.snew-sort-btn {
  padding: 7px 16px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}

.snew-sort-btn:hover,
.snew-sort-btn.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

/* Review Cards */
.snew-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.snew-review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.snew-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .08);
}

.snew-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.snew-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  font-family: var(--ff-sans);
}

.snew-helpful-text {
  font-size: 11px;
  color: var(--muted);
}

.snew-review-body {
  flex: 1;
}

.snew-review-pos-label,
.snew-review-neg-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 5px;
  display: block;
  margin-top: 10px;
}

.snew-review-pos-label { color: var(--green); }
.snew-review-neg-label { color: var(--red); }

.snew-review-pos-text,
.snew-review-neg-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  display: inline;
}

.snew-show-more {
  font-size: 12px;
  color: var(--blue-accent);
  text-decoration: none;
  display: inline-block;
  margin-left: 4px;
}

.snew-show-more:hover {
  text-decoration: underline;
}

.snew-review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 14px;
  margin-top: auto;
}

.snew-reviewer-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, var(--gold-dim));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  font-family: var(--ff-serif);
  flex-shrink: 0;
}

.snew-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.snew-reviewer-name {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
}

.snew-reviewer-meta {
  font-size: 11px;
  color: var(--muted);
}

/* Helpful row */
.snew-review-helpful {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0 4px;
  font-size: 13px;
  color: var(--muted);
}

.snew-vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 20px;
  background: transparent;
  color: var(--muted);
  font-family: var(--ff-sans);
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.snew-vote-btn:hover {
  border-color: #111111;
  color: #111111;
}

.snew-write-review-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #111111;
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  margin-left: auto;
  transition: background var(--transition), transform var(--transition);
}

.snew-write-review-btn:hover {
  background: #333333;
  transform: translateY(-1px);
}


/* ================================================================
   LOCALITY SECTION
   ================================================================ */
.snew-locality-section {
  background: var(--dark3);
  padding: 72px 0;
}

.snew-locality-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  overflow: hidden;
}

.snew-locality-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .015);
}

.snew-locality-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.snew-locality-area {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.snew-locality-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.snew-loc-rank-badge {
  padding: 4px 10px;
  background: rgba(42, 111, 199, .08);
  border: 1px solid rgba(42, 111, 199, .2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue-accent);
}

.snew-loc-yoy-badge {
  padding: 4px 10px;
  background: rgba(26, 173, 107, .08);
  border: 1px solid rgba(26, 173, 107, .2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
}

.snew-locality-rating-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.snew-loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  font-family: var(--ff-sans);
}

.snew-loc-rating-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111111;
}

.snew-loc-review-count {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.snew-see-all-link {
  font-size: 12px;
  color: var(--blue-accent);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.snew-see-all-link:hover {
  opacity: .75;
  text-decoration: underline;
}

/* Body */
.snew-locality-body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.snew-locality-col {
  padding: 28px 28px 32px;
}

.snew-locality-divider {
  background: rgba(0, 0, 0, .08);
}

.snew-col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 18px;
}

.snew-locality-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.snew-locality-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
}

.snew-locality-col ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
}


/* ================================================================
   BANKS / HOME LOAN SECTION
   ================================================================ */
.snew-banks-section {
  background: var(--dark2);
  padding: 72px 0 56px;
}

.snew-banks-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.snew-banks-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.snew-banks-icon-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.snew-banks-icon-wrap span {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 5px;
}

.snew-banks-icon-wrap small {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  display: block;
  margin-top: 2px;
}

.snew-banks-modified {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

/* Scroll track */
.snew-banks-scroll-wrap {
  position: relative;
  padding: 20px 60px 20px 24px;
  overflow: hidden;
}

.snew-banks-track {
  display: flex;
  gap: 12px;
  transition: transform .4s ease;
}

.snew-bank-card {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.snew-bank-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.snew-bank-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.snew-bank-name {
  font-size: 11.5px;
  font-weight: 600;
  color: #111111;
  text-align: center;
  line-height: 1.3;
  font-family: var(--ff-sans);
}

.snew-bank-rate {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
}

/* Nav arrows */
.snew-banks-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--gold-border);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}

.snew-banks-nav:hover {
  background: var(--gold-dim);
  transform: translateY(-50%) scale(1.1);
}

.snew-banks-prev { left: 10px; }
.snew-banks-next { right: 10px; }

/* Home loan CTA */
.snew-homeloan-cta {
  margin-top: 18px;
}

.snew-homeloan-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px dashed var(--gold-border);
  transition: color var(--transition), border-color var(--transition);
}

.snew-homeloan-link:hover {
  color: #333333;
  border-color: #333333;
}


/* ================================================================
   RESPONSIVE — SECTIONS
   ================================================================ */
@media (max-width: 992px) {
  .sec-hero-split { flex-direction: column; }
  .hsp-left, .hsp-right { flex: none; max-width: 100%; }
  .hsp-left { padding: 56px 32px 48px; }
  .hsp-right { height: 55vw; min-height: 300px; }
  .hsp-left::after { display: none; }
  .stages-grid { grid-template-columns: 1fr 1fr; }
  .stages-grid .stage-card:last-child { grid-column: 1 / -1; height: 280px; }
  .snew-reviews-grid { grid-template-columns: 1fr 1fr; }
  .snew-ratings-widget { flex-direction: column; }
  .snew-rating-left { flex: none; border-right: none; border-bottom: 1px solid rgba(0, 0, 0, .08); }
  .snew-locality-body { grid-template-columns: 1fr; }
  .snew-locality-divider { height: 1px; width: 100%; }
}

@media (max-width: 768px) {
  .localities-grid { grid-template-columns: 1fr; }
  .localities-grid .loc-card:last-child:nth-child(odd) { max-width: 100%; grid-column: auto; }
  .stages-grid { grid-template-columns: 1fr; }
  .stages-grid .stage-card:last-child { grid-column: auto; height: 320px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .snew-reviews-grid { grid-template-columns: 1fr; }
  .snew-locality-header { flex-direction: column; }
  .snew-write-review-btn { margin-left: 0; }
  .snew-review-helpful { justify-content: flex-start; }
  .snew-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .padding { padding: 48px 0; }
  .hsp-left { padding: 48px 20px 40px; }
  .hsp-title { font-size: 2rem; }
  .hsp-stats { flex-wrap: wrap; }
  .hsp-stat { flex: 0 0 50%; border-bottom: 1px solid var(--gold-border); }
  .hsp-meta { grid-template-columns: 1fr; }
  .hsp-right { height: 70vw; }
  .hsp-arrow { display: none; }
  .properties-grid { grid-template-columns: 1fr; }
  .filter-strip { gap: 7px; }
  .snew-ql-inner { flex-direction: column; align-items: flex-start; }
  .snew-features-grid { grid-template-columns: 1fr; }
  .snew-banks-nav { display: none; }
  .snew-banks-scroll-wrap { padding: 20px 16px; overflow-x: auto; }
  .snew-banks-track { overflow-x: auto; }
  .snew-reviews-header { flex-direction: column; align-items: flex-start; }
}


/* ── Animations ─────────────────────────────────── */
.opac {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.opac.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   OVERRIDES — FAQ, FORM, SMART INVESTMENTS BANNER, HEADER
   ================================================================ */

/* ── 1. HEADER — Dark Navy (matching screenshot) ──────────────── */
.header {
  background: #2c3544 !important;
}

.header .mainHeader {
  background: transparent !important;
}

.header .navi ul li a {
  color: #ffffff !important;
}

.header .navi ul li.visitBtn a {
  background: transparent !important;
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  border-radius: 4px;
  padding: 8px 20px;
}

.header .navi ul li.visitBtn a:hover {
  background: #ffffff !important;
  color: #2c3544 !important;
}

.header .menuBtn span {
  background: #ffffff !important;
}

/* ── 2. FAQs Section — White Background, Black Text ───────────── */
.bg-grad {
  background: #ffffff !important;
}

.bg-grad .heading h4,
.bg-grad .heading h4.text-primary {
  color: #111111 !important;
  font-family: var(--ff-serif);
}

.accordion-wrapper .accordion-item {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, .1) !important;
}

.accordion-wrapper .accordion-item .accordion-header {
  background: #ffffff !important;
}

.accordion-wrapper .accordion-item .accordion-button {
  background: #ffffff !important;
  color: #111111 !important;
  font-family: var(--ff-sans);
}

.accordion-wrapper .accordion-item .accordion-button span {
  color: #111111 !important;
}

.accordion-wrapper .accordion-item .accordion-button .spanrightbtn i {
  color: #111111 !important;
}

.accordion-wrapper .accordion-item .card-body {
  background: #ffffff !important;
  color: #333333 !important;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.accordion-wrapper .accordion-item .accordion-collapse {
  background: #ffffff !important;
}

.accordion-wrapper .accordion-item .card-body b {
  color: #111111 !important;
}

/* ── 3. "Unlock the Door to Smart Investments" — BLUE ─────────── */
.animate-section9,
.w-100.padding.bg-grad.animate-section9 {
  background: linear-gradient(135deg, #1a5fb4 0%, #2a7de1 100%) !important;
}

.animate-section9 .get-in-touch-text h2,
.animate-section9 .get-in-touch-text h2.text-serif {
  color: #ffffff !important;
}

.animate-section9 .get-in-touch-text p {
  color: rgba(255, 255, 255, .8) !important;
}

.animate-section9 .get-in-touch a {
  background: #ffffff !important;
  color: #1a5fb4 !important;
  border: none !important;
  border-radius: 4px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all .3s ease;
}

.animate-section9 .get-in-touch a:hover {
  background: #e8f0fe !important;
  transform: translateY(-2px);
}

.animate-section9 .get-in-touch a i {
  color: #1a5fb4 !important;
}

/* ── 4. Schedule a Site Visit — Fix Black Inputs ──────────────── */
.hm-contactContainer,
.hm-contactContainer.bg-light {
  background: #f8f5f0 !important;
}

.hm-contactContainer .heading h2 {
  color: #111111 !important;
  font-family: var(--ff-serif);
}

.hm-contactContainer .form-control {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0, 0, 0, .15) !important;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--ff-sans);
  font-size: 14px;
}

.hm-contactContainer .form-control::placeholder {
  color: rgba(0, 0, 0, .4) !important;
}

.hm-contactContainer .form-control:focus {
  border-color: #1a5fb4 !important;
  box-shadow: 0 0 0 3px rgba(26, 95, 180, .12) !important;
  outline: none;
}

.hm-contactContainer textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.hm-contactContainer .button,
.hm-contactContainer button[type="submit"] {
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px;
  padding: 12px 32px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.hm-contactContainer .button:hover,
.hm-contactContainer button[type="submit"]:hover {
  background: #333333 !important;
  transform: translateY(-2px);
}

/* ── Modal Form Fix ───────────────────────────────────────────── */
.modal-content {
  background: #ffffff !important;
  border: none;
  border-radius: 12px;
}

.modal-content .modal-body {
  background: #ffffff !important;
  color: #111111 !important;
  border-radius: 12px;
}

.modal-content .modal-title {
  color: #111111 !important;
}

.modal-content .form-control {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0, 0, 0, .15) !important;
}

.modal-content .form-control::placeholder {
  color: rgba(0, 0, 0, .4) !important;
}

.modal-content label {
  color: #333333 !important;
}

.modal-content .button,
.modal-content button[type="submit"] {
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px;
  padding: 12px 32px;
  font-weight: 600;
  cursor: pointer;
}

.modal-content .close {
  color: #111111 !important;
  opacity: .6;
}

/* ── Footer Enquiry Buttons (Mobile) ──────────────────────────── */
.footer-enquiryBtn a {
  background: #111111 !important;
  color: #ffffff !important;
}