/* =========================================================
   Aurum Greens — Real Estate Landing Page
   ========================================================= */
:root {
  --clr-primary: #1478a0; /* deep forest green */
  --clr-primary-light: #1898cc;
  --clr-accent: #c8973a; /* muted gold */
  --clr-accent-light: #e0b563;
  --clr-dark: #12181a;
  --clr-text: #3a4442;
  --clr-muted: #6b7674;
  --clr-bg: #faf8f4;
  --clr-card: #ffffff;
  --clr-border: #e4e0d6;
  --font-head: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(15, 61, 46, 0.1);
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}
.section-alt {
  background: #f2efe6;
}
.section-head {
  /* max-width: 640px; */
  margin-bottom: 44px;
}

.section-head span {
  color: var(--clr-accent);
}

.eyebrow {
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--clr-primary);
  font-weight: 600;
  line-height: 1.15;
}
h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}
h3 {
  font-size: 22px;
}
p {
  color: var(--clr-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--clr-accent);
  color: #fff;
}

.btn-hero{
  color: #c8973a;
  width: max-content;
}

.btn-primary:hover {
  background: var(--clr-accent-light);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--clr-primary);
  color: var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: transparent;
  padding: 20px 0px;
  transition: 0.3s ease;
}

.policy-header {
  background: #fff !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08) !important;
  padding: 12px 0 !important;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.site-header.scrolled .logo {
  color: var(--clr-primary);
}
.logo span {
  color: var(--clr-accent);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
}

.policy-header .nav-links a {
  color: var(--clr-text) !important;
}

.site-header.scrolled .nav-links a {
  color: var(--clr-text);
}
.nav-links a:hover {
  color: var(--clr-accent);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.policy-header .header-phone {
  color: var(--clr-primary);
}

.site-header.scrolled .header-phone {
  color: var(--clr-primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  z-index: 999;
}
.site-header.scrolled .nav-toggle {
  color: var(--clr-primary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 20, 0.55) 0%,
    rgba(10, 25, 20, 0.35) 45%,
    rgba(10, 25, 20, 0.75) 100%
  );
}
.hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;

    min-height: 700px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;

    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    height: auto;
    max-width: 680px;
    padding: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    margin: 0;
}

.hero-content .eyebrow {
    color: var(--clr-accent-light);
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 18px;
}

.hero-content p {
    color: #fff;
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}


/* RIGHT FORM */

.hero-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    padding: 28px;
    border-radius: 12px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.hero-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.hero-form-header h3 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #222;
}

.hero-form-header p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.hero-form .form-group {
    margin-bottom: 14px;
}

.hero-form input {
    width: 100%;
    height: 48px;
    padding: 0 14px;

    border: 1px solid #ddd;
    border-radius: 6px;

    font-size: 14px;
    outline: none;
}

.hero-form input:focus {
    border-color: var(--clr-primary);
}

.hero-form .btn-block {
    width: 100%;
    height: 48px;
}

.hero-form-note {
    margin: 12px 0 0;
    font-size: 10px;
    line-height: 1.5;
    color: #777;
    text-align: center;
}


/* MOBILE */

@media (max-width: 991px) {

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 100px 20px 80px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form {
        max-width: 450px;
        margin: 0 auto;
    }
}


@media (max-width: 575px) {

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
        padding: 100px 15px 80px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-form {
        padding: 20px;
    }

    .hero-form-header h3 {
        font-size: 21px;
    }
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

/* Sticky important message strip on hero */
.hero-sticky-msg {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: var(--clr-accent);
    color: #fff;
    padding: 13px 0;
    text-align: center;
    font-weight: 600;
    font-size: 18.5px;
    letter-spacing: 0.01em;
}
.hero-sticky-msg span {
  opacity: 0.85;
  font-weight: 500;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.placeholder-img {
  background: linear-gradient(135deg, #e7e2d4, #cfd9d1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 20px;
  min-height: 340px;
}
.about-text p {
  margin-bottom: 24px;
}

/* ---------- Highlights ---------- */
.highlights-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.highlights-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text);
}
.highlights-list li i {
  color: var(--clr-accent);
  font-size: 18px;
  width: 22px;
  text-align: center;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 15px;
  text-align: center;
  transition: 0.25s ease;
}
.price-card:hover {
  border-color: var(--clr-accent);
}
.price-card .type {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--clr-primary);
  margin-bottom: 6px;
}
.price-card .area {
  color: var(--clr-muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.price-card .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 22px;
}
.price-card .price sup {
  font-size: 13px;
  color: var(--clr-muted);
  font-weight: 500;
}
.price-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--clr-muted);
  text-align: center;
}

/* ---------- Plans (Master / Unit) ---------- */
.plan-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.plan-tab-btn {
  padding: 11px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--clr-border);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--clr-muted);
}
.plan-tab-btn.active {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}
.plan-panel {
  display: none;
}
.plan-panel.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.plan-panel .placeholder-img {
  min-height: 380px;
}

/* ---------- Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.amenity-card {
  text-align: center;
}
.amenity-card .amenity-icon {
  width: 100%;
  aspect-ratio: 1/0.8;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef1ea, #dfe8de);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--clr-primary);
  font-size: 30px;
}
.amenity-card h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--clr-text);
  font-family: var(--font-body);
}

/* ---------- Gallery (owl carousel) ---------- */
.gallery-owl .item {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 10px;
}
.gallery-owl .placeholder-img {
  min-height: 260px;
  border-radius: var(--radius);
}
.owl-nav {
  text-align: center;
  margin-top: 20px;
}
.owl-nav button {
  background: var(--clr-primary) !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 6px !important;
  font-size: 18px !important;
}
.owl-dots {
  text-align: center;
  margin-top: 16px;
}
.owl-dot span {
  background: var(--clr-border) !important;
}
.owl-dot.active span {
  background: var(--clr-accent) !important;
}

/* ---------- Location Advantages ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: flex-start;
}
.location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.loc-tab-btn {
  padding: 8px 15px;
  border-radius: 30px;
  border: 1.5px solid var(--clr-border);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-muted);
  cursor: pointer;
}
.loc-tab-btn.active {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.loc-panel {
  display: none;
}
.loc-panel.active {
  display: block;
}
.loc-panel ul li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--clr-border);
  font-size: 15px;
}
.loc-panel ul li span:last-child {
  color: var(--clr-accent);
  font-weight: 600;
}

/* ---------- Schedule Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visit-grid .placeholder-img {
  min-height: 100%;
  border-radius: 0;
}
.visit-form-wrap {
  background: var(--clr-primary);
  padding: 56px 48px;
  color: #fff;
}
.visit-form-wrap h2 {
  color: #fff;
}
.visit-form-wrap p {
  color: #cfe0d6;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
}
.form-group input:focus {
  outline: 2px solid var(--clr-accent);
}

/* ---------- About Developer ---------- */
.about-dev {
  text-align: center;
}
.about-dev .eyebrow {
  margin-bottom: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--clr-dark);
  color: #a9b2af;
  padding: 56px 0 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: #a9b2af;
  font-size: 14px;
  margin-bottom: 9px;
}
.footer-col a:hover {
  color: var(--clr-accent);
}
.footer-bottom {
  text-align: center;
  padding: 0px 0 56px 0;
  font-size: 13px;
  color: #7c8683;
}
.footer-bottom a {
  color: #a9b2af;
}
.disclaimer {
  font-size: 12px;
  color: #5e6764;
  margin: 18px 0;
  line-height: 1.7;
  text-align: center;
}

/* ---------- Sticky Enquire (mobile bottom bar) ---------- */
.mobile-enquire-bar {
  display: none;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 13, 0.72);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.modal-banner {
  background: var(--clr-primary);
  color: #fff;
  padding: 26px 30px;
}
.modal-banner h3 {
  color: #fff;
  margin-bottom: 4px;
}
.modal-banner p {
  color: #cfe0d6;
  font-size: 13.5px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.modal-body {
  padding: 26px 30px 30px;
}
.form-msg {
  font-size: 13.5px;
  margin-top: 10px;
  display: none;
}
.form-msg.success {
  color: #fff;
  background: #1c7c4d;
  padding: 5px 10px;
  border-radius: 25px;
}
.form-msg.error {
  color: #fff;
  background: #c0392b;
  padding: 5px 10px;
  border-radius: 25px;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}
.mt-24 {
  margin-top: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid,
  .plan-panel.active,
  .visit-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-list {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 260px;
    background: #fff;
    flex-direction: column;
    padding: 90px 30px;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    z-index: 600;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: var(--clr-text) !important;
  }
  .nav-toggle {
    display: block;
  }
  .header-phone {
    display: none;
  }

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

  .plan-panel .placeholder-img {
    min-height: auto !important;
  }

  .visit-form-wrap {
    padding: 40px 26px;
  }
  body {
    padding-bottom: 64px;
  }
  .mobile-enquire-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 400;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
  }
  .mobile-enquire-bar a {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
    font-size: 14px;
  }
  .mobile-enquire-bar .call {
    background: var(--clr-primary);
    color: #fff;
  }
  .mobile-enquire-bar .enquire {
    background: var(--clr-accent);
    color: #fff;
  }
}
@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 60px 0;
  }
  .hero-sticky-msg {
    font-size: 12.5px;
    padding: 10px 14px;
  }
}

.owl-carousel .owl-item img {
  height: 14rem !important;
  object-fit: cover !important;
}

.legal-block p {
  margin-bottom: 10px;
}
