﻿*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --gold:#C9A84C;
  --gold-light:#E8D48B;
  --gold-dark:#8B6914;
  --bg-deep:#0A0A0A;
  --bg-section:#111111;
  --bg-card:rgba(20,20,20,0.85);
  --text-primary:#F5F0E8;
  --text-muted:#A09880;
  --saffron:#E8731A;
  --saffron-dark:#C45A10;
  --green-sacred:#2D6B3F;
  --maroon:#6B1A2D;
  --nav-height:88px;
}
html{scroll-behavior:smooth}
body{
  font-family:'Cormorant Garamond',Georgia,serif;
  background:var(--bg-deep);
  color:var(--text-primary);
  overflow-x:hidden;
  line-height:1.7;
}

/* PRELOADER */
.preloader{
  position:fixed;inset:0;z-index:9999;
  background:var(--bg-deep);
  display:flex;align-items:center;justify-content:center;
  transition:opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden{opacity:0;visibility:hidden;pointer-events:none}
.preloader-om{
  font-size:4rem;color:var(--gold);
  animation:pulse-om 1.5s ease-in-out infinite;
  font-family:'Cinzel',serif;
}
@keyframes pulse-om{
  0%,100%{transform:scale(1);opacity:0.7}
  50%{transform:scale(1.15);opacity:1}
}

/* NAV */
nav{
  position:fixed;top:0;width:100%;z-index:100;
  padding:1rem 3rem;
  display:flex;justify-content:space-between;align-items:center;
  background:linear-gradient(180deg,rgba(10,10,10,0.95) 0%,transparent 100%);
  transition:background 0.4s;
}
nav.scrolled{background:rgba(10,10,10,0.97);backdrop-filter:blur(12px)}
.nav-logo{
  font-family:'Cinzel',serif;
  font-size:1.6rem;font-weight:600;
  color:var(--gold);letter-spacing:0.15em;
  text-decoration:none;
  text-transform:lowercase;
}
.nav-links{display:flex;gap:2.5rem;list-style:none}
.nav-links a{
  font-family:'Rajdhani',sans-serif;
  font-size:0.85rem;font-weight:500;
  color:var(--text-muted);letter-spacing:0.2em;
  text-transform:uppercase;text-decoration:none;
  transition:color 0.3s;position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;
  background:var(--gold);transition:width 0.4s ease;
}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after{width:100%}
.nav-cta{
  font-family:'Rajdhani',sans-serif;
  font-size:0.8rem;font-weight:600;
  color:var(--bg-deep);background:var(--gold);
  padding:0.6rem 1.8rem;border:none;cursor:pointer;
  letter-spacing:0.15em;text-transform:uppercase;
  text-decoration:none;transition:all 0.3s;
}
.nav-cta:hover{background:var(--gold-light);transform:translateY(-1px)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:8px}
.hamburger span{width:24px;height:2px;background:var(--gold);transition:0.3s}

/* HERO */
.hero{
  min-height:100vh;min-height:100svh;min-height:700px;
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:flex-end;
  padding:calc(var(--nav-height) + 2rem) 0 6rem;
}
.hero::after{
  content:'';
  position:absolute;
  top:0;right:0;bottom:0;
  width:42%;
  background:linear-gradient(90deg,rgba(10,10,10,0) 0%,rgba(10,10,10,0.55) 12%,rgba(10,10,10,0.92) 28%,rgba(10,10,10,1) 100%);
  z-index:1;
}
.hero-bg{
  position:absolute;inset:0;
  background:url('../images/netram-banner.jpg') left center/cover no-repeat;
}
.hero-content{
  position:relative;z-index:2;
  text-align:center;
  width:min(40vw,560px);
  max-width:520px;
  padding:2rem 4rem 2rem 2rem;
  margin-right:clamp(2rem,4vw,5rem);
}
.hero-badge{
  font-family:'Rajdhani',sans-serif;
  font-size:0.75rem;font-weight:600;
  letter-spacing:0.4em;text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.5rem;
  opacity:0;animation:fadeUp 1s 0.5s forwards;
}
.hero-title{
  font-family:'Cinzel',serif;
  font-size:clamp(2.5rem,6vw,4.5rem);
  font-weight:400;line-height:1.15;
  color:var(--text-primary);
  margin-bottom:1.5rem;
  opacity:0;animation:fadeUp 1s 0.8s forwards;
}
.hero-title em{
  font-style:normal;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-subtitle{
  font-size:1.3rem;font-weight:300;
  color:var(--text-muted);
  max-width:550px;margin:0 auto 2.5rem;
  opacity:0;animation:fadeUp 1s 1.1s forwards;
}
.hero-cta-group{
  display:flex;gap:1.5rem;justify-content:center;flex-wrap:wrap;
  opacity:0;animation:fadeUp 1s 1.4s forwards;
}
.btn-primary{
  font-family:'Rajdhani',sans-serif;
  font-size:0.85rem;font-weight:600;
  color:var(--bg-deep);background:var(--gold);
  padding:1rem 2.5rem;border:none;cursor:pointer;
  letter-spacing:0.15em;text-transform:uppercase;
  text-decoration:none;transition:all 0.35s;
  position:relative;overflow:hidden;
}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 30px rgba(201,168,76,0.3)}
.btn-outline{
  font-family:'Rajdhani',sans-serif;
  font-size:0.85rem;font-weight:600;
  color:var(--gold);background:transparent;
  padding:1rem 2.5rem;border:1px solid var(--gold);
  cursor:pointer;letter-spacing:0.15em;text-transform:uppercase;
  text-decoration:none;transition:all 0.35s;
}
.btn-outline:hover{background:rgba(201,168,76,0.1);transform:translateY(-2px)}
.hero-scroll{
  position:absolute;bottom:3rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:0.5rem;
  opacity:0;animation:fadeUp 1s 1.8s forwards;
}
.hero-scroll span{
  font-family:'Rajdhani',sans-serif;font-size:0.7rem;
  letter-spacing:0.3em;text-transform:uppercase;color:var(--text-muted);
}
.scroll-line{width:1px;height:40px;background:var(--gold);animation:scrollPulse 2s infinite}
@keyframes scrollPulse{
  0%{opacity:0;transform:scaleY(0);transform-origin:top}
  50%{opacity:1;transform:scaleY(1)}
  100%{opacity:0;transform:scaleY(0);transform-origin:bottom}
}

/* SECTIONS */
section{padding:6rem 3rem}
.section-label{
  font-family:'Rajdhani',sans-serif;
  font-size:0.7rem;font-weight:600;
  letter-spacing:0.4em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
}
.section-title{
  font-family:'Cinzel',serif;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:400;line-height:1.2;
  margin-bottom:1.5rem;
}
.section-desc{
  font-size:1.15rem;font-weight:300;
  color:var(--text-muted);max-width:600px;
  line-height:1.8;
}
.gold-divider{
  width:60px;height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-dark));
  margin:1.5rem 0;
}

/* ABOUT / VISION */
.about{
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;
  max-width:1300px;margin:0 auto;align-items:center;
}
.about-image{
  position:relative;overflow:hidden;
  aspect-ratio:4/3;
}
.about-image img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.8s ease;
}
.about-image:hover img{transform:scale(1.03)}
.about-image::before{
  content:'';position:absolute;inset:0;z-index:1;
  border:1px solid rgba(201,168,76,0.2);
  transform:translate(12px,12px);pointer-events:none;
}

/* USP FEATURES */
.features{background:var(--bg-section)}
.features-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;max-width:1300px;margin:3rem auto 0;
}
.feature-card{
  background:var(--bg-card);
  border:1px solid rgba(201,168,76,0.1);
  padding:2.5rem;
  transition:all 0.4s ease;position:relative;overflow:hidden;
}
.feature-card::before{
  content:'';position:absolute;top:0;left:0;width:100%;height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:scaleX(0);transition:transform 0.6s ease;
}
.feature-card:hover{
  border-color:rgba(201,168,76,0.3);
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,0.4);
}
.feature-card:hover::before{transform:scaleX(1)}
.feature-icon{
  font-size:2.2rem;margin-bottom:1.2rem;
  display:block;
}
.feature-card h3{
  font-family:'Cinzel',serif;
  font-size:1.2rem;font-weight:500;
  margin-bottom:0.8rem;color:var(--gold-light);
}
.feature-card p{
  font-size:1rem;font-weight:300;
  color:var(--text-muted);line-height:1.7;
}

/* IMAGE SHOWCASE */
.showcase{
  display:grid;grid-template-columns:1fr 1fr;
  max-width:1300px;margin:0 auto;gap:4rem;
  align-items:center;
}
.showcase.reverse{direction:rtl}
.showcase.reverse>*{direction:ltr}
.showcase-img{
  width:100%;aspect-ratio:16/10;object-fit:cover;
  border:1px solid rgba(201,168,76,0.15);
}

/* PRICING */
.pricing{background:var(--bg-section)}
.pricing-cards{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;max-width:1100px;margin:3rem auto 0;
}
.price-card{
  background:var(--bg-card);
  border:1px solid rgba(201,168,76,0.15);
  padding:3rem;text-align:center;
  transition:all 0.4s;position:relative;
}
.price-card.featured{
  border-color:var(--gold);
  box-shadow:0 0 60px rgba(201,168,76,0.08);
}
.price-card.featured::before{
  content:'PRE-LAUNCH';
  position:absolute;top:0;left:50%;transform:translateX(-50%) translateY(-50%);
  background:var(--gold);color:var(--bg-deep);
  font-family:'Rajdhani',sans-serif;font-size:0.7rem;font-weight:700;
  padding:0.3rem 1.2rem;letter-spacing:0.2em;
}
.price-card h3{
  font-family:'Cinzel',serif;font-size:1.3rem;
  margin-bottom:0.5rem;
}
.price-card .size{
  font-family:'Rajdhani',sans-serif;
  font-size:0.8rem;color:var(--text-muted);
  letter-spacing:0.15em;text-transform:uppercase;margin-bottom:1.5rem;
}
.price-amount{
  font-family:'Cinzel',serif;font-size:2.5rem;
  color:var(--gold);margin-bottom:0.3rem;
}
.price-amount small{font-size:0.9rem;color:var(--text-muted)}
.price-note{font-size:0.95rem;color:var(--text-muted);margin-top:1rem;font-style:italic}

/* SITE PLAN */
.siteplan-img{
  max-width:1100px;margin:2rem auto 0;
  display:block;width:100%;
  border:1px solid rgba(201,168,76,0.2);
  cursor:zoom-in;transition:transform 0.4s;
}
.siteplan-img:hover{transform:scale(1.01)}

/* AMENITIES */
.amenities-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.5rem;max-width:1100px;margin:3rem auto 0;
}
.amenity{
  text-align:center;padding:2rem 1rem;
  background:rgba(201,168,76,0.03);
  border:1px solid rgba(201,168,76,0.08);
  transition:all 0.3s;
}
.amenity:hover{
  background:rgba(201,168,76,0.06);
  border-color:rgba(201,168,76,0.2);
}
.amenity-icon{font-size:2rem;margin-bottom:0.8rem;display:block}
.amenity span{
  font-family:'Rajdhani',sans-serif;
  font-size:0.85rem;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--text-muted);
}

/* LOCATION */
.location-info{
  max-width:1100px;margin:3rem auto 0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
}
.loc-item{
  padding:1.5rem;
  border-left:2px solid var(--gold);
  background:rgba(201,168,76,0.02);
}
.loc-item h4{
  font-family:'Cinzel',serif;font-size:1rem;
  color:var(--gold-light);margin-bottom:0.5rem;
}
.loc-item p{font-size:0.95rem;color:var(--text-muted)}

/* CTA BANNER */
.cta-banner{
  background:url('../images/netram-society.jpg') center/cover no-repeat;
  position:relative;text-align:center;padding:8rem 3rem;
}
.cta-banner::before{
  content:'';position:absolute;inset:0;
  background:rgba(10,10,10,0.75);
}
.cta-banner>*{position:relative;z-index:2}
.cta-banner h2{
  font-family:'Cinzel',serif;
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:1rem;
}
.cta-banner p{
  font-size:1.2rem;color:var(--text-muted);
  max-width:600px;margin:0 auto 2rem;
}

/* FOOTER */
footer{
  background:var(--bg-section);
  padding:4rem 3rem 2rem;
  border-top:1px solid rgba(201,168,76,0.1);
}
.footer-grid{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;
}
.footer-brand{font-family:'Cinzel',serif;font-size:1.8rem;color:var(--gold);margin-bottom:1rem}
.footer-tagline{color:var(--text-muted);font-size:1rem;max-width:300px;line-height:1.6}
footer h4{
  font-family:'Rajdhani',sans-serif;font-size:0.75rem;
  letter-spacing:0.3em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
}
footer ul{list-style:none}
footer ul li{margin-bottom:0.5rem}
footer ul li a{color:var(--text-muted);text-decoration:none;font-size:0.95rem;transition:color 0.3s}
footer ul li a:hover{color:var(--gold)}
.footer-bottom{
  max-width:1100px;margin:3rem auto 0;
  padding-top:2rem;border-top:1px solid rgba(201,168,76,0.08);
  display:flex;justify-content:space-between;align-items:center;
  font-family:'Rajdhani',sans-serif;font-size:0.75rem;
  color:var(--text-muted);letter-spacing:0.1em;
}
.disclaimer{
  max-width:1100px;margin:2rem auto 0;
  padding:1.5rem;background:rgba(201,168,76,0.03);
  border:1px solid rgba(201,168,76,0.08);
  font-size:0.8rem;color:var(--text-muted);
  line-height:1.6;font-style:italic;
}

/* ANIMATIONS */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.reveal{opacity:0;transform:translateY(40px);transition:all 0.8s cubic-bezier(0.16,1,0.3,1)}
.reveal.visible{opacity:1;transform:translateY(0)}

/* COUNTER */
.stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:2rem;max-width:1100px;margin:4rem auto;
  text-align:center;
}
.stat-num{
  font-family:'Cinzel',serif;font-size:2.8rem;
  color:var(--gold);display:block;
}
.stat-label{
  font-family:'Rajdhani',sans-serif;font-size:0.75rem;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--text-muted);margin-top:0.3rem;
}

/* FLOATING PARTICLES */
.particles{
  position:fixed;inset:0;pointer-events:none;z-index:0;
  overflow:hidden;
}
.particle{
  position:absolute;width:2px;height:2px;
  background:var(--gold);border-radius:50%;
  opacity:0.15;
  animation:float-particle linear infinite;
}
@keyframes float-particle{
  0%{transform:translateY(100vh) rotate(0deg);opacity:0}
  10%{opacity:0.15}
  90%{opacity:0.15}
  100%{transform:translateY(-100px) rotate(720deg);opacity:0}
}

/* RESPONSIVE */
@media(max-width:900px){
  nav{padding:1rem 1.5rem}
  .nav-links{display:none}
  .nav-cta{display:none}
  .hamburger{display:flex}
  .nav-links.open{
    display:flex;flex-direction:column;
    position:absolute;top:100%;left:0;width:100%;
    background:rgba(10,10,10,0.98);padding:2rem;gap:1.5rem;
  }
  section{padding:4rem 1.5rem}
  .about,.showcase,.showcase.reverse{
    grid-template-columns:1fr;gap:2rem;
  }
  .showcase.reverse{direction:ltr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;gap:0.5rem;text-align:center}
  .hero-title{font-size:clamp(2rem,5vw,3.5rem)}
  .hero{
    justify-content:center;
    align-items:flex-start;
    padding-top:calc(var(--nav-height) + 3rem);
    padding-bottom:7rem;
  }
  .hero::after{width:100%;background:linear-gradient(180deg,rgba(10,10,10,0.18) 0%,rgba(10,10,10,0.7) 42%,rgba(10,10,10,0.95) 100%)}
  .hero-content{width:auto;margin-right:0;padding:2rem 1.5rem;max-width:90%}
  .pricing-cards{grid-template-columns:1fr}
}
