:root {
  --green-950: #061d18;
  --green-900: #082f26;
  --green-800: #0f4639;
  --green-700: #14614d;
  --gold: #d9aa45;
  --gold-light: #f4d98d;
  --paper: #ffffff;
  --mist: #f4f7f3;
  --soft-gray: #e8ece8;
  --ink: #10231e;
  --muted: #67736e;
  --line: rgba(16, 35, 30, 0.12);
  --shadow: 0 24px 80px rgba(6, 29, 24, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

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

img {
  max-width: 100%;
}

.navbar {
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(6, 29, 24, 0.08);
  /*padding: 0.75rem 0;*/
  transition: padding 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(18px);
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 0.45rem 0;
}

.navbar-brand,
.footer-brand,
.hero-logo {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  color: var(--green-950);
  display: inline-flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  letter-spacing: 0;
  width: 46px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-link {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  padding-inline: 0.85rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-700);
}

.nav-cta {
  margin-left: 0.75rem;
}

.btn {
  border-radius: var(--radius);
  font-weight: 850;
  letter-spacing: 0;
  padding: 0.78rem 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 0;
  box-shadow: 0 12px 28px rgba(217, 170, 69, 0.28);
  color: var(--green-950);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #c8932d, var(--gold));
  color: var(--green-950);
}

.btn-gold i {
  color: var(--green-950);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(14px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-glass i {
  color: var(--gold-light);
}

.btn-dark-green {
  background: var(--green-900);
  border: 0;
  color: #fff;
}

.btn-dark-green:hover {
  background: var(--green-700);
  color: #fff;
}

.hero-section {
  background-image: url("../img/villa-banner.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  position: relative;
}

.hero-overlay,
.cta-overlay {
  background:
    linear-gradient(90deg, rgba(6, 29, 24, 0.50), rgba(6, 29, 24, 0.66), rgba(6, 29, 24, 0.22)),
    linear-gradient(180deg, rgba(6, 29, 24, 0.34), rgba(6, 29, 24, 0.50));
  inset: 0;
  position: absolute;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-logo {
  color: #fff;
  font-weight: 900;
  margin-bottom: 1.25rem;
  padding: 0.65rem 0.9rem;
}

.section-kicker {
  color: var(--gold-light);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.about-section .section-kicker,
.soft-bg .section-kicker,
#layout .section-kicker,
.location-section .section-kicker,
.rera-section .section-kicker {
  color: var(--gold);
}

.hero-section h1 {
  font-size: clamp(2.55rem, 5.8vw, 5.45rem);
  font-weight: 900;
  line-height: 1;
  max-width: 820px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.12rem;
  max-width: 680px;
}

.usp-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.65rem 0;
  max-width: 680px;
}

.usp-grid span {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  font-weight: 800;
  gap: 0.65rem;
  padding: 0.78rem 0.9rem;
}

.usp-grid i {
  color: var(--gold-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.lead-form {
  margin-left: auto;
  max-width: 450px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.lead-form h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
}

.lead-form p,
.privacy-note {
  color: rgba(255, 255, 255, 0.78);
}

.form-badge {
  background: rgba(217, 170, 69, 0.18);
  border: 1px solid rgba(244, 217, 141, 0.36);
  border-radius: 999px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 1rem;
  padding: 0.32rem 0.75rem;
}

.form-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.form-control {
  border: 1px solid rgba(16, 35, 30, 0.14);
  border-radius: var(--radius);
  min-height: 52px;
}

.lead-form .form-control {
  background: rgba(255, 255, 255, 0.94);
}

.privacy-note {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.9rem;
}

.section-pad {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.lead,
p {
  color: var(--muted);
}

.section-heading {
  max-width: 790px;
  padding-bottom: 2.35rem;
}

.image-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.image-frame img {
  aspect-ratio: 5 / 4;
  display: block;
  object-fit: cover;
  width: 100%;
}

.image-chip {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  bottom: 1.25rem;
  box-shadow: 0 14px 34px rgba(6, 29, 24, 0.14);
  display: grid;
  left: 1.25rem;
  padding: 1rem 1.15rem;
  position: absolute;
  backdrop-filter: blur(12px);
}

.image-chip strong {
  color: var(--green-900);
  font-size: 1.45rem;
  font-weight: 900;
}

.image-chip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.highlight-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.highlight-list div {
  align-items: flex-start;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  font-weight: 750;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
}

.highlight-list i {
  color: var(--green-700);
  margin-top: 0.25rem;
}

.soft-bg {
    background-image: url(../img/amenities-banner-2.jpg);
    background-size: cover;
    background-position: center;
    
    /* background:
    linear-gradient(135deg, rgba(8, 47, 38, 0.04), rgba(217, 170, 69, 0.11)),
    var(--mist);*/
}

.amenity-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(6, 29, 24, 0.08);
  display: grid;
  gap: 1rem;
  height: 100%;
  min-height: 170px;
  padding: 1.45rem;
  place-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.amenity-card:hover {
  border-color: rgba(217, 170, 69, 0.6);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.amenity-card i {
  align-items: center;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius);
  color: var(--gold-light);
  display: inline-flex;
  font-size: 1.65rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.amenity-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0;
}

.layout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-inline: auto;
  max-width: 1040px;
  overflow: hidden;
  padding: 1rem;
  text-align: center;
}

.layout-preview {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.layout-preview img {
  aspect-ratio: 16 / 8;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.layout-preview:hover img {
  transform: scale(1.04);
}

.layout-preview span {
  align-items: center;
  background: rgba(6, 29, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  bottom: 1rem;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  gap: 0.55rem;
  left: 50%;
  padding: 0.72rem 1rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.layout-card p {
  margin: 1.2rem auto;
  max-width: 780px;
}

.location-section {
  background: #fff;
}

.map-frame {
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame iframe {
  aspect-ratio: 4 / 4;
  border: 0;
  display: block;
  width: 100%;
}

.nearby-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.nearby-list div {
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 42px 1fr auto;
  padding: 0.85rem 1rem;
}

.nearby-list i {
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  color: var(--green-700);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nearby-list span {
  font-weight: 850;
}

.nearby-list strong {
  color: var(--gold);
  font-size: 0.95rem;
  text-align: right;
}

.cta-section {
  background-image: url("../img/calltoaction-bg.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  margin-inline: auto;
  max-width: 680px;
}

.rera-section {
  background: var(--mist);
}

.rera-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(1.35rem, 4vw, 2.5rem);
}

.rera-card h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
}

.qr-placeholder {
  align-items: center;
  background:
    linear-gradient(45deg, rgba(6, 29, 24, 0.06) 25%, transparent 25% 50%, rgba(6, 29, 24, 0.06) 50% 75%, transparent 75%),
    #fff;
  background-size: 16px 16px;
  border: 2px dashed rgba(8, 47, 38, 0.32);
  border-radius: var(--radius);
  color: var(--green-900);
  display: grid;
  flex: 0 0 170px;
  font-weight: 900;
  height: 170px;
  place-items: center;
}

.qr-placeholder i {
  font-size: 4.5rem;
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 0.22s ease, transform 0.22s ease;
  width: 42px;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--green-950);
  transform: translateY(-2px);
}

.disclaimer {
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-top: 1rem;
}

.floating-actions {
  bottom: 18px;
  display: grid;
  gap: 0.7rem;
  position: fixed;
  right: 18px;
  z-index: 1040;
}

.floating-actions a {
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(6, 29, 24, 0.24);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 0.55rem;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1rem;
}

.float-call {
  background: var(--green-700);
  color: #fff;
}

.float-brochure {
  background: var(--gold);
  color: var(--green-950);
}

.modal-content {
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 0.8rem;
    padding: 0.75rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
    width: 100%;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section .row {
    padding-bottom: 4rem;
    padding-top: 7rem !important;
  }

  .lead-form {
    margin-left: 0;
    max-width: none;
  }

  .rera-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 78px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .hero-section h1 {
    font-size: 2.55rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .image-chip {
    bottom: 0.85rem;
    left: 0.85rem;
    max-width: calc(100% - 1.7rem);
  }

  .amenity-card {
    min-height: 150px;
    padding: 1rem;
  }

  .layout-preview img {
    aspect-ratio: 4 / 3;
  }

  .nearby-list div {
    grid-template-columns: 38px 1fr;
  }

  .nearby-list strong {
    grid-column: 2;
    text-align: left;
  }

  .floating-actions {
    bottom: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /*left: 10px;
    right: 10px;*/
  }

  .floating-actions a {
    border-radius: var(--radius);
    padding: 0.75rem 0.7rem;
  }

  .site-footer {
    padding-bottom: 5rem;
  }
}
@media(max-width:768px) {

    .hero-section {
        padding-top: 90px;
        padding-bottom: 60px;
    }

        .hero-section .row {
            min-height: auto!important;
        }
}
/* ===============================
   Scroll To Top Button
================================= */
#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 90px; /* Keeps above floating buttons */
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #b58b3b, #d6ae5a);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 9999;
}

    #scrollTopBtn:hover {
        transform: translateY(-4px);
        background: #082f26;
    }

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
/* Mobile */
@media (max-width:768px) {

    #scrollTopBtn {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 80px;
        font-size: 16px;
    }
}