:root {
  --ink: #14211c;
  --muted: #5d6d65;
  --line: #dfe8e2;
  --paper: #fbfcf8;
  --mist: #eef5ef;
  --forest: #0f5b3f;
  --leaf: #2f8d5b;
  --gold: #c99743;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(20, 33, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.hero-actions,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: clamp(132px, 16vw, 190px);
  height: 40px;
  object-fit: contain;
}

.site-header nav {
  gap: 20px;
  font-size: 0.94rem;
}

.site-header nav a,
footer a {
  color: var(--muted);
  text-decoration: none;
}

.header-cta,
.button {
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--forest);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://www.godrej-bannerghatta.com/godrej-bannerghatta-hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 23, 18, 0.86), rgba(8, 23, 18, 0.46) 48%, rgba(8, 23, 18, 0.18)),
    linear-gradient(0deg, rgba(8, 23, 18, 0.7), transparent 38%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 42px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 930px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  padding: 18px;
  background: rgba(5, 26, 19, 0.42);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.strip div {
  padding: 22px clamp(16px, 4vw, 42px);
  background: var(--white);
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.strip span {
  margin-top: 4px;
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.split,
.location,
.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.muted {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--mist);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.price-grid,
.feature-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-grid article,
.feature-grid article,
.content-grid article,
.lead-form,
.map-card,
details,
.data-table,
.seo-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-grid article,
.feature-grid article,
.content-grid article {
  padding: 24px;
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid article p {
  margin-bottom: 0;
}

.data-table {
  overflow: hidden;
}

.data-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.data-table div:last-child {
  border-bottom: 0;
}

.data-table strong,
.data-table span {
  padding: 15px 18px;
}

.data-table strong {
  background: rgba(15, 91, 63, 0.06);
}

.data-table span {
  color: var(--muted);
}

.seo-copy {
  margin-top: 18px;
  padding: 24px;
}

.seo-copy p:last-child {
  margin-bottom: 0;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checklist span {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  border-radius: 8px;
  background: var(--white);
  font-weight: 850;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guide-grid a {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.subpage-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 54px;
}

.subpage-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.subpage-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.button.secondary.dark {
  color: var(--forest);
  border-color: var(--forest);
  background: transparent;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin-top: 40px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body li {
  margin-bottom: 10px;
  color: var(--muted);
}

.comparison-table {
  width: 100%;
  margin: 20px 0 28px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  width: 34%;
  color: var(--ink);
  background: rgba(15, 91, 63, 0.06);
}

.comparison-table td {
  color: var(--muted);
}

.article-aside {
  position: relative;
}

.sticky-panel {
  position: sticky;
  top: 100px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sticky-panel h2 {
  font-size: 1.45rem;
}

.sticky-panel h3 {
  margin-top: 24px;
}

.sticky-panel ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
}

.sticky-panel a:not(.button) {
  color: var(--forest);
}

.enquiry.compact {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.3fr);
}

.price-grid h3 {
  margin-bottom: 8px;
}

.price-grid .size {
  min-height: 28px;
  margin-bottom: 20px;
}

.price {
  color: var(--forest) !important;
  font-size: 1.32rem !important;
  font-weight: 900;
}

.price-grid a {
  color: var(--forest);
  font-weight: 850;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--leaf);
  border-radius: 8px;
  font-weight: 900;
}

.location-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.location-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 91, 63, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(15, 91, 63, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbf6, #dbece0);
  background-size: 34px 34px, 34px 34px, auto;
}

.map-line {
  position: absolute;
  height: 8px;
  background: var(--forest);
  border-radius: 999px;
  opacity: 0.28;
}

.line-one {
  left: 8%;
  right: 10%;
  top: 45%;
  transform: rotate(-22deg);
}

.line-two {
  left: 4%;
  right: 18%;
  top: 58%;
  background: var(--gold);
  transform: rotate(31deg);
}

.pin {
  position: absolute;
  padding: 7px 10px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.main-pin {
  left: 42%;
  top: 42%;
  background: var(--gold);
}

.p1 { left: 18%; top: 24%; }
.p2 { right: 14%; top: 28%; }
.p3 { left: 14%; bottom: 22%; }
.p4 { right: 20%; bottom: 18%; }

.faq {
  display: grid;
  gap: 14px;
}

details {
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font: inherit;
}

.lead-form .button {
  width: 100%;
  font: inherit;
}

.disclaimer,
.form-note {
  font-size: 0.9rem !important;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--mist);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer p {
  margin: 0;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(20, 33, 28, 0.28);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(20, 33, 28, 0.34);
}

.whatsapp-float span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-stats,
  .strip,
  .price-grid,
  .feature-grid,
  .content-grid,
  .guide-grid,
  .split,
  .location,
  .enquiry,
  .article-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split > *,
  .location > *,
  .enquiry > *,
  .article-layout > * {
    grid-column: 1 / -1;
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .site-header nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: 154px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-bottom: 26px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .strip,
  .price-grid,
  .feature-grid,
  .content-grid,
  .guide-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    width: min(100% - 28px, 1180px);
    padding: 58px 0 34px;
  }

  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .data-table div {
    grid-template-columns: 1fr;
  }

  .data-table strong {
    padding-bottom: 4px;
  }

  .data-table span {
    padding-top: 4px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .muted {
    width: 100%;
    padding-inline: 14px;
  }

  .image-panel img,
  .map-card {
    min-height: 330px;
  }

  footer {
    display: grid;
    padding-bottom: 96px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
