/* GoodEarth Saarang — matched to Elementor kit 549 / page 990 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --primary: #32343b;
  --secondary: #ceae92;
  --text: #87898e;
  --accent: #f4efeb;
  --white: #ffffff;
  --btn: #874545;
  --btn-hover: #32343b;
  --gold: #ffab12;
  --header-bg: #f8f8f8;
  --container: 1140px;
  --header-h: 72px;
  --font-dm: "DM Sans", system-ui, sans-serif;
  --font-work: "Work Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: var(--font-work);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--secondary); }
ul { list-style: none; margin: 0; padding: 0; }
.container { width: min(var(--container), 92vw); margin-inline: auto; }
.full-width {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 100px);
  box-sizing: border-box;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  padding: 0.5rem 1rem; background: #000; color: #fff;
}
.skip-link:focus { left: 0; }

/* Accessibility utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Typography — Elementor kit */
.heading-label {
  font-family: var(--font-work);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 8px;
  line-height: 1;
}
.heading-title {
  font-family: var(--font-dm);
  font-size: 35px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 20px;
  line-height: 1.1;
}
.heading-display {
  font-family: var(--font-dm);
  font-size: 45px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px;
  line-height: 1.1;
}
.text-body { color: var(--text); margin: 0 0 1rem; }
.text-body p { margin: 0 0 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-dm);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, color 0.3s;
}
.btn--primary {
  background: var(--btn);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--btn-hover);
  color: var(--accent);
}
.btn--dark {
  background: #000;
  color: var(--secondary);
  width: 150px;
  box-shadow: none;
}
.btn--dark:hover { background: #333; color: var(--secondary); }
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  width: 100%;
  padding: 15px 20px;
  box-shadow: none;
  text-transform: none;
  font-weight: 600;
}
.btn--gold:hover { background: var(--white); color: var(--gold); }
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
  text-transform: none;
  font-weight: 600;
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-height: var(--header-h);
  padding: 10px clamp(24px, 5vw, 100px);
  gap: 24px;
  box-sizing: border-box;
}
.logo {
  flex-shrink: 0;
}
.logo img { height: 45px; width: auto; }
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-desktop a {
  font-family: var(--font-dm);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  padding-bottom: 4px;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--primary);
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  overflow-y: auto;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--accent);
}

/* Hero / Flexslider clone */
.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: #111;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s linear;
}
.hero-slide.is-active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-brand {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(25%, 320px);
  text-align: center;
}
.hero-shape {
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}
.hero-title {
  font-family: var(--font-work);
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: var(--white);
  margin: 20px 0 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

@media (min-width: 768px) {
  .hero-arrow--prev { left: 32px; }
  .hero-arrow--next { right: 32px; }
}

@media (min-width: 1025px) {
  .hero-arrow--prev { left: 150px; }
  .hero-arrow--next { right: 150px; }
}
.hero-arrow:hover { background: rgba(0,0,0,0.45); }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  padding: 0;
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-radius 0.3s ease;
}
.hero-dot.is-active {
  background: var(--gold);
  width: 24px;
  border-radius: 6px;
}

/* Sections */
.section { padding: 80px 0; }
.section--accent-bg { background: var(--accent); }
.index-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* About */
.section--about {
  background: var(--white);
  padding: 80px 0;
}
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  align-items: center;
}
.about-visual {
  position: relative;
  margin-top: 48px;
}
.about-dots {
  position: absolute;
  top: -56px;
  right: 12px;
  width: 150px;
  z-index: 2;
  opacity: 0.9;
}
.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0 10px 10px 0;
  opacity: 0.9;
}
.about-content {
  padding: 0 8px 0 20px;
}
.about-text p {
  text-align: justify;
  margin: 0 0 28px;
}
.btn--know-more {
  border-radius: 10px;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
}

/* Overview — faded bg + left column + right cards */
.section--overview {
  position: relative;
  background-color: var(--accent);
  padding: 5em 0 4em;
  overflow: hidden;
}
.section--overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/Saarang-Brochure_V4_Corrections_Print-page-6.webp") center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.section--overview .full-width {
  position: relative;
  z-index: 1;
}
.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: 28px 40px;
  align-items: start;
}
.overview-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.overview-left .heading-label { margin-bottom: 4px; }
.overview-left .heading-title { margin-bottom: 8px; }
.overview-intro p { margin: 0; }
.overview-enquire {
  align-self: flex-start;
  margin-top: 4px;
  border-radius: 10px;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
}

.distance-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 12px 0 8px;
  padding: 28px 0;
  border-top: 1px solid #e2dad3;
  border-bottom: 1px solid #e2dad3;
}
.distance-col {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid #e2dad3;
}
.distance-col:last-child { border-right: none; }
.distance-num {
  font-family: var(--font-work);
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
  display: block;
}
.distance-unit {
  font-family: var(--font-dm);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 8px 0 10px;
}
.distance-divider {
  border: none;
  border-top: 1px solid #d4c4b8;
  margin: 0 auto 12px;
  width: 70%;
}
.distance-label {
  font-family: var(--font-dm);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}

.overview-video-block p { margin: 0 0 12px; }
.overview-video-label { margin-bottom: 16px !important; }
.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Feature cards 2×2 (right column) — white cards on overview */
.overview-right .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.overview-right .feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  padding: 25px 25px 30px;
  box-shadow: 0 6px 32px rgba(50, 52, 59, 0.08);
  height: 100%;
}
.overview-right .feature-card__img {
  line-height: 0;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.overview-right .feature-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s;
}
.overview-right .feature-card:hover .feature-card__img img {
  transform: scale(1.03);
}
.overview-right .feature-card__body {
  padding: 0;
  background: transparent;
  flex: 1;
}
.overview-right .feature-card__body h4 {
  font-family: var(--font-dm);
  font-size: 25px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 14px;
  line-height: 1.15;
}
.overview-right .feature-card__body p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

/* Walkthrough video placeholder */
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.video-embed img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}
.video-play-btn svg { width: 68px; height: 48px; }

/* Residential stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: center;
}
.stat-item img {
  width: 83px;
  margin: 0 auto 16px;
}
.stat-num {
  font-family: var(--font-work);
  font-size: 45px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-dm);
  font-size: 18px;
  color: var(--primary);
  margin-top: 8px;
}

/* Brochure parallax band */
.brochure-band {
  position: relative;
  padding: 10em 1em 4em;
  text-align: center;
  color: var(--white);
  background: url("assets/Saarang-Brochure_V4_Corrections_Print-page-6.webp") center/cover fixed;
}
.brochure-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(50, 52, 59, 0.55);
}
.brochure-band .container { position: relative; z-index: 1; }
.brochure-band h2 {
  font-family: var(--font-dm);
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 32px;
}

/* Plans */
.section--plans {
  background: var(--white);
  padding: 60px 0;
}
.plans-head {
  text-align: center;
  margin-bottom: 36px;
}
.plans-head .heading-label {
  color: var(--secondary);
  font-family: var(--font-work);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.plans-head .heading-title {
  font-family: var(--font-work);
  font-size: 35px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

/* Desktop: horizontal tab row + one shared image area below (locked layout) */
@media (min-width: 768px) {
  .plans-tabs-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
  }
  .plans-tab-item {
    display: contents;
  }
  .plans-tab-item .tab-btn {
    order: 1;
    flex: 0 0 auto;
  }
  .plans-tab-item .tab-panel.is-active {
    order: 2;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
  }
  .plans-tab-item .tab-panel:not(.is-active) {
    order: 2;
    flex: 0 0 100%;
    width: 100%;
  }
}

.plans-tabs .tab-btn {
  padding: 15px 35px;
  min-width: 0;
  font-family: var(--font-work);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  background: var(--secondary);
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plans-tabs .tab-btn:hover:not(.is-active) {
  background: #c4a484;
  color: var(--white);
  transform: none;
}

.plans-tabs .tab-btn.is-active {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: none;
}

.plans-tabs .tab-panel { display: none; }
.plans-tabs .tab-panel.is-active {
  display: block;
  animation: fadeUp 0.4s ease;
}
.plans-tabs .tab-panel img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  cursor: zoom-in;
  border-radius: 0;
}

@media (min-width: 768px) {
  .plans-tabs {
    width: 100%;
  }
  .section--plans .container {
    overflow: hidden;
  }
}

/* Mobile: stacked accordion — tab button then its image inline */
@media (max-width: 767px) {
  .plans-tabs-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .plans-tab-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .plans-tabs .tab-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
    min-width: 0;
    flex: none;
    box-sizing: border-box;
  }
  .plans-tabs .tab-panel {
    margin-top: 0;
    padding-top: 12px;
    padding-bottom: 4px;
  }
  .plans-tabs .tab-panel.is-active {
    display: block;
  }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section headings — centered SAARANG + title */
.section-head-label,
.section-head-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head-label { margin-bottom: 8px; }
.section-head-title { margin-bottom: 32px; }

/* Walkthrough */
.walkthrough-wrap {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.walkthrough-intro {
  max-width: 820px;
  margin: 0 auto 32px;
}
.youtube-embed--walkthrough {
  max-width: 100%;
  margin: 0 auto;
}
.disclaimer {
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  margin-top: 20px;
}

/* Neighborhood */
.section--neighborhood {
  background: var(--white);
  padding: 60px 0 0;
}
.neighborhood-head {
  text-align: center;
  margin-bottom: 36px;
}
.neighborhood-head .heading-label {
  color: var(--secondary);
  font-family: var(--font-work);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.neighborhood-head .heading-title {
  font-family: var(--font-work);
  font-size: 35px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

/* Desktop: horizontal tab row + shared content area below */
@media (min-width: 768px) {
  .neighborhood-tabs-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
  }
  .neighborhood-tab-item {
    display: contents;
  }
  .neighborhood-tab-item .tab-btn {
    order: 1;
    flex: 0 0 auto;
  }
  .neighborhood-tab-item .tab-panel.is-active {
    order: 2;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
  }
  .neighborhood-tab-item .tab-panel:not(.is-active) {
    order: 2;
    flex: 0 0 100%;
    width: 100%;
  }
  .neighborhood-tabs {
    width: 100%;
  }
}

.neighborhood-tabs .tab-btn {
  padding: 15px 35px;
  min-width: 0;
  font-family: var(--font-work);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  background: var(--secondary);
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.neighborhood-tabs .tab-btn:hover:not(.is-active) {
  background: #c4a484;
  color: var(--white);
  transform: none;
}

.neighborhood-tabs .tab-btn.is-active {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: none;
}

.neighborhood-tabs .tab-panel { display: none; }
.neighborhood-tabs .tab-panel.is-active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.neighborhood-content {
  text-align: left;
}

.neighborhood-content h3 {
  font-family: var(--font-dm);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
  line-height: 1.2;
}

.neighborhood-content p {
  font-family: var(--font-work);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 100%;
}

.neighborhood-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.neighborhood-imgs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: none;
}

/* Mobile: stacked accordion — tab button then its content inline */
@media (max-width: 767px) {
  .neighborhood-tabs-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
  }
  .neighborhood-tab-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .neighborhood-tabs .tab-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
    min-width: 0;
    flex: none;
    box-sizing: border-box;
  }
  .neighborhood-tabs .tab-panel {
    margin-top: 0;
    padding-top: 12px;
    padding-bottom: 4px;
  }
  .neighborhood-tabs .tab-panel.is-active {
    display: block;
  }
  .neighborhood-imgs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .neighborhood-imgs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.map-wrap {
  margin-top: 56px;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}
.map-wrap--full {
  width: 100%;
  max-width: 100%;
  margin-top: 56px;
  margin-bottom: 0;
  border-radius: 0;
  padding: 0;
}
.map-wrap--full .neighborhood-map {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}
.neighborhood-map {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

/* Contact */
#contact { 
  padding: 40px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-info .heading-label {
  color: var(--secondary);
  font-size: 16px;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 8px;
}
.heading-title--contact {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.1;
}
.contact-phone-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fdfaf7;
  padding: 20px 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  width: fit-content;
  border: 1px solid rgba(206, 174, 146, 0.15);
}
.contact-phone-icon {
  background: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.contact-phone-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.contact-phone-text p {
  font-size: 14px;
  margin: 0;
}
.contact-phone-text strong {
  display: block;
  font-size: 11px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-phone-text a {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.btn--directions {
  background: var(--btn);
  color: var(--white);
  border-radius: 12px;
  padding: 15px 40px;
  text-transform: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(135, 69, 69, 0.3);
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn--directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(135, 69, 69, 0.4);
  background: var(--btn-hover);
}
.contact-form-box {
  background: var(--btn);
  padding: 45px 40px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.contact-form-title {
  font-family: var(--font-dm);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin: 0 0 30px;
  letter-spacing: -0.02em;
}
.zoho-form-iframe--contact {
  height: 440px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 30px 0 40px;
}
.footer-inner { text-align: center; }
.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}
.footer-logo img { width: 10%; min-width: 120px; margin: 0 auto; }
.footer-legal {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 24px;
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 24px auto;
  max-width: 100%;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}
.footer-bottom p { margin: 0; font-size: 16px; }
.social-links { display: flex; gap: 8px; justify-content: center; }
.social-links a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 25px;
  color: var(--primary);
}
.social-links a:hover { opacity: 0.85; }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

/* Fixed enquire */
.fab-enquire {
  position: fixed;
  top: 50%;
  right: -60px; /* Shift to allow the rotated button to show */
  transform: translateY(-50%) rotate(-90deg);
  z-index: 1000;
  border-radius: 10px 10px 0 0 !important;
  padding: 12px 25px !important;
  white-space: nowrap;
}

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--btn);
  color: var(--white);
  width: min(400px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 20px 28px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none; border: none;
  color: #fff; font-size: 24px;
  cursor: pointer; line-height: 1;
}
.modal h3 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  padding-top: 8px;
}
.modal .form-group label { color: #fff; }
.modal--enquire {
  width: min(400px, 100%);
}
.zoho-form-iframe {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
}
.zoho-form-iframe--modal {
  height: 350px;
}
.zoho-form-iframe--contact {
  height: 350px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 40px;
  cursor: pointer; line-height: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .about-row { grid-template-columns: 1fr; gap: 32px; }
  .about-content { padding: 0; }
  .about-visual { margin-top: 40px; max-width: 560px; }
  .overview-layout { grid-template-columns: 1fr; }
  .overview-right .feature-grid { grid-template-columns: 1fr; }
  .section--overview { padding: 4em 0 3em; }
  .neighborhood-imgs { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-arrow--prev { left: 32px; }
  .hero-arrow--next { right: 32px; }
}
@media (max-width: 880px) {
  .distance-row { grid-template-columns: 1fr; }
  .distance-col { border-right: none; border-bottom: 1px solid #e2dad3; }
  .stats-row { grid-template-columns: 1fr; }
  .index-row { grid-template-columns: 1fr; }
  .about-img { border-radius: 10px; }
}
@media (max-width: 767px) {
  .hero {
    height: 500px;
    position: relative;
    overflow: hidden;
  }
  .hero-slides {
    height: 100%;
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-slides::-webkit-scrollbar {
    display: none;
  }
  .hero-slide {
    position: relative;
    inset: auto;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    scroll-snap-align: start;
    transition: none;
    overflow: hidden;
  }
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 48px 0; }
  .neighborhood-map { height: 360px; }
  .feature-card__body { padding: 16px 0 0; }
  .distance-row { grid-template-columns: 1fr; }
  .distance-col {
    border-right: none;
    border-bottom: 1px solid #e2dad3;
    padding-bottom: 20px;
    margin-bottom: 8px;
  }
  .distance-col:last-child { border-bottom: none; }
  .brochure-band { padding: 6em 1em 3em; background-attachment: scroll; }
  .brochure-band h2 { font-size: 28px; }
  .footer-logo img { width: 35%; }
  .site-footer { padding-bottom: 80px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fab-enquire {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 18px;
  }
  .hero-arrow { display: none !important; }
  
  /* Sync Plans and Neighborhood for mobile */
  .plans-head .heading-title,
  .neighborhood-head .heading-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .plans-head .heading-label,
  .neighborhood-head .heading-label {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
  .section--plans {
    padding: 48px 0;
  }
  .section--neighborhood {
    padding: 48px 0 0;
  }
  .neighborhood-head .heading-title {
    font-size: 28px;
  }
}
