:root{
  --forest:#124a2f;
  --forest-dark:#0c3a24;
  --forest-darker:#082818;
  --gold:#d8a94a;
  --gold-dark:#c99938;
  --cream:#f2f5ec;
  --ink:#1c2b22;
  --muted:#5b6b60;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:#fff;
  padding-top:76px;
}
h1,h2,h3,h4,.font-display{
  font-family:'Poppins',sans-serif;
}

/* ---------- HEADER ---------- */
#siteHeader{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1050;
  background:#fff;
  padding:14px 0;
  transition:box-shadow .3s ease, padding .3s ease;
  border-bottom:1px solid rgba(0,0,0,0.05);
}
#siteHeader.scrolled{
  padding:8px 0;
  box-shadow:0 6px 24px rgba(18,74,47,0.12);
}
#siteHeader .logo-mark{
  width:42px;height:42px;
  background:var(--forest);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  font-weight:800;
  font-size:1.1rem;
  transition:all .3s ease;
}
#siteHeader.scrolled .logo-mark{width:34px;height:34px;font-size:.95rem;}
#siteHeader .brand-text{line-height:1.05;}
#siteHeader .brand-text .name{font-weight:800;color:var(--forest);font-size:1.15rem;letter-spacing:.5px;}
#siteHeader .brand-text .tag{font-size:.68rem;color:var(--muted);letter-spacing:.5px;text-transform:uppercase;}
#siteHeader .nav-link{
  font-weight:500;
  color:var(--ink) !important;
  position:relative;
  margin:0 15px;
}
#siteHeader .nav-link::after{
  content:'';
  position:absolute;left:0;bottom:-2px;
  width:0;height:2px;background:var(--gold);
  transition:width .25s ease;
}
#siteHeader .nav-link:hover::after{width:100%;}
#siteHeader .call-btn{
  border:1.5px solid var(--forest);
  color:var(--forest);
  border-radius:50px;
  padding:8px 18px; text-decoration: none;
  font-weight:600;
  font-size:.92rem;
  white-space:nowrap;
  transition:all .25s ease;
}
#siteHeader .call-btn:hover{background:var(--forest);color:#fff;}
.popupform .form-control, .popupform .form-select {
    border-radius: 10px;
    border: 1px solid #e2e6df;
    padding: 11px 14px;
    background: #fafcf8;
}
/* ---------- BUTTONS ---------- */
.btn-forest{
  background:var(--forest);
  color:#fff;
  border:none;
  border-radius:50px;
  padding:14px 30px;
  font-weight:600;
  transition:all .25s ease;
}
.btn-forest:hover{background:var(--forest-dark);color:#fff;transform:translateY(-2px);}
.btn-gold{
  background:var(--gold);
  color:var(--forest-darker);
  border:none;
  border-radius:50px;
  padding:14px 30px;
  font-weight:700;
  transition:all .25s ease;
}
.btn-gold:hover{background:var(--gold-dark);color:var(--forest-darker);transform:translateY(-2px);}
.btn-outline-forest{
  border:1.5px solid var(--forest);
  color:var(--forest);
  border-radius:50px;
  padding:14px 30px;
  font-weight:600;
  background:transparent;
  transition:all .25s ease;
}
.btn-outline-forest:hover{background:var(--forest);color:#fff;}

.eyebrow{
  color:var(--gold-dark);
  font-weight:700;
  letter-spacing:2px;
  font-size:.8rem;
  text-transform:uppercase;
}
.section-divider{
  width:60px;height:3px;background:var(--gold);
  margin:18px auto;border-radius:2px;
}

/* ---------- HERO ---------- */
#hero{
  position:relative;
  min-height:100vh;
  color:#fff;
 
}
img{width:100%;}
.w100{width: 100%;}
#hero .badge-pill{
  border:1px solid rgba(255,255,255,0.5);
  color:#fff;
  border-radius:50px;
  padding:6px 16px;
  font-size:.78rem;
  letter-spacing:1px;
  font-weight:600;
  display:inline-flex;align-items:center;gap:8px;
}
#hero h1{
  font-weight:800;
  font-size:3rem;
  line-height:1.15;
}
#hero .price-highlight{color:var(--gold);font-weight:800;}
#hero .feature-list{list-style:none;padding:0;margin:0;}
#hero .feature-list li{
  display:flex;align-items:center;gap:8px;
  margin-bottom:10px;font-size:.95rem;
}
#hero .feature-list i{color:var(--gold);}
.modal-dialog {
    min-height: calc(100vh - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 400px;
}
.modal-content {
    border-radius: 0px;
}
.nav-link:focus, .nav-link:hover{color: #0c3a24;}
.modal-backdrop{opacity: .8!important;}
.close-btn-popup a {
    background: #f00;
    color: #fff; text-decoration: none;
    width: 40px !important;
    height: 39px !important;
    line-height: 15px;
    font-size: 33px;
    position: absolute;
    top: 0;
    right: -40px;
    z-index: 9;
    padding: 11px 0;
    text-align: center;
}
.form-group {
    margin: 10px 0;
}
.lead-card{

  border-radius:16px;
  padding:32px;
  color:var(--ink);
  
}
.lead-card .form-label{font-weight:600;font-size:.88rem;}
.lead-card .form-control, .lead-card .form-select{
  border-radius:10px;
  border:1px solid #e2e6df;
  padding:11px 14px;
  background:#fafcf8;
}
.lead-card .form-control:focus, .lead-card .form-select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 .2rem rgba(216,169,74,.2);
}
.lead-badge{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--gold-dark);font-weight:700;font-size:.78rem;letter-spacing:1px;text-transform:uppercase;
}

/* ---------- PROJECT HIGHLIGHTS ---------- */
#highlights{padding:90px 0;background:#faf8f1;}
.highlight-card{
  background:#fff;border:1px solid #edeee8;border-radius:16px;
  padding:32px;height:100%;
  transition:transform .25s ease, box-shadow .25s ease;
}
.highlight-card:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(18,74,47,.08);}
.highlight-icon{
  width:52px;height:52px;border-radius:12px;
  background:#eaf3ec;
  display:flex;align-items:center;justify-content:center;
  color:var(--forest);font-size:1.3rem;
  margin-bottom:18px;
}
.highlight-card h5{font-weight:700;color:var(--forest-darker);}
.highlight-card p{color:var(--muted);margin:0;font-size:.95rem;}

/* ---------- PRICING ---------- */
#price{padding:90px 0;background:var(--cream);}
.plot-card{
  background:#fff;border:1px solid #e6e9e0;border-radius:18px;
  padding:36px 30px;height:100%;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}
.plot-card:hover{transform:translateY(-6px);box-shadow:0 25px 50px rgba(18,74,47,.1);}
.plot-card.popular{border:2px solid var(--gold);box-shadow:0 25px 50px rgba(216,169,74,.18);}
.plot-card .badge-top{
  position:absolute;top:-16px;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--forest-darker);
  padding:7px 18px;border-radius:50px;font-weight:700;font-size:.75rem;letter-spacing:1px;
  white-space:nowrap;
}
.plot-card .cat{color:var(--gold-dark);font-weight:700;letter-spacing:1px;font-size:.78rem;text-transform:uppercase;}
.plot-card .size{font-weight:800;color:var(--forest-darker);font-size:2.2rem;}
.plot-card .size small{font-size:1rem;font-weight:500;color:var(--muted);}
.plot-card .desc{color:var(--muted);font-size:.94rem;margin:14px 0 20px;}
.plot-card ul{list-style:none;padding:0;margin:0 0 26px;}
.plot-card ul li{display:flex;align-items:center;gap:10px;margin-bottom:12px;font-size:.93rem;}
.plot-card ul li i{color:var(--forest);}
.plot-card .btn{width:100%;}

/* ---------- CTA BANNER ---------- */
#ctaBanner{
  position:relative;
  padding:100px 0;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(rgba(8,40,24,0.75), rgba(8,40,24,0.75)),
    url('../images/cta-bg.jpg') center/cover fixed;
}
#ctaBanner h2{font-weight:800;font-size:2.3rem;max-width:750px;margin:0 auto 18px;}
#ctaBanner p{max-width:600px;margin:0 auto 30px;opacity:.9;}

/* ---------- LOCATION ---------- */
#location{padding:90px 0;background:#fff;}
.location-list{list-style:none;padding:0;margin:0;}
.location-list li{
  display:flex;align-items:center;gap:12px;
  padding:14px 0;border-bottom:1px solid #edeee8;
  font-size:.98rem;color:var(--ink);
}
.location-list li i{color:var(--gold-dark);width:18px;text-align:center;}
.map-frame{
  border-radius:16px;overflow:hidden;border:1px solid #e6e9e0;
  box-shadow:0 20px 40px rgba(18,74,47,.08);
}

/* ---------- AMENITIES ---------- */
#amenities{padding:90px 0;background:var(--cream);}
.amenity-card{
  border-radius:16px;overflow:hidden;background:#fff;
  border:1px solid #e6e9e0; padding:12px; text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
  height:100%;
}
.amenity-card p{font-size:14px;}
.amenity-card:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(18,74,47,.1);}
.amenity-card .img-wrap{position:relative;overflow:hidden;}
.amenity-card .img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.amenity-card:hover .img-wrap img{transform:scale(1.06);}
.amenity-card .tag{
  position:absolute;bottom:8px;right:10px;
  background:rgba(0,0,0,0.55);color:#fff;
  font-size:.7rem;padding:2px 8px;border-radius:6px;
}
.amenity-card .cap{padding:16px 18px;font-weight:700;color:var(--forest-darker);text-align:center;}

/* ---------- FOOTER ---------- */
footer{
  background:var(--forest-darker);color:#cfe0d3;padding:50px 0 20px; font-size: 14px;
}
footer h6{color:#fff;font-weight:700;margin-bottom:16px;}
footer a{color:#a9c2ae;text-decoration:none;}
footer a:hover{color:var(--gold);}
footer .bottom-bar{border-top:1px solid rgba(255,255,255,0.08);margin-top:30px;padding-top:20px;font-size:.85rem;color:#8fa895;}
.navbar-brand img{width: 320px;}
.nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
}
.phone-no a {
    color: #000;
    font-size: 17px;
    background: #fff;
    border: 2px solid #000;
    padding: 3px 9px;
    font-weight: bold;
    display: inline-block;
    border-radius: 47px;
}
.enquire-now {
    text-decoration: none;
    border: 2px solid #000;
    padding: 6px;
    display: inline-block;
    color: #000;
    border-radius: 5px;
}
.enquire-now a{color: #000; text-decoration: none;}
.fixed-top{background: #fff;}
 .info-card {
    background: #ffffff;
    border-radius: 6px; border:1px solid #ddd;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    height: 100%;
  }
  .info-card i {
    font-size: 40px;
    color: #4A2318;
    margin-bottom: 18px;
    display: inline-block;
  }
  .info-card h3 {
    font-size: 17px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 8px;
  }
  .info-card .distance {
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
  }
.wrapper{overflow-x:hidden;}  
.navbar-toggler{
    background: #000000;
    padding: 3px;
    color: #fff;
    opacity: 1 !important;
}
/* ============ HERO WRAPPER ============ */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}


.hero-bg.desktop { display: block; }
.hero-bg.mobile  { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 15px;
}

/* ============ FORM CARD ============ */
.lead-card {

  border-radius: 12px;
  padding: 30px;
  
}
.m-show{display:none;}
.slider-section{background:#f3daa8}
.main-banner img{float:left;}
@media (max-width: 768px) {
  .hero-wrapper {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }


  .hero-bg.desktop { display: none; }
  .hero-bg.mobile  { display: block; }

  
  .hero-bg {
    position: relative;
    width: 100%;
    height: 280px; 
  }


  .hero-content {
    position: relative;
    padding: 20px 15px;
  }

  .row.justify-content-end {
    justify-content: center !important;
  }

  .col-lg-4 {
    width: 100%;
    max-width: 100%;
  }

  .lead-card {
    box-shadow: none;
    border-radius: 0;
  }
}

/* ============ TABLET (optional fine-tune) ============ */
@media (min-width: 769px) and (max-width: 991px) {
  .hero-wrapper {
    min-height: 500px;
  }
}
@media (max-width:991px){
  #hero h1{font-size:2.1rem;}
  #siteHeader .brand-text{display:none;}
}
@media (max-width:767px){
.navbar-brand img {
    width: 250px;
}
.close-btn-popup a{right:0px;}
body{padding-top:62px;}
.feature-list{display:none;}
.enquire-now{display:none;}
.navbar-collapse{margin-top:20px;}
.nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}
.m-show{display:block!important;}
.d-show{display:none!important;}
    
}
    .mobilebtn {
        width: 100%; text-align:center;
        float: left;
        position: fixed;
        bottom: 0;

        left: 0;
        margin: 0;
        z-index: 9;
        background: #c63131;
    }
.mobilebtn a  {
        text-align:center;
        float: left; width:100%;
        margin-right: 0;
        color: #fff; text-decoration:none;
        border: none;
        line-height: 48px;
        font-size: 15px;
        cursor: pointer;
      
    }