/* ============================================================
   CLIMB INFRA HOMES ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Bootstrap 5.3.3 (final build)
   ============================================================ */

:root {
  --navy-950: #0A2036;
  --ink: #14212F;
  --ink-soft: #4A5A68;
  --paper: #FAF9F6;
  --accent: #E45A2B;
  --accent-dark: #C64A1F;
  --gold: #C9A24B;
  --whatsapp: #22C35E;
  --line: #E7E3DA;

  /* Compact header ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â reduced from the earlier 108px draft */
  --header-h: 74px;
  --header-h-scrolled: 62px;
  --topbar-h: 38px;
  --hairline-h: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  padding-top: calc(var(--header-h) + var(--topbar-h) + var(--hairline-h));
}

.font-display { font-family: 'Sora', 'Segoe UI', sans-serif; }
a { text-decoration: none; }

/* ============================================================
   GOLD HAIRLINE
   ============================================================ */
.gold-hairline {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hairline-h);
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
  z-index: 1061;
}

/* ============================================================
   TOPBAR
   ============================================================ */
#topbar {
  position: fixed;
  top: var(--hairline-h);
  left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  z-index: 1060;
  transition: transform .3s ease;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  transition: color .2s ease;
}
.topbar-link:hover { color: var(--gold); }
.topbar-link svg { width: 13px; height: 13px; opacity: .8; flex-shrink: 0; }

.topbar-divider { border-color: rgba(255,255,255,.1) !important; }

.topbar-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
}
.topbar-rating svg { width: 13px; height: 13px; color: var(--gold); }
.topbar-rating:hover { color: var(--gold); }

.topbar-social {
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  transition: all .25s ease;
}
.topbar-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
  transform: translateY(-1px);
}
.topbar-social svg { width: 12px; height: 12px; }

/* ============================================================
   HEADER / NAVBAR ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â compact height
   ============================================================ */
.site-header {
  top: calc(var(--hairline-h) + var(--topbar-h)) !important;
  height: var(--header-h);
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  transition: height .3s ease, box-shadow .3s ease, top .3s ease;
  z-index: 1050;
  padding: 0;
}

.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  box-shadow: 0 8px 24px rgba(10,32,54,0.1);
}

.site-header.topbar-hidden { top: var(--hairline-h) !important; }

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: height .3s ease;
}
.site-header.is-scrolled .brand-logo {height: 40px;}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-950);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand-tag {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Primary nav links */
.main-nav .nav-link {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--accent);
  background: rgba(228,90,43,0.06);
}
.main-nav .nav-link.simple::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.main-nav .nav-link.simple:hover::after,
.main-nav .nav-link.simple.active::after { transform: scaleX(1); }

/* ============================================================
   HOVER DROPDOWN
   (plain CSS positioning ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â not dependent on Bootstrap's JS
   toggle/Popper, so hover-to-open works reliably on desktop
   while click still works for touch, via the JS fallback below)
   ============================================================ */
.nav-item.dropdown { position: relative; }

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translate(-50%, 8px);
  margin: 0;
  min-width: 240px;
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(10,32,54,0.16);
  padding: 8px;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.dropdown-toggle::after { margin-left: 6px; vertical-align: 1px; }

.premium-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.premium-dropdown .dropdown-item:hover,
.premium-dropdown .dropdown-item:focus {
  background: var(--paper);
  color: var(--accent);
  padding-left: 16px;
}
.premium-dropdown .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Header action buttons */
.btn-icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  transition: all .22s ease;
}
.btn-icon-circle:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-icon-circle svg { width: 16px; height: 16px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 24px;
  box-shadow: 0 10px 22px rgba(34,195,94,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(34,195,94,.36);
}
.btn-whatsapp svg { width: 16px; height: 16px; }

@media (max-width: 767.98px) {
  .btn-whatsapp span { display: none; }
  .btn-whatsapp { padding: 10px; border-radius: 50%; width: 40px; height: 40px; }
}

.navbar-toggler {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--line) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   OFFCANVAS MOBILE MENU (Bootstrap native)
   ============================================================ */
.offcanvas { z-index: 1075 !important; }
.offcanvas-backdrop { z-index: 1070 !important; }
.offcanvas-header { border-bottom: 1px solid var(--line); }

.mobile-nav-link {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.accordion-item { border: none; border-bottom: 1px solid var(--line); }
.accordion-button {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 14px 4px;
  box-shadow: none !important;
  background: transparent !important;
}
.accordion-button::after { width: 11px; height: 11px; background-size: 11px; }
.accordion-body { padding: 4px 4px 10px 12px; }
.accordion-body a {
  display: block;
  padding: 9px 4px 9px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-left: 2px solid var(--line);
}
.accordion-body a:hover { color: var(--accent); border-left-color: var(--accent); }
/* ============================================================
   HERO SECTION ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Climb Infra Homes
   Depends on the color/font variables already set in custom.css
   (--navy-950, --accent, --gold, --ink, --ink-soft, --line, --paper)
   ============================================================ */

.text-gold-accent { color: var(--gold); }

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950); /* shows while hero-bg.jpg loads / as fallback */
}

/* Background photo ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â swap the path once the real project photo is ready */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/Dwarka-Expressway.png');
  background-size: cover;
  background-position: center;
}

/* Dark gradient so white text stays readable over any photo */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,32,54,.88) 0%, rgba(10,32,54,.72) 45%, rgba(10,32,54,.92) 100%);
}

.hero-inner {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 6.5rem;
}
@media (min-width: 992px) {
  .hero-inner { padding-top: 5rem; padding-bottom: 8.5rem; }
}

.hero-content { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,75,.35);
  border-radius: 999px;
  padding: 6px 15px;
  background: rgba(201,162,75,.08);
  backdrop-filter: blur(2px);
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
@media (min-width: 576px) { .hero-title { font-size: 46px; } }
@media (min-width: 992px) { .hero-title { font-size: 58px; line-height: 1.06; } }

.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0 0;
}
@media (min-width: 576px) { .hero-subtitle { font-size: 15.5px; } }

.hero-skyline {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  height: 54px;
  color: var(--paper);
  z-index: 2;
}
@media (min-width: 576px) { .hero-skyline { height: 78px; } }

/* ============================================================
   SEARCH CARD ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â single search bar, no category tabs
   ============================================================ */
.search-card {
  border-radius: 16px;
  box-shadow: 0 28px 56px rgba(0,0,0,.4);
  max-width: 720px;
  margin-top: 2.25rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) { .search-card { margin-top: 3rem; } }

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 16px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid transparent;
  transition: border-color .2s ease;
}
.search-input-wrap:focus-within { border-color: rgba(228,90,43,.35); }
.search-input-wrap svg { width: 19px; height: 19px; color: var(--ink-soft); flex-shrink: 0; }

.search-suggest-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10,32,54,.18);
  overflow: hidden;
  z-index: 50;
  text-align: left;
  max-height: 360px;
  overflow-y: auto;
}
.search-suggest-dropdown.is-open { display: block; }
.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink, #0A2036);
  border-bottom: 1px solid rgba(10,32,54,.06);
}
.search-suggest-item:last-child { border-bottom: none; }
.search-suggest-item:hover { background: var(--paper); }
.search-suggest-item img { width: 48px; height: 40px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.search-suggest-text { display: flex; flex-direction: column; min-width: 0; }
.search-suggest-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-suggest-meta { font-size: 12px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-suggest-empty { padding: 16px; font-size: 13px; color: var(--ink-soft); text-align: center; }

.search-input {
  border: none;
  background: transparent;
  box-shadow: none !important;
  font-size: 14.5px;
  padding: 13px 0;
}
.search-input::placeholder { color: rgba(74,90,104,.6); }

.btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 12px;
  border: none;
  transition: background .2s ease;
  white-space: nowrap;
}
.btn-search:hover { background: var(--accent-dark); color: #fff; }
.btn-search svg { width: 15px; height: 15px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(10,32,54,.1);
  border: 1px solid var(--line);
  margin-top: -30px;
  position: relative;
  z-index: 5;
}
@media (min-width: 576px) { .stats-card { margin-top: -38px; } }

.stat-item {
  padding: 24px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.stat-item:nth-child(2n) { border-right: none; }
@media (min-width: 992px) {
  .stat-item {border-bottom: none;padding: 12px 16px;}
  .stat-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat-item:last-child { border-right: none; }
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-950);
}
@media (min-width: 576px) { .stat-number { font-size: 32px; } }

.stat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 3px;
}
/* ============================================================
   LATEST PROJECTS SECTION
   Depends on variables from custom.css
   (--navy-950, --accent, --accent-dark, --gold, --ink, --ink-soft, --line, --paper)
   ============================================================ */

.projects-section {
  padding: 56px 0 72px;
  background: var(--paper);
}
@media (min-width: 992px) { .projects-section { padding: 72px 0 88px; } }

.section-head { margin-bottom: 32px; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--navy-950);
  margin: 4px 0 0;
  position: relative;
  padding-bottom: 14px;
}
@media (min-width: 576px) { .section-title { font-size: 32px; } }
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  padding-bottom: 14px;
  white-space: nowrap;
  transition: gap .2s ease;
}
.view-all-link:hover { color: var(--accent-dark); gap: 10px; }
.view-all-link svg { width: 16px; height: 16px; }

/* ============================================================
   PROJECT CARD
   ============================================================ */
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.project-card:hover {
  box-shadow: 0 20px 40px rgba(10,32,54,.12);
  transform: translateY(-4px);
  border-color: transparent;
}

.project-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950), #163A5C); /* fallback while image loads */
}
.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .project-image-wrap img { transform: scale(1.08); }

.badge-rera {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.95);
  color: var(--navy-950);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge-rera svg { width: 11px; height: 11px; color: var(--accent); }

.badge-category {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(10,32,54,.75);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.project-body {
  padding: 16px 16px 4px;
  flex-grow: 1;
}

.project-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 12px;
  min-height: 2.7em;
}
.project-title a {
  color: var(--navy-950);
  transition: color .2s ease;
}
.project-title a:hover { color: var(--accent); }

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.meta-row svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.project-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 14px;
}

.project-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.btn-project {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 13px 8px;
  transition: background .2s ease, color .2s ease;
}

.btn-project-outline {
  color: var(--navy-950);
  border-right: 1px solid var(--line);
}
.btn-project-outline:hover { background: var(--paper); color: var(--accent); }

.btn-project-solid {
  background: var(--accent);
  color: #fff;
}
.btn-project-solid:hover { background: var(--accent-dark); color: #fff; }
.project-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  border-top: 1px solid var(--line);
}

.btn-project {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 13px 8px;
  transition: background .2s ease, color .2s ease;
}

.btn-project-outline {
  color: var(--navy-950);
  border-right: 1px solid var(--line);
}
.btn-project-outline:hover { background: var(--paper); color: var(--accent); }

.btn-project-solid {
  background: var(--accent);
  color: #fff;
}
.btn-project-solid:hover { background: var(--accent-dark); color: #fff; }

.btn-project-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  background: var(--whatsapp);
  color: #fff;
  border-left: 1px solid rgba(255,255,255,.15);
}
.btn-project-whatsapp:hover { background: #1da851; }
.btn-project-whatsapp svg { width: 17px; height: 17px; }
/* ============================================================
   OUR DEVELOPERS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â carousel section
   Depends on variables from custom.css
   (--navy-950, --accent, --gold, --ink, --ink-soft, --line, --paper)
   ============================================================ */

.developers-section {
  padding: 56px 0 64px;
  background: var(--paper);
}
@media (min-width: 992px) { .developers-section {padding: 40px 0 80px;} }

.section-title-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.developers-section .section-head { margin-bottom: 36px; }

/* ============================================================
   CAROUSEL SHELL
   ============================================================ */
.developers-carousel-wrap {
  position: relative;
  padding: 0 52px;
}
@media (max-width: 575.98px) {
  .developers-carousel-wrap { padding: 0 44px; }
}

.dev-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(10,32,54,.1);
  transition: all .2s ease;
}
.dev-nav:hover { border-color: var(--accent); color: var(--accent); }
.dev-nav svg { width: 18px; height: 18px; }
.dev-nav-prev { left: 0; }
.dev-nav-next { right: 0; }

.dev-nav.swiper-button-disabled {
  opacity: .35;
  pointer-events: none;
}

/* ============================================================
   DEVELOPER CARD
   ============================================================ */
.developer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 16px 16px;
  height: 100%;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.developer-card:hover {
  box-shadow: 0 16px 36px rgba(10,32,54,.1);
  transform: translateY(-3px);
  border-color: transparent;
}

.developer-logo {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.developer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter .25s ease;
}
.developer-card:hover .developer-logo img { filter: grayscale(0%); }

.developer-btn {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.developer-card:hover .developer-btn {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.developers-swiper .swiper-slide {
  height: auto;
}
/* ============================================================
   POPULAR LOCATIONS
   Depends on variables from custom.css
   (--navy-950, --accent, --gold, --ink, --ink-soft, --line, --paper)
   ============================================================ */

.locations-section {
  padding: 56px 0 64px;
  background: #fff;
}
@media (min-width: 992px) { .locations-section { padding: 72px 0 88px; } }

.locations-section .section-head { margin-bottom: 36px; }

.section-subtitle {
  max-width: 480px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   LOCATION CARD ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â image with overlaid name, gold pin, hover zoom
   ============================================================ */
.location-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 6px 18px rgba(10,32,54,.08);
  transition: box-shadow .35s ease, transform .35s ease;
}
.location-card:hover {
  box-shadow: 0 26px 50px rgba(10,32,54,.22);
  transform: translateY(-5px);
}

.location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.location-card:hover img { transform: scale(1.1); }

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,32,54,0) 40%,
    rgba(10,32,54,.55) 75%,
    rgba(10,32,54,.88) 100%
  );
  transition: background .35s ease;
}
.location-card:hover .location-overlay {
  background: linear-gradient(
    180deg,
    rgba(10,32,54,.05) 30%,
    rgba(10,32,54,.65) 75%,
    rgba(10,32,54,.92) 100%
  );
}

.location-info {
  position: absolute;
  left: 14px; right: 56px; bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-pin {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,162,75,.9);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-pin svg { width: 14px; height: 14px; }

.location-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
@media (min-width: 992px) { .location-name { font-size: 16px; } }

.location-arrow {
  position: absolute;
  right: 14px; bottom: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(6px) scale(.85);
  transition: all .3s ease;
}
.location-card:hover .location-arrow {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: var(--accent);
  border-color: var(--accent);
}
.location-arrow svg { width: 15px; height: 15px; }

/* On touch devices (no real hover), keep name readable and arrow visible */
@media (hover: none) {
  .location-overlay {
    background: linear-gradient(180deg, rgba(10,32,54,0) 30%, rgba(10,32,54,.65) 70%, rgba(10,32,54,.9) 100%);
  }
  .location-arrow { opacity: 1; transform: none; }
}
/* ============================================================
   ABOUT ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Welcome To Climb Infra Homes
   Depends on variables from custom.css
   (--navy-950, --accent, --accent-dark, --gold, --ink, --ink-soft, --line, --paper)
   ============================================================ */

.about-section {
  padding: 56px 0 64px;
  background: var(--paper);
}
@media (min-width: 992px) { .about-section { padding: 76px 0 90px; } }

.about-section .section-head { margin-bottom: 44px; }

.text-gold-accent { color: var(--gold); }

/* ============================================================
   TEXT COLUMN
   ============================================================ */
.about-lead {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 22px;
}

.about-subhead {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-950);
  margin-bottom: 12px;
}

.about-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 22px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--navy-950);
  line-height: 1.1;
}

.about-stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  background: var(--accent);
  padding: 13px 26px;
  border-radius: 10px;
  transition: background .2s ease, gap .2s ease;
}
.about-cta:hover { background: var(--accent-dark); color: #fff; gap: 13px; }
.about-cta svg { width: 16px; height: 16px; }

/* ============================================================
   IMAGE COLLAGE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 2x2 grid with an offset gold frame behind it
   for a bit of editorial depth
   ============================================================ */
.about-collage {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.about-collage-frame {
  position: absolute;
  top: 20px; left: 20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 18px;
  z-index: 0;
}

.about-collage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(10,32,54,.14);
}

.about-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-tile:hover img { transform: scale(1.08); }

.about-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: #fff;
  color: var(--navy-950);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(10,32,54,.12);
}

@media (max-width: 991.98px) {
  .about-collage-frame { top: 14px; left: 14px; }
  .about-collage-grid { gap: 10px; }
}
/* ============================================================
   CTA BANNER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Talk to a property expert
   Depends on variables from custom.css
   (--navy-950, --accent, --gold, --whatsapp, --paper)
   ============================================================ */

.text-gold-accent { color: var(--gold); }

.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.cta-texture-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(228,90,43,.18), transparent);
}
.cta-texture-dots {
  position: absolute; inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 26px 26px;
}

/* Skyline fades in from the previous section and back out to the next */
.cta-skyline-top,
.cta-skyline-bottom {
  position: absolute;
  left: 0; width: 100%;
  height: 40px;
  color: var(--paper);
}
.cta-skyline-top { top: -1px; }
.cta-skyline-bottom { bottom: -1px; }
@media (min-width: 576px) {
  .cta-skyline-top, .cta-skyline-bottom { height: 60px; }
}

.cta-inner {
  position: relative;
  /* max-width: 730px; */
  margin: 0 auto;
  text-align: center;
  padding: 76px 0;
}
@media (min-width: 992px) { .cta-inner {padding: 70px 0;} }

.cta-eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,75,.35);
  border-radius: 999px;
  padding: 6px 16px;
  background: rgba(201,162,75,.07);
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
  margin: 20px 0 0;
}
@media (min-width: 576px) { .cta-title { font-size: 36px; } }
@media (min-width: 992px) { .cta-title { font-size: 42px; } }

.cta-subtitle {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 540px;
}
@media (min-width: 576px) { .cta-subtitle { font-size: 15.5px; } }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 576px) {
  .cta-actions { flex-direction: row; justify-content: center; }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 12px;
  width: 100%;
  transition: all .25s ease;
}
@media (min-width: 576px) { .cta-btn { width: auto; } }
.cta-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.cta-btn-outline {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
}
.cta-btn-outline:hover {
  color: #fff;
  border-color: var(--gold);
  background: rgba(201,162,75,.1);
  transform: translateY(-2px);
}

.cta-btn-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 12px 26px rgba(34,195,94,.3);
}
.cta-btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(34,195,94,.4);
}

.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.cta-trust-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.cta-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.18);
}
@media (max-width: 575.98px) {
  .cta-trust-divider { display: none; }
}
/* ============================================================
   TESTIMONIALS Ã¢â‚¬â€ masonry wall (CSS columns)
   A deliberately different layout language from the grid-based
   sections elsewhere on the page.
   Depends on variables from custom.css
   (--navy-950, --accent, --gold, --ink, --ink-soft, --line, --paper)
   ============================================================ */

.testimonials-section {
  padding: 56px 0 64px;
  background: var(--paper);
}
@media (min-width: 992px) { .testimonials-section {padding: 50px 0 41px;} }

.testimonials-section .section-head { margin-bottom: 40px; }

.testimonial-wall {
  column-count: 1;
  column-gap: 20px;
}
@media (min-width: 576px) { .testimonial-wall { column-count: 2; } }
@media (min-width: 1200px) { .testimonial-wall { column-count: 3; } }

/* ============================================================
   SWIPER SLIDER Ã¢â‚¬â€ 3-up on desktop, autorotates every 2.5s
   ============================================================ */
.testimonials-swiper {
  padding-bottom: 46px; /* room for the pagination dots */
}

.testimonials-swiper .swiper-slide {
  height: auto; /* lets Swiper equalize row height across the 3 visible cards */
  display: flex;
}

.testimonials-pagination {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
}
.testimonials-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--line);
  opacity: 1;
  transition: all .25s ease;
}
.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}

.testimonial-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}

/* Alternate light/dark tones for visual rhythm across the wall */
.testimonial-card.tone-paper {
  background: #fff;
  border: 1px solid var(--line);
}
.testimonial-card.tone-navy {
  background: var(--navy-950);
}

.testimonial-quote {
  width: 34px;
  height: 26px;
  margin-bottom: 14px;
}
.tone-paper .testimonial-quote { color: rgba(228,90,43,.18); }
.tone-navy .testimonial-quote { color: rgba(201,162,75,.35); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars svg { width: 14px; height: 14px; color: var(--gold); }

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.tone-paper .testimonial-text { color: var(--ink); }
.tone-navy .testimonial-text { color: rgba(255,255,255,.88); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  flex-shrink: 0;
}
.tone-paper .testimonial-avatar { background: var(--navy-950); color: var(--gold); }
.tone-navy .testimonial-avatar { background: var(--gold); color: var(--navy-950); }

.testimonial-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.tone-paper .testimonial-name { color: var(--navy-950); }
.tone-navy .testimonial-name { color: #fff; }

/* ============================================================
   BOTTOM RATING BADGE
   ============================================================ */
.testimonial-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.testimonial-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy-950);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: 0 10px 24px rgba(10,32,54,.08);
  transition: box-shadow .2s ease, transform .2s ease;
}
.testimonial-rating-badge:hover {
  box-shadow: 0 14px 30px rgba(10,32,54,.12);
  transform: translateY(-2px);
  color: var(--navy-950);
}
.testimonial-rating-badge svg { width: 16px; height: 16px; color: var(--gold); }
/* ============================================================
   OUR SERVICES Ã¢â‚¬â€ spotlight cards (v2)
   Depends on variables from custom.css
   (--navy-950, --accent, --accent-dark, --gold, --ink, --ink-soft, --line, --paper)
   ============================================================ */

.services-section {
  padding: 56px 0 64px;
  background: #fff;
}
@media (min-width: 992px) { .services-section { padding: 76px 0 90px; } }

.services-section .section-head { margin-bottom: 40px; }

/* ============================================================
   SPOTLIGHT CARD
   Each card gets a soft tinted background + a floating icon
   circle that pops off the top edge like a badge.
   ============================================================ */
.service-spot {
  position: relative;
  height: 100%;
  border-radius: 18px;
  padding: 40px 24px 28px;
  text-align: center;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-spot:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10,32,54,.12);
}

.tint-accent { background: linear-gradient(160deg, rgba(228,90,43,.08), rgba(228,90,43,.02)); }
.tint-gold   { background: linear-gradient(160deg, rgba(201,162,75,.12), rgba(201,162,75,.03)); }
.tint-navy   { background: linear-gradient(160deg, rgba(10,32,54,.07), rgba(10,32,54,.02)); }

.service-spot-num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy-950);
  opacity: .06;
  line-height: 1;
}

.service-spot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(10,32,54,.12);
  margin-bottom: 18px;
  position: relative;
  transition: transform .3s ease;
}
.tint-gold .service-spot-icon { color: var(--gold); }
.tint-navy .service-spot-icon { color: var(--navy-950); }
.service-spot:hover .service-spot-icon { transform: scale(1.1) rotate(-6deg); }
.service-spot-icon svg { width: 26px; height: 26px; }

.service-spot-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-950);
  margin-bottom: 10px;
}

.service-spot-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.service-spot-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-950);
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.service-spot:hover .service-spot-link {
  color: var(--accent);
  border-color: var(--accent);
  gap: 9px;
}
.service-spot-link svg { width: 14px; height: 14px; }
/* ============================================================
   RECENT BLOG POSTS
   Depends on variables from custom.css
   (--navy-950, --accent, --accent-dark, --gold, --ink, --ink-soft, --line, --paper)
   Reuses .section-eyebrow / .section-title / .view-all-link / .meta-row
   already defined in projects.css Ã¢â‚¬â€ safe to omit here if that file
   is already linked on the page.
   ============================================================ */

.blog-section {
  padding: 56px 0 72px;
  background: var(--paper);
}
@media (min-width: 992px) { .blog-section { padding: 72px 0 88px; } }

.blog-section .section-head { margin-bottom: 32px; }

/* ============================================================
   CAROUSEL SHELL
   ============================================================ */
.blog-carousel-wrap {
  position: relative;
  padding: 0 52px;
}
@media (max-width: 575.98px) {
  .blog-carousel-wrap { padding: 0 40px; }
}

.blog-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(10,32,54,.1);
  transition: all .2s ease;
}
.blog-nav:hover { border-color: var(--accent); color: var(--accent); }
.blog-nav svg { width: 18px; height: 18px; }
.blog-nav-prev { left: 0; }
.blog-nav-next { right: 0; }
.blog-nav.swiper-button-disabled { opacity: .35; pointer-events: none; }

.blog-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.blog-card:hover {
  box-shadow: 0 20px 40px rgba(10,32,54,.12);
  transform: translateY(-4px);
  border-color: transparent;
}

.blog-image-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950), #163A5C);
}
.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-image-wrap img { transform: scale(1.08); }

.blog-body {
  padding: 18px 18px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.blog-meta .meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
}
.blog-meta .meta-row svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.blog-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 16px;
  flex-grow: 1;
}
.blog-title a {
  color: var(--navy-950);
  transition: color .2s ease;
}
.blog-title a:hover { color: var(--accent); }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--accent);
  transition: gap .2s ease, color .2s ease;
}
.blog-read-more:hover { color: var(--accent-dark); gap: 11px; }
.blog-read-more svg { width: 14px; height: 14px; }
/* ============================================================
   FOOTER
   Depends on variables from custom.css
   (--navy-950, --accent, --gold, --whatsapp, --line)
   ============================================================ */

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.68);
  position: relative;
}

.footer-hairline {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
}

.footer-main {
  padding: 64px 0 48px;
}
@media (min-width: 992px) { .footer-main {padding: 60px 0 56px;} }

/* Brand block */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}
.footer-brand-tag {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
  max-width: 380px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: all .25s ease;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
  transform: translateY(-2px);
}
.footer-socials svg { width: 16px; height: 16px; }

/* Column headings */
.footer-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

/* Link lists */
.footer-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
  transition: color .2s ease, padding-left .2s ease;
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

/* Contact list */
.footer-contact {
  list-style: none;
  margin: 0 0 22px; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.footer-contact svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact a { color: rgba(255,255,255,.62); transition: color .2s ease; }
.footer-contact a:hover { color: var(--gold); }

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--whatsapp);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.footer-whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(34,195,94,.3);
}
.footer-whatsapp-btn svg { width: 16px; height: 16px; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-rera-line {
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
  margin: 0;
  padding-top: 18px;
  text-align: center;
}
.footer-legal-links {
  font-size: 12.5px;
  margin: 8px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-legal-links a { color: rgba(255,255,255,.6); }
.footer-legal-links a:hover { color: #fff; text-decoration: underline; }
.footer-legal-links span { color: rgba(255,255,255,.3); }
.footer-copyright, .footer-rating {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-rating svg { width: 13px; height: 13px; color: var(--gold); }
/* ============================================================
   FLOATING CALL + WHATSAPP BUTTONS
   Depends on variables from custom.css (--whatsapp, --navy-950)
   ============================================================ */

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fab:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
}
.fab svg { width: 26px; height: 26px; position: relative; z-index: 2; }

.fab-whatsapp { background: var(--whatsapp); }
.fab-call { background: var(--navy-950); }

/* Blinking pulse ring */
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
  animation: fab-blink 2.2s ease-out infinite;
}
.fab-whatsapp .fab-pulse { background: var(--whatsapp); }
.fab-call .fab-pulse { background: var(--navy-950); }

.fab-call .fab-pulse { animation-delay: 1.1s; } /* offsets the two so they don't blink in sync */

@keyframes fab-blink {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.9); opacity: 0;   }
  100% { transform: scale(1.9); opacity: 0;   }
}

/* Tooltip label on hover (desktop only â€” avoids clutter on touch) */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--navy-950);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.fab-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy-950);
}

@media (hover: hover) {
  .fab:hover .fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@media (max-width: 575.98px) {
  .floating-actions { right: 14px; bottom: 14px; gap: 12px; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 23px; height: 23px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fab-pulse { animation: none; display: none; }
}
.scroll-progress {
  position: fixed;
  left: 18px;
  bottom: 20px; /* clears the two 56px floating action buttons + gap */
  z-index: 1150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 10px 26px rgba(10,32,54,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.9);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.scroll-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-progress:hover .scroll-progress-arrow { transform: translateY(-2px); }
.scroll-progress:hover .scroll-progress-label { opacity: 0; }
.scroll-progress:hover .scroll-progress-arrow { opacity: 1; }

.scroll-progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* start the fill from the top */
}

.scroll-progress-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 3;
}

.scroll-progress-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 150.8; /* 2 * PI * r(24), precomputed */
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset .15s ease-out;
}

.scroll-progress-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--navy-950);
  transition: opacity .2s ease;
}

.scroll-progress-arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  color: var(--accent);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

@media (max-width: 575.98px) {
    .developer-btn
    {
        font-size: 8px!important;
    }
  .scroll-progress { right: 14px; bottom: 20px; width: 48px; height: 48px; }
  .scroll-progress-label { font-size: 10.5px; }
  .scroll-progress-arrow { width: 15px; height: 15px; }
}
/* ============================================================
   LEAD CAPTURE POPUP
   Depends on variables from custom.css
   (--navy-950, --accent, --accent-dark, --gold, --ink, --ink-soft, --line)
   ============================================================ */

.lead-popup {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1300;
  width: calc(100% - 32px);
  max-width: 820px;
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

/* Bounce-in from the bottom */
.lead-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  animation: lead-popup-bounce-in .65s cubic-bezier(.34,1.56,.64,1) forwards;
}

/* Slide back down on dismiss */
.lead-popup.is-hiding {
  animation: lead-popup-slide-out .35s ease-in forwards;
  pointer-events: none;
}

@keyframes lead-popup-bounce-in {
  0%   { transform: translateX(-50%) translateY(140%); }
  60%  { transform: translateX(-50%) translateY(-8%); }
  80%  { transform: translateX(-50%) translateY(4%); }
  100% { transform: translateX(-50%) translateY(0); }
}

@keyframes lead-popup-slide-out {
  from { transform: translateX(-50%) translateY(0); opacity: 1; }
  to   { transform: translateX(-50%) translateY(140%); opacity: 0; }
}

.lead-popup-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 60px rgba(10,32,54,.28);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .lead-popup-card {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 18px 26px;
  }
}

.lead-popup-dismiss {
  position: absolute;
  top: -16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(10,32,54,.25);
  transition: transform .2s ease, background .2s ease;
}
.lead-popup-dismiss:hover { background: var(--accent); transform: translateY(2px); }
.lead-popup-dismiss svg { width: 16px; height: 16px; }

.lead-popup-text {
  flex-shrink: 0;
}
@media (min-width: 768px) { .lead-popup-text { max-width: 220px; } }

.lead-popup-eyebrow {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}

.lead-popup-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy-950);
  margin: 0;
  line-height: 1.3;
}

/* Single-line form on desktop, stacked on mobile */
.lead-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .lead-popup-form { flex-direction: row; gap: 10px; }
}

.lead-popup-input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.lead-popup-input::placeholder { color: rgba(74,90,104,.55); }
.lead-popup-input:focus { border-color: var(--accent); background: #fff; }

.lead-popup-submit {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border: none;
  border-radius: 10px;
  padding: 11px 24px;
  white-space: nowrap;
  transition: background .2s ease;
}
.lead-popup-submit:hover { background: var(--accent-dark); }

@media (max-width: 575.98px) {
  .lead-popup { width: calc(100% - 20px); bottom: 16px; }
  .lead-popup-card { padding: 22px 18px 18px; }
}
/* ============================================================
   ABOUT US — inner page
   Depends on variables from custom.css
   ============================================================ */

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.breadcrumb-list a { color: var(--ink-soft); transition: color .2s ease; }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list .current { color: var(--navy-950); font-weight: 600; }
.breadcrumb-list svg { width: 12px; height: 12px; color: var(--ink-soft); opacity: .6; }

/* Page intro / hero banner */
.about-hero {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
}
.about-hero-bg { position: absolute; inset: 0; background-image: url('../images/about-hero.jpg'); background-size: cover; background-position: center; opacity: .35; }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,32,54,.75), rgba(10,32,54,.94)); }
.about-hero-inner { position: relative; padding: 52px 0; text-align: center; }
@media (min-width: 992px) { .about-hero-inner { padding: 72px 0; } }
.about-hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 576px) { .about-hero h1 { font-size: 36px; } }
@media (min-width: 992px) { .about-hero h1 { font-size: 44px; } }
.about-hero p {
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.7;
}

/* Prose sections */
.about-page-section { padding: 48px 0; }
@media (min-width: 992px) { .about-page-section { padding: 64px 0; } }
.about-page-section.bg-tint { background: var(--paper); }

.about-h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-950);
  margin-bottom: 14px;
}
@media (min-width: 576px) { .about-h2 { font-size: 26px; } }

.about-prose { font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.about-prose + .about-prose { margin-top: 14px; }
.about-prose a { color: var(--accent); font-weight: 600; }
.about-prose a:hover { text-decoration: underline; }

.about-check-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.about-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.about-check-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.about-check-list strong { color: var(--navy-950); }

/* Areas we serve — pill grid, internal linking + local SEO */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-950);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  transition: all .2s ease;
}
.area-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.area-pill svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.area-pill:hover svg { color: #fff; }

/* FAQ accordion (Bootstrap accordion, restyled) */
.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-accordion .accordion-button {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy-950);
  padding: 16px 18px;
  background: #fff !important;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--accent); }
.faq-accordion .accordion-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  padding: 0 18px 18px;
}
/* ============================================================
   OUR DEVELOPERS — directory page
   Reuses .developer-card / .developer-logo / .developer-btn
   from developers.css. This file only adds the page-specific
   search bar, grid wrapper, and result-count/empty states.
   ============================================================ */

.developers-page-section { padding: 40px 0 72px; background: var(--paper); }
@media (min-width: 992px) { .developers-page-section { padding: 52px 0 88px; } }

/* Search bar */
.developer-search-wrap {
  max-width: 460px;
  margin: 0 auto 36px;
}
.developer-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color .2s ease;
}
.developer-search:focus-within { border-color: var(--accent); }
.developer-search svg { width: 18px; height: 18px; color: var(--ink-soft); flex-shrink: 0; }
.developer-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: var(--ink);
}
.developer-search input::placeholder { color: rgba(74,90,104,.55); }

.developer-result-count {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.developer-result-count strong { color: var(--navy-950); }

.developer-empty-state {
  display: none;
  text-align: center;
  padding: 48px 16px;
  color: var(--ink-soft);
  font-size: 14px;
}
.developer-empty-state.is-visible { display: block; }

/* Grid — same card styling as the homepage carousel, static grid here */
.developer-grid-item { transition: opacity .15s ease; }
.developer-grid-item.is-hidden { display: none; }
/* ============================================================
   BLOGS — listing page
   Reuses .blog-card / .blog-image-wrap / .blog-meta / .blog-title /
   .blog-read-more from blog.css. This file only adds the page
   wrapper and the "Load More" behavior.
   ============================================================ */

.blogs-page-section { padding: 40px 0 72px; background: var(--paper); }
@media (min-width: 992px) { .blogs-page-section { padding: 52px 0 88px; } }

/* Extra posts are present in the DOM (good for SEO/crawlers) but
   visually hidden until "Load More" is clicked. */
.blog-item-extra { display: none; }
.blog-item-extra.is-shown { display: block; }

.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.blog-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-950);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 30px;
  transition: all .2s ease;
}
.blog-load-more-btn:hover { border-color: var(--accent); color: var(--accent); }
.blog-load-more-btn svg { width: 16px; height: 16px; transition: transform .2s ease; }
.blog-load-more-btn.is-loading svg { animation: blog-spin .7s linear infinite; }

@keyframes blog-spin { to { transform: rotate(360deg); } }
/* ============================================================
   BLOG DETAIL PAGE
   Reuses: about-page.css (breadcrumb, hero classes not used here),
   blog.css (.blog-card etc for related posts), projects.css
   (.project-card etc for "Latest Properties")
   ============================================================ */

.blog-detail-section { padding: 40px 0 24px; background: #fff; }
@media (min-width: 992px) { .blog-detail-section { padding: 52px 0 32px; } }

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.blog-detail-meta .meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}
.blog-detail-meta .meta-row svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.blog-detail-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.3;
  color: var(--navy-950);
  margin-bottom: 22px;
}
@media (min-width: 576px) { .blog-detail-title { font-size: 32px; } }
@media (min-width: 992px) { .blog-detail-title { font-size: 38px; } }

.blog-detail-feature-img {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--navy-950), #163A5C);
}
@media (max-width: 575.98px) {
  .blog-detail-feature-img { aspect-ratio: 4 / 3; }
}
.blog-detail-feature-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

/* Fallback shown while/if the real photo hasn't been added yet —
   a subtle skyline motif instead of a flat empty rectangle */
.blog-detail-feature-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.blog-detail-feature-img::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(201,162,75,.12);
  border: 1.5px dashed rgba(201,162,75,.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='1.6'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
}
/* Once a real <img> loads, it sits on top (z-index:1) and visually covers this fallback */

/* Article prose — this is the block that will eventually be
   filled by CKEditor-generated HTML from the database */
.blog-prose {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink);
}
.blog-prose > p { margin-bottom: 18px; }
.blog-prose h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-950);
  margin: 34px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.blog-prose ul { margin: 0 0 20px; padding-left: 0; list-style: none; }
.blog-prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.blog-prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.blog-prose ul li strong { color: var(--navy-950); }
.blog-prose a { color: var(--accent); font-weight: 600; }
.blog-prose a:hover { text-decoration: underline; }

/* Share row */
.blog-share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 800px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.blog-share-label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.blog-share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  transition: all .2s ease;
}
.blog-share-btn:hover { border-color: var(--accent); color: var(--accent); }
.blog-share-btn svg { width: 15px; height: 15px; }

/* Enquiry box */
.blog-enquiry-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  margin-top: 40px;
}
.blog-enquiry-box h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-950);
  margin-bottom: 4px;
}
.blog-enquiry-box .blog-enquiry-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.blog-enquiry-form { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 576px) { .blog-enquiry-form { grid-template-columns: 1fr 1fr; } }
.blog-enquiry-form textarea { grid-column: 1 / -1; resize: vertical; min-height: 90px; }
.blog-enquiry-form input,
.blog-enquiry-form textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease;
}
.blog-enquiry-form input:focus,
.blog-enquiry-form textarea:focus { border-color: var(--accent); }
.blog-enquiry-form button {
  grid-column: 1 / -1;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 13px;
  transition: background .2s ease;
}
.blog-enquiry-form button:hover { background: var(--accent-dark); }

/* Related posts + latest properties section headers reuse
   .section-eyebrow / .section-title from projects.css */
.blog-related-section,
.blog-properties-section { padding: 48px 0; }
.blog-related-section { background: var(--paper); }
/* ============================================================
   CAREER PAGE
   Depends on variables from custom.css + reuses about-page.css
   (breadcrumb, hero, .about-h2, .about-prose)
   ============================================================ */

.career-page-section { padding: 40px 0 72px; background: var(--paper); }
@media (min-width: 992px) { .career-page-section { padding: 52px 0 88px; } }

/* ============================================================
   WHY WORK WITH US — small perk strip
   ============================================================ */
.perk-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.perk-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  flex: 1 1 220px;
}
.perk-chip svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.perk-chip span { font-size: 13.5px; font-weight: 600; color: var(--navy-950); }

/* ============================================================
   JOB CARD
   ============================================================ */
.job-list { display: flex; flex-direction: column; gap: 24px; margin-top: 12px; }

.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.job-card:hover { box-shadow: 0 20px 44px rgba(10,32,54,.1); border-color: transparent; }

.job-card-head {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--line);
}

.job-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(228,90,43,.08);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.job-card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-950);
  margin-bottom: 10px;
}
@media (min-width: 576px) { .job-card-title { font-size: 22px; } }

.job-card-quickmeta { display: flex; flex-wrap: wrap; gap: 16px; }
.job-card-quickmeta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}
.job-card-quickmeta svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.job-card-body { padding: 22px 26px 26px; }

.job-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .job-meta-grid { grid-template-columns: repeat(3, 1fr); } }

.job-meta-item .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 3px;
}
.job-meta-item .value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-950);
}

.job-responsibilities h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
  margin-bottom: 12px;
}
.job-responsibilities ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.job-responsibilities li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.job-responsibilities li svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.job-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.job-posted-date { font-size: 12.5px; color: var(--ink-soft); }

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 10px;
  transition: background .2s ease;
}
.job-apply-btn:hover { background: var(--accent-dark); color: #fff; }
.job-apply-btn svg { width: 15px; height: 15px; }

/* ============================================================
   NO OPEN ROLE FOR YOU — resume drop CTA
   ============================================================ */
.resume-cta {
  background: var(--paper);
  border: 1.5px dashed var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-top: 32px;
}
.resume-cta h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-950);
  margin-bottom: 6px;
}
.resume-cta p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
/* ============================================================
   CONTACT US PAGE
   Depends on variables from custom.css + reuses about-page.css
   (breadcrumb, hero, .about-h2)
   ============================================================ */

.contact-page-section { padding: 40px 0 72px; background: var(--paper); }
@media (min-width: 992px) { .contact-page-section { padding: 52px 0 88px; } }

/* Info cards row */
.contact-info-row { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.contact-info-card:hover { box-shadow: 0 14px 32px rgba(10,32,54,.08); border-color: transparent; }

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-950);
  line-height: 1.5;
}
.contact-info-value a { color: var(--navy-950); }
.contact-info-value a:hover { color: var(--accent); }

/* Quick WhatsApp strip */
.contact-whatsapp-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--whatsapp);
  border-radius: 14px;
  padding: 18px 20px;
  color: #fff;
}
.contact-whatsapp-strip svg { width: 26px; height: 26px; flex-shrink: 0; }
.contact-whatsapp-strip .txt { flex-grow: 1; }
.contact-whatsapp-strip .txt strong { display: block; font-family: 'Sora', sans-serif; font-size: 14px; }
.contact-whatsapp-strip .txt span { font-size: 12.5px; opacity: .9; }
.contact-whatsapp-strip a.btn {
  background: #fff;
  color: var(--whatsapp);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Map */
.contact-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 16px;
}
.contact-map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ============================================================
   FORM CARD
   ============================================================ */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
}
@media (min-width: 576px) { .contact-form-card { padding: 34px 32px; } }

.contact-form-card h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy-950);
  margin-bottom: 6px;
}
.contact-form-card .sub { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 24px; }

.contact-form { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 576px) { .contact-form { grid-template-columns: 1fr 1fr; } }
.contact-form .full { grid-column: 1 / -1; }

.contact-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--accent); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form-submit {
  grid-column: 1 / -1;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  border-radius: 10px;
  padding: 14px;
  transition: background .2s ease;
}
.contact-form-submit:hover { background: var(--accent-dark); }

.contact-form-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin: -4px 0 0;
}
/* ============================================================
   CATEGORY LISTING PAGE
   Reuses .project-card / .badge-rera etc from projects.css.
   This file only adds the filter sidebar + results header.
   ============================================================ */

.category-page-section { padding: 40px 0 72px; background: var(--paper); }
@media (min-width: 992px) { .category-page-section { padding: 52px 0 88px; } }

/* Filter sidebar */
.filter-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h, 74px) + var(--topbar-h, 38px) + var(--hairline-h, 3px) + 16px);
}

.filter-sidebar h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-950);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-sidebar h3 svg { width: 17px; height: 17px; color: var(--accent); }

.filter-group { margin-bottom: 18px; }
.filter-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 7px;
}
.filter-group select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color .2s ease;
}
.filter-group select:focus { border-color: var(--accent); }

.filter-apply-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 12px;
  transition: background .2s ease;
}
.filter-apply-btn:hover { background: var(--accent-dark); }

.filter-reset-link {
  display: block;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 12px;
}
.filter-reset-link:hover { color: var(--accent); }

/* Mobile filter toggle */
.filter-toggle-btn {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy-950);
  margin-bottom: 16px;
}
.filter-toggle-btn svg { width: 16px; height: 16px; }

@media (max-width: 991.98px) {
  .filter-toggle-btn { display: flex; }
  .filter-sidebar {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    height: 100%;
    z-index: 1200;
    border-radius: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .filter-sidebar.is-open { transform: translateX(0); }
  .filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,32,54,.5);
    z-index: 1190;
  }
  .filter-backdrop.is-open { display: block; }
  .filter-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    margin-bottom: 16px;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .filter-close-btn { display: none; }
}

/* Results header */
.results-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.results-count { font-size: 13.5px; color: var(--ink-soft); }
.results-count strong { color: var(--navy-950); }

.results-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.results-sort label { font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; }
.results-sort select {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--ink);
  background: #fff;
}
/* ============================================================
   PROPERTY DETAIL PAGE
   Reuses: about-page.css (breadcrumb, .about-h2, .about-prose),
   projects.css (.project-card etc for Related Projects)
   ============================================================ */

.pd-section { padding: 40px 0; background: #fff; }
.pd-section.bg-tint { background: var(--paper); }
@media (min-width: 992px) { .pd-section { padding: 52px 0; } }

/* Hero image */
.pd-hero-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950), #163A5C);
  margin-bottom: -60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575.98px) { .pd-hero-img { aspect-ratio: 4 / 3; margin-bottom: -40px; } }
.pd-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.pd-title-block { padding: 0 0 8px; }
.pd-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.pd-location svg { width: 15px; height: 15px; color: var(--gold); }
.pd-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-950);
  line-height: 1.3;
}
@media (min-width: 576px) { .pd-title { font-size: 30px; } }
@media (min-width: 992px) { .pd-title { font-size: 34px; } }

/* Quick facts strip — overlaps the hero image bottom edge */
.pd-facts-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(10,32,54,.14);
  border: 1px solid var(--line);
  margin-top: 20px;
}
.pd-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .pd-facts-grid { grid-template-columns: repeat(4, 1fr); } }

.pd-fact {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-fact:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .pd-fact { border-bottom: none; }
  .pd-fact:nth-child(2n) { border-right: 1px solid var(--line); }
  .pd-fact:last-child { border-right: none; }
}
.pd-fact-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  margin-bottom: 5px;
}
.pd-fact-value {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy-950);
}
.pd-fact-value.is-rera { color: var(--accent); display: flex; align-items: center; gap: 5px; }
.pd-fact-value.is-rera svg { width: 15px; height: 15px; }

/* Sticky enquiry CTA row (mobile-visible action bar) */
.pd-cta-row { display: flex; gap: 10px; margin-top: 20px; }
.pd-cta-row a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 13px;
  border-radius: 10px;
}
.pd-cta-row svg { width: 16px; height: 16px; }
.pd-cta-call { background: var(--navy-950); color: #fff; }
.pd-cta-whatsapp { background: var(--whatsapp); color: #fff; }

/* ============================================================
   NUMBERED FEATURE LISTS (Location Advantages, Amenities, Highlights)
   ============================================================ */
.pd-feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.pd-feature-item { display: flex; gap: 16px; }
.pd-feature-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--navy-950);
  color: var(--gold);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-feature-item h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy-950);
  margin-bottom: 4px;
}
.pd-feature-item p { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* Amenities as a compact icon grid instead */
.pd-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
@media (min-width: 768px) { .pd-amenities-grid { grid-template-columns: repeat(3, 1fr); } }
.pd-amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.pd-amenity-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(228,90,43,.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-amenity-icon svg { width: 18px; height: 18px; }
.pd-amenity span { font-size: 13px; font-weight: 600; color: var(--navy-950); }

/* ============================================================
   FLOOR PLANS
   ============================================================ */
.pd-floorplan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
@media (min-width: 768px) { .pd-floorplan-grid { grid-template-columns: repeat(4, 1fr); } }
.pd-floorplan-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.pd-floorplan-img {
  aspect-ratio: 4 / 3;
  background: var(--paper);
  cursor: pointer;
}
.pd-floorplan-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-floorplan-label { padding: 10px 12px; font-size: 12px; font-weight: 700; color: var(--navy-950); text-align: center; }

/* ============================================================
   PRICE TABLE
   ============================================================ */
.pd-price-table-wrap { overflow-x: auto; margin-top: 20px; border: 1px solid var(--line); border-radius: 14px; }

/* Covers both the admin-built structured table (.pd-price-table) AND any
   raw <table> HTML pasted/imported into the Price Table (raw HTML) admin
   field — the latter arrives with its own legacy border/cellpadding
   attributes and inline widths, which the !important rules below strip
   so it renders with the same look instead of default browser styling. */
.pd-price-table-wrap table,
.pd-price-table {
  width: 100% !important;
  min-width: 480px;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  border: none !important;
  font-family: 'Inter', sans-serif;
}
.pd-price-table-wrap table th,
.pd-price-table-wrap table tr:first-child td,
.pd-price-table th {
  background: var(--navy-950);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 14px 16px !important;
  text-align: left;
  border: none !important;
}
.pd-price-table-wrap table td,
.pd-price-table-wrap table th,
.pd-price-table td {
  padding: 13px 16px !important;
  font-size: 13.5px;
  color: var(--ink);
  border: none;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.pd-price-table-wrap table strong { font-weight: 700; }
.pd-price-table-wrap table tr:last-child td,
.pd-price-table tr:last-child td { border-bottom: none; }
.pd-price-table-wrap table tr:nth-child(even) td,
.pd-price-table tr:nth-child(even) td { background: var(--paper); }
.pd-price-table-wrap table tr:first-child td { background: var(--navy-950) !important; }
.pd-price-table .price-cell { font-weight: 700; color: var(--accent); }

/* ============================================================
   MAPS
   ============================================================ */
.pd-map-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; }
@media (min-width: 768px) { .pd-map-grid { grid-template-columns: 1fr 1fr; } }
.pd-map-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pd-map-card img { width: 100%; display: block; }
.pd-map-card-label {
  padding: 12px 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-950);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.pd-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
@media (min-width: 768px) { .pd-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.pd-gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.pd-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pd-gallery-item:hover img { transform: scale(1.06); }

.pd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,20,32,.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pd-lightbox.is-open { display: flex; }
.pd-lightbox img { max-width: 100%; max-height: 88vh; border-radius: 8px; }
.pd-lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-lightbox-close svg { width: 18px; height: 18px; }

/* ============================================================
   ENQUIRY BOX (reuses .blog-enquiry-box pattern from blog-detail.css
   if that's linked; otherwise defined standalone below)
   ============================================================ */
.pd-enquiry-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  margin-top: 20px;
}
.pd-enquiry-box h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--navy-950); margin-bottom: 4px; }
.pd-enquiry-box .sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.pd-enquiry-form { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 576px) { .pd-enquiry-form { grid-template-columns: 1fr 1fr; } }
.pd-enquiry-form input {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease;
}
.pd-enquiry-form input:focus { border-color: var(--accent); }
.pd-enquiry-form button {
  grid-column: 1 / -1;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 13px;
  transition: background .2s ease;
}
.pd-enquiry-form button:hover { background: var(--accent-dark); }

/* ============================================================
   CAPTCHA (shared across all forms)
   ============================================================ */
.captcha-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink, #0A2036);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.captcha-input {
  width: 100%;
  border: 1px solid rgba(10,32,54,.16);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--ink, #0A2036);
  box-sizing: border-box;
}
.captcha-input:focus { outline: none; border-color: var(--accent); }
.lead-popup-captcha .captcha-label { color: #fff; }
.lead-popup-captcha .captcha-input { border: none; }