:root {
  --ink: #17231f;
  --muted: #62706a;
  --line: #d9dfd6;
  --paper: #f7f5ef;
  --white: #ffffff;
  --green: #274c3f;
  --green-dark: #163129;
  --gold: #b9904d;
  --clay: #985f42;
  --shadow: 0 22px 60px rgba(18, 31, 27, 0.18);
  --danger: #b3261e;
  --success: #1f7a4d;

  /* Aliases so GrowthX Estates footer/success-modal CSS can be reused as-is */
  --forest: var(--green-dark);
  --charcoal: var(--ink);
  --text-muted: var(--muted);
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid rgba(23, 35, 31, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  color: #34413c;
}

.nav-menu a:hover {
  color: var(--clay);
}

.header-call {
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media {
  background: url("https://eldecoproject.in/images/herobanner03.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 24, 20, 0.88), rgba(10, 24, 20, 0.56), rgba(10, 24, 20, 0.2)),
    linear-gradient(0deg, rgba(10, 24, 20, 0.45), rgba(10, 24, 20, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1240px;
  min-height: 760px;
  margin: 0 auto;
  padding: 70px 22px 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
}

.hero h2 {
  margin: 10px 0 28px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.hero-points span {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 12px 30px rgba(152, 95, 66, 0.28);
}

.btn-dark {
  width: 100%;
  color: var(--white);
  background: var(--green-dark);
}

.btn-outline {
  color: var(--green-dark);
  border: 1px solid var(--green);
  background: transparent;
}

.price-pill {
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 12px 16px;
  color: var(--green-dark);
  background: var(--white);
  border-radius: 8px;
}

.price-pill small {
  color: var(--muted);
  font-weight: 700;
}

.price-pill strong {
  font-size: 20px;
}

.lead-card,
.modal-panel,
.contact-form {
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-card {
  color: var(--ink);
}

.lead-card h3,
.modal-panel h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.15;
}

.form-kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 144, 77, 0.18);
}

.consent {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.field-error {
  color: var(--danger);
  font-size: 12px;
  font-weight: 600;
}

.form-status {
  margin: 0;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(179, 38, 30, 0.1);
  color: var(--danger);
}

.form-status.is-success {
  background: rgba(31, 122, 77, 0.12);
  color: var(--success);
}

.section,
.contact-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 86px 22px;
}

.intro,
.location,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-section h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: clamp(34px, 5vw, 56px);
}

.section-copy p {
  color: #45534e;
  font-size: 17px;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  align-items: end;
}

.image-stack img,
.highlight-grid img,
.amenity-grid article,
.plan-grid article,
.gallery-grid img,
.location-map {
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(18, 31, 27, 0.16);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-stack img:last-child {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 46px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.highlights,
.price,
.developer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: highlights;
}

.highlight-list li {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 18px 62px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.35;
}

.highlight-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--gold);
  content: counter(highlights, decimal-leading-zero);
  counter-increment: highlights;
  font-weight: 900;
}

.highlight-grid img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.amenity-grid,
.price-grid,
.plan-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.amenity-grid article {
  overflow: hidden;
  background: var(--white);
}

.amenity-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.amenity-grid h3,
.amenity-grid p {
  margin: 0;
  padding: 0 16px;
}

.amenity-grid h3 {
  padding-top: 16px;
  font-size: 18px;
}

.amenity-grid p {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.price-card {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
}

.price-card h3 {
  margin: 0;
  font-size: 28px;
}

.price-card strong {
  color: #f6d797;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
}

.price-card span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.plan-grid article {
  overflow: hidden;
  background: var(--white);
}

.plan-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: blur(2px);
}

.plan-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.plan-grid h3 {
  margin: 0;
  font-size: 22px;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.location-list span {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.location-map {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.developer {
  max-width: none;
}

.developer .section-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-section {
  color: var(--white);
  max-width: none;
  padding-inline: max(22px, calc((100vw - 1196px) / 2));
  background: var(--green-dark);
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-form {
  color: var(--ink);
}

/* Footer — ported from the GrowthX Estates footer (resources/views/base.blade.php
   + public/static/css/styles.css), adapted for this single-page static site:
   nav columns point at on-page anchors instead of GrowthX's route-based pages,
   and .reveal (GrowthX's IntersectionObserver scroll-in class) is omitted since
   this site has no equivalent scroll-reveal script. */
.footer {
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem) calc(1.5rem + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem 1.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 1rem;
  color: #ffffff;
}

.footer-logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
}

.footer-about {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 280px;
}

.social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social a {
  color: #ffffff;
  display: flex;
  opacity: 0.9;
}

.social a:hover {
  opacity: 1;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a:hover {
  color: #ffffff;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-icon {
  flex-shrink: 0;
  color: #ffffff;
  margin-top: 0.15rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
  max-width: 1050px;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  gap: 8px;
}

.sticky-actions a,
.sticky-actions button {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--clay);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.sticky-actions a:nth-child(2) {
  background: var(--green);
}

.sticky-actions a:nth-child(3) {
  background: #128c4a;
}

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

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 13, 0.68);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(420px, 100%);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

#modalIntent {
  margin: -8px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    padding: 9px 12px;
    color: var(--green-dark);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 800;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .header-call {
    justify-self: end;
  }

  .hero-content,
  .intro,
  .highlight-grid,
  .location,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .lead-card {
    max-width: 460px;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-points,
  .highlight-list,
  .price-grid,
  .plan-grid,
  .gallery-grid,
  .location-list {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding-block: 58px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid div {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-actions {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 0;
  }

  .sticky-actions a,
  .sticky-actions button {
    flex: 1;
    min-width: 0;
    border-radius: 0;
    font-size: 12px;
  }
}

/* Thank You / success popup — ported as-is from GrowthX Estates
   (public/static/css/styles.css, "Enquiry success popup" block). */
.enquiry-success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 240;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
}

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

.enquiry-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: enquiry-success-fade-in 0.28s ease;
}

.enquiry-success-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22.5rem;
  padding: 2rem 1.75rem 1.65rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(30, 77, 58, 0.12);
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(26, 26, 26, 0.04),
    0 24px 48px rgba(10, 24, 18, 0.18);
  animation: enquiry-success-panel-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-success-modal__glow {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  width: 12rem;
  height: 12rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 77, 58, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.enquiry-success-modal__icon-wrap {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.15rem;
}

.enquiry-success-modal__icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(30, 77, 58, 0.18);
  animation: enquiry-success-ring 0.55s ease 0.12s both;
}

.enquiry-success-modal__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a6b52 0%, var(--forest) 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(30, 77, 58, 0.28);
}

.enquiry-success-modal__check {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: enquiry-success-check 0.45s ease 0.35s forwards;
}

.enquiry-success-modal__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.enquiry-success-modal__message {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--forest);
}

.enquiry-success-modal__hint {
  margin: 0 0 1.35rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.enquiry-success-modal__btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding-block: 0.9rem;
}

@keyframes enquiry-success-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes enquiry-success-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes enquiry-success-ring {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes enquiry-success-check {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .enquiry-success-modal__backdrop,
  .enquiry-success-modal__panel,
  .enquiry-success-modal__icon-ring,
  .enquiry-success-modal__check {
    animation: none;
  }

  .enquiry-success-modal__check {
    stroke-dashoffset: 0;
  }
}
