/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* ================= GLOBAL ================= */
body {
  font-family: "Inter", sans-serif;
  background: #f9f7f0;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ================= COMMON ================= */
.container {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}

.section { padding: 90px 0; }

@media(max-width:768px){
  .section { padding: 65px 0; }
}

.light { background: #f9f7f0; }
.dark { background: #111; color: #fff; }

/* ================= HEADINGS ================= */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.4px;
}

h2 { font-size: 36px; margin-bottom: 25px; }

p { font-size: 16px; color: #444; }
.dark p { color: #ddd; }

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  display: block;
}

/* NAV â€“ SOBHA STYLE */

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-family: "Playfair Display", serif;   /* ðŸ‘ˆ SOBHA FONT */
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  position: relative;
}

/* Premium underline */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1.5px;
  background: #8e5d25;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* /////////////calling number/////////////*/

.call-btn {
  background: #8e5d25;          /* Sobha gold */
  color: #ffffff;               /* white text */
     padding: 12px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-btn i {
  color: #ffffff;
}

.call-btn:hover {
  background: #6f461b;          /* darker gold */
  color: #ffffff;
}


/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 72px;
}

.hero-slide {
  height: 100vh;
  background-size: cover !important;
  background-position: center !important;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

/* ================= HERO CARD ================= */
.hero-card {
  background: rgba(0,0,0,.55);
  padding: 36px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  max-width: 520px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.hero-card h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.hero-tag {
  display: inline-block;
  background: #8e5d25;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

/* POINTS */
.hero-points {
  list-style: none;
  margin-bottom: 22px;
}

.hero-points li {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.hero-points i { color: #f3c64f; }

/* PRICE */
.hero-price {
  background: #fff;
  color: #000;
  padding: 10px 16px;
  display: inline-block;
  margin-bottom: 22px;
}

.hero-price strong {
  background: #8e5d25;
  color: #fff;
  padding: 6px 12px;
  margin-left: 6px;
}

/* CTA */
.primary-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #8e5d25;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
      border-radius: 27px;
}

/* ================= LAYOUT ================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ================= IMAGE BLOCKS ================= */
.image-box,
.map-box {
  height: 436px;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 6px;
}

/* ================= GALLERY â€“ AMENITIES STYLE ================= */

.gallery-section {
  background: #fbf7ef;
  padding: 70px 0;
  text-align: center;
}

/* Heading */
.gallery-heading h5 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #000;
}

.gallery-heading span {
  display: block;
  width: 50px;
  height: 3px;
  background: #333;
  margin: 14px auto 22px;
}

.gallery-heading h2 {
  font-size: 34px;
  color: #6f461b;
  margin-bottom: 60px;
}

/* GRID â€“ 5 IN A ROW */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* CARD */
.gallery-img {
  overflow: hidden;
  border-radius: 4px;
}

/* IMAGE */
.gallery-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-img:hover img {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-heading h2 {
    font-size: 26px;
  }
  .gallery-img img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-img img {
    height: 240px;
  }
}


/* ================= AMENITIES â€“ VISIBILITY FIX ================= */

.amenities-section {
  background: #fbf7ef;
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
}

/* Heading */
.amenities-heading h5 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #000;
}

.amenities-heading span {
  display: block;
  width: 50px;
  height: 3px;
  background: #333;
  margin: 14px auto 22px;
}

.amenities-heading h2 {
  font-size: 34px;
  color: #6f461b;
  margin-bottom: 50px;
}

/* GRID â€“ FORCE STRAIGHT ROW */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* CARD */
.amenity-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

/* IMAGE â€“ FIXED HEIGHT (NO MASONRY) */
.amenity-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.6s ease;
}

.amenity-img:hover img {
  transform: scale(1.05);
}

/* OPTIONAL LABEL (if text exists) */
.amenity-img span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 2;
}

/* BUTTON */
.amenities-btn {
  margin-top: 50px;
}

.amenities-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8e5d25;
  color: #fff;
  padding: 14px 34px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.amenities-btn a:hover {
  background: #6f461b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .amenity-img img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-heading h2 {
    font-size: 26px;
  }
  .amenity-img img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .amenity-img img {
    height: 230px;
  }
}

/* ================= TABLE ================= */
/* ================= PRICE LIST â€“ PREMIUM ================= */

#price {
  background: #f9f7f0;
}

#price h2 {
  text-align: center;
  color: #6f461b;
  margin-bottom: 40px;
}

/* TABLE */
#price table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* HEADER */
#price th {
  background: #8e5d25;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 16px;
}

/* BODY */
#price td {
  padding: 18px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

/* LAST ROW BORDER FIX */
#price tr:last-child td {
  border-bottom: none;
}

/* PRICE HIGHLIGHT */
#price td:last-child {
  font-weight: 600;
  color: #8e5d25;
  font-size: 16px;
  background: #faf6ee;
}

/* ROW HOVER */
#price tbody tr:hover {
  background: #fbf7ef;
}

/* ================= MOBILE â€“ CARD STYLE ================= */
@media (max-width: 768px) {

  #price table,
  #price thead,
  #price tbody,
  #price th,
  #price td,
  #price tr {
    display: block;
  }

  #price thead {
    display: none;
  }

  #price tr {
    background: #fff;
    margin-bottom: 18px;
    border-radius: 6px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
    padding: 14px;
  }

  #price td {
    text-align: right;
    padding: 10px 0;
    border: none;
    font-size: 14px;
  }

  #price td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: #000;
  }

  #price td:last-child {
    background: none;
    font-size: 15px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 18px;
  font-size: 13px;
}

/* ================= PREMIUM POPUP ================= */
#popupFormgolfhills {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 9999;
}
#popupFormgolfhills.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup-wrapper {
  display: flex;
  max-width: 900px;
  width: 95%;
  margin: 5% auto;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

/* LEFT IMAGE */
.popup-image {
  width: 55%;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT FORM */
.popup-box {
  width: 45%;
  padding: 40px 30px;
  position: relative;
}

.popup-logo {
  width: 120px;
  margin-bottom: 20px;
}

.popup-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.popup-box button {
  width: 100%;
  /*background: #d6a20f;*/
  /*color: #fff;*/
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.popup-box button:hover {
  background: #b98c0c;
}

/* CONSENT */
.consent {
  font-size: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: #444;
  line-height: 1.5;
}
.consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #d6a20f; /* gold theme */
  cursor: pointer;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){
  .popup-wrapper {
    flex-direction: column;
  }
  .popup-image {
    display: none;
  }
  .popup-box {
    width: 100%;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle { 
    display: block; 
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .nav a {
    padding: 16px 22px;
    border-bottom: 1px solid #eee;
  }

  .hero-content { 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 92%;
  }

  .hero-card h1 { 
    font-size: 28px; 
  }
}


/* ================= LOCATION ADVANTAGE ================= */
.loc-heading {
  text-align: center;
  margin-bottom: 70px;
}

.loc-heading h5 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #000;
}

.loc-heading span {
  display: block;
  width: 60px;
  height: 3px;
  background: #333;
  margin: 14px auto 24px;
}

.loc-heading h2 {
  font-size: 34px;
  color: #6f461b;
}

/* WRAPPER */
.loc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT LIST */
.loc-list {
  position: relative;
}

.loc-item {
  padding-left: 40px;
  margin-bottom: 40px;
  position: relative;
}

.loc-item .line {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: -40px;
  width: 2px;
  background: #333;
}

.loc-item:last-child .line {
  bottom: 0;
}

.loc-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.loc-item p {
  font-size: 14px;
  color: #444;
}

/* MAP */
.loc-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* MOBILE */
@media(max-width:768px){
  .loc-wrapper {
    grid-template-columns: 1fr;
  }

  .loc-heading h2 {
    font-size: 26px;
  }
}

/* ===================================================
   FINAL REFINEMENTS â€“ ABOUT DEVELOPER & DISCLAIMER
   (SAFE UPDATE â€“ NO BREAKING CHANGES)
=================================================== */

/* Section spacing refinement */
.about-dev.section {
  padding: 80px 0;
}

/* Background consistency with site */
.about-dev {
  background: #f9f7f0;
  text-align: center;
}

/* Heading hierarchy fix */
.about-title {
  font-size: 36px;
  letter-spacing: 1px;
  color: #6f461b;
  margin-bottom: 30px;
}

/* Main description readability */
.about-text {
  max-width: 920px;
  margin: 0 auto 30px;
  font-size: 14px;
  line-height: 1.9;
  color: #000;
}

/* Meta text (RERA / Contact) */
.about-meta {
  font-size: 16px;
  margin: 10px 0;
  color: #000;
}

/* Divider â€“ premium brochure style */
.divider {
  width: 70%;
  height: 1px;
  background: #e2d6b8;
  margin: 60px auto;
}

/* Disclaimer readability fix */
.disclaimer-text {
  max-width: 960px;
  margin: 0 auto;
  font-size: 8px;
  line-height: 1.8;
  color: #444;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 15px;
  }
}

/* SAFE GLOBAL TRANSITION (NO TRANSFORM) */
a, button {
  transition: color .25s ease,
              background-color .25s ease,
              box-shadow .35s ease;
}



/* ========== PREMIUM MOBILE CTA BAR ========== */

.mobile-cta-premium {
  position: fixed;
  bottom: 16px;
  left: 50%;
    transform: translateX(-50%) translateY(0);
  transition: transform 0.4s ease;
  width: calc(100% - 32px);
  max-width: 420px;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  z-index: 9999;
}

/* SIDE BUTTONS */
.mobile-cta-premium .cta-side {
  flex: 1;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 600;
}

.mobile-cta-premium .cta-side i {
  font-size: 18px;
}

/* CALL */
.mobile-cta-premium .call i {
  color: #8e5d25;
}

/* WHATSAPP */
.mobile-cta-premium .whatsapp i {
  color: #1ebe5d;
}

/* CENTER ENQUIRY (HIGHLIGHT) */
.mobile-cta-premium .cta-center {
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, #8e5d25, #caa252);
  border-radius: 50%;
  margin-top: -42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(142,93,37,0.55);
}

.mobile-cta-premium .cta-center i {
  font-size: 20px;
  margin-bottom: 2px;
}

/* TAP FEEDBACK */
.mobile-cta-premium a:active {
  transform: scale(0.94);
}

/* SHOW ONLY MOBILE */
@media (max-width: 768px) {
  .mobile-cta-premium {
    display: flex;
  }

  body {
    padding-bottom: 110px;
  }
}

/* ===== ENQUIRE PULSE â€“ SAFE & PREMIUM ===== */

.mobile-cta-premium .cta-center {
  position: relative;
  z-index: 2;
  transform: translateZ(0); /* GPU isolate */
}


/* OUTER PULSE RING */
.mobile-cta-premium .cta-center::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(202,162,82,0.45) 0%,
    rgba(202,162,82,0.25) 35%,
    rgba(202,162,82,0) 70%
  );
  animation: enquirePulse 2.6s infinite;
  z-index: -1;
}

/* KEYFRAMES */
@keyframes enquirePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
/* ================= PROJECT HIGHLIGHTS ================= */

.highlights-section {
  background: #f9f7f0;
}

.highlights-heading {
  text-align: center;
  margin-bottom: 60px;
}

.highlights-heading h5 {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
}

.highlights-heading span {
  display: block;
  width: 70px;
  height: 3px;
  background: #333;
  margin: 14px auto 0;
}

/* WRAPPER */
.highlights-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.highlights-image {
  background: #e5e5e5;
  padding: 12px;
  border-radius: 6px;
}

.highlights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* LIST */
.highlights-list {
  list-style: none;
}

.highlights-list li {
  position: relative;
  padding-left: 42px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #ddd;
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

.highlights-list li span {
  color: #555;
  font-weight: 400;
}

.highlights-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #9c9c9c;
}

/* BUTTON */
.highlights-btn {
  text-align: center;
  margin-top: 60px;
}

.highlights-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /*background: #d6a20f;*/
  /*color: #fff;*/
  padding: 14px 38px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
}

.highlights-btn a:hover {
  background: #b98c0c;
}

/* MOBILE */
@media (max-width: 768px) {
  .highlights-wrapper {
    grid-template-columns: 1fr;
  }

  .highlights-list li {
    font-size: 15px;
  }
}
/* ================= FLOOR PLAN â€“ PREMIUM (REFINED) ================= */

.floorplan-section {
  background: #fbf7ef;
  padding: 95px 0;
}

.floorplan-heading {
  text-align: center;
  margin-bottom: 60px;
}

.floorplan-heading h2 {
  font-size: 34px;
  color: #6f461b;
  font-family: "Playfair Display", serif;
  letter-spacing: 1.2px;
}

/* GRID */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* tighter spacing */
}

/* CARD â€“ COMPACT */
.floorplan-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #d6c7a2;
  box-shadow: 
    0 12px 28px rgba(0,0,0,0.12),
    inset 0 0 0 rgba(255,255,255,0);
  transition: 
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s cubic-bezier(.2,.8,.2,1);
}


.floorplan-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.22),
    0 0 0 1px rgba(214,199,162,0.8);
}


/* IMAGE â€“ STRONGER BLUR (INTENTIONAL) */
.floorplan-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;              /* ðŸ‘ˆ image radius same */
  filter: blur(5px) brightness(0.9);
  transform: scale(1.12);
  transition: filter .45s ease, transform .45s ease;
}


.floorplan-card:hover img {
  filter: blur(3.5px) brightness(1);
  transform: scale(1.16);
}

.floorplan-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #b8890b, #e1b12c);
    color: #fff;
    padding: 5px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 43px;
    box-shadow: 0 12px 26px rgba(184, 137, 11, 0.45);
    z-index: 2;
    transition: transform .3s ease, box-shadow .3s ease;
}
.floorplan-card:hover .floorplan-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

/* LABEL â€“ MORE CLASSY FONT FEEL */
.floorplan-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #000, #1b1b1b);
  color: #fff;
  text-align: center;
  padding: 13px;
  font-size: 16px;
  letter-spacing: 1.4px;
  font-family: "Playfair Display", serif;
  border-radius: 0 0 14px 14px;     /* ðŸ‘ˆ classy bottom curve */
}


/* MOBILE */
@media (max-width: 768px) {
  .floorplan-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .floorplan-card img {
    height: 260px;
    filter: blur(3px) brightness(0.9);
  }

  .floorplan-btn {
    padding: 10px 26px;
    font-size: 11px;
  }
}


  .floorplan-label {
    font-size: 15px;
  }

/* ===== ACCESSIBILITY FIX – HEADING CONTRAST ===== */

/* All section main headings */
.section h2 {
  color: #6f461b; /* dark gold-brown (WCAG PASS) */
}

/* Section small labels */
.section h5 {
  color: #111;
}

/* ===== FIX: DOWNLOAD BROCHURE CONTRAST (WCAG PASS) ===== */
.js-popup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #6f461b;   /* dark brown */
  color: #ffffff;        /* white text */
  padding: 14px 34px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
}

.js-popup:hover {
  background: #4f3214;
  color: #ffffff;
}

