:root {
  --ink: #17211d;
  --muted: #66746e;
  --forest: #173f35;
  --forest-2: #285d4f;
  --leaf: #8aa05b;
  --gold: #c39b52;
  --cream: #f7f4ec;
  --paper: #ffffff;
  --line: #dfe6dd;
  --shadow: 0 18px 48px rgba(23, 33, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 210px;
  min-width: max-content;
  color: var(--forest);
}

.logo img {
  width: 100%;
  height: auto;
}

.nav-links,
.nav-cta,
.hero-actions,
.sticky-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  color: #34423d;
  font-size: 0.92rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--forest);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(23, 63, 53, 0.22);
}

.btn-light {
  color: var(--forest);
  background: #fff;
  border-color: var(--line);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-call {
  white-space: nowrap;
}

.btn-call span {
  font-weight: 700;
}

.btn-call strong {
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 31, 25, 0.92), rgba(9, 31, 25, 0.56), rgba(9, 31, 25, 0.1)),
    linear-gradient(0deg, rgba(9, 31, 25, 0.85), transparent 44%),
    url("godrej-plots-banner-image-2-1-1024x686.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 46px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d9c088;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.8rem;
}

.lead {
  max-width: 760px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 14px;
  margin-top: 34px;
}

.hero-form-card {
  position: relative;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.brochure-tab {
  position: fixed;
  top: 50%;
  right: -68px;
  z-index: 45;
  border: 0;
  min-width: 184px;
  padding: 13px 16px;
  color: #fff;
  background: var(--gold);
  border-radius: 8px 8px 0 0;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.hero-form-card h2 {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-form-card p {
  margin: 8px 0 18px;
  color: #5d6965;
}

.hero-form-card .btn {
  width: 100%;
  text-transform: uppercase;
}

.badge {
  min-height: 98px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.badge span {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

.badge small {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--cream);
}

.section-title,
.grid,
.stats,
.split,
.masonry,
.faq-list,
.rera-block,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 34px;
}

.section-title p {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-title.tight {
  margin-top: 56px;
  margin-bottom: 22px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.plan-card,
.icon-card,
.list-card,
.note-card,
.contact-card,
.lead-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(23, 33, 29, 0.05);
}

.card h3,
.plan-card h3,
.list-card h3,
.note-card h3,
.contact-card h3,
.lead-card h3 {
  margin-bottom: 12px;
}

.card p,
.plan-card p,
.icon-card p,
.list-card p,
.note-card p,
.contact-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stats div {
  padding: 24px;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
}

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

.stats strong {
  font-size: 1.22rem;
}

.stats span {
  color: rgba(255, 255, 255, 0.75);
}

.plan-meta,
.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}

.split > div {
  padding: 34px;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
}

.split p {
  color: rgba(255, 255, 255, 0.82);
}

.split img,
.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.image-card img {
  margin-bottom: 16px;
  background: #f1f1f1;
}

.icon-card {
  position: relative;
  padding-top: 58px;
}

.icon-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  width: 20px;
  height: 20px;
  border: 6px solid rgba(138, 160, 91, 0.38);
  border-top-color: var(--forest);
  border-radius: 50%;
}

.list-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.note-card {
  color: #fff;
  background: var(--forest-2);
  border-color: transparent;
}

.note-card p {
  color: rgba(255, 255, 255, 0.82);
}

.masonry {
  columns: 2 360px;
  column-gap: 18px;
}

.masonry img {
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
}

summary {
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--forest);
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: #34423d;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ccd7d1;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
}

.rera-block {
  padding: 28px;
  color: #4c5a55;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer {
  padding: 40px 0 110px;
  color: rgba(255, 255, 255, 0.75);
  background: #101916;
}

.footer p {
  margin: 0 0 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 10px;
  background: rgba(16, 25, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 15, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 30px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.modal-card h2 {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1.45rem;
}

.modal-card p {
  margin: 8px 0 18px;
  color: #5d6965;
}

.modal-card .btn {
  width: 100%;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  background: #edf2ef;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(23, 33, 29, 0.12);
  }

  .nav-links.is-open {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #f7faf7;
    border-radius: 6px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-cta {
    justify-self: end;
  }

  .nav-cta .btn-primary {
    display: none;
  }

  .hero-content,
  .grid.three,
  .grid.four,
  .grid.two,
  .stats,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .logo {
    width: clamp(92px, 28vw, 118px);
    min-width: 0;
  }

  .nav {
    width: min(100% - 20px, 1180px);
    grid-template-columns: minmax(0, auto) 1fr auto;
    gap: 8px;
  }

  .nav-cta {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-cta .btn-call {
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .nav-cta .btn-call span {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 40px;
    height: 40px;
  }

  .nav-links.is-open {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 56px 0 122px;
  }

  .hero-content,
  .hero-badges,
  .grid.three,
  .grid.four,
  .grid.two,
  .stats,
  .split {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .hero-form-card {
    padding: 22px;
  }

  .sticky-cta {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 8px;
    justify-content: center;
    border-radius: 0;
  }

  .brochure-tab {
    display: none;
  }

  .sticky-cta .btn {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .sticky-cta .btn-call {
    display: none;
  }

  .sticky-cta .btn-whatsapp {
    background: #143f34;
    border-color: #2f6c5d;
  }
}
