/* =============================================================
   BHAVANI REAL ESTATE — Shared Stylesheet
   -------------------------------------------------------------
   Palette:
     --primary  #1B4332  Deep Forest Green
     --accent   #C9A84C  Warm Gold
     --bg       #FAFAF7  Soft Warm White
     --bg2      #F4EFE6  Light Warm Beige
     --text     #1C1C1C  Charcoal
     --muted    #6B7280  Medium Gray
   Fonts:
     Headings — Cormorant Garamond
     Body/UI  — DM Sans
   Breakpoints: mobile <=767, tablet 768-1023, desktop >=1024
   ============================================================= */

:root{
  --primary:#1B4332;
  --primary-dark:#143527;
  --accent:#C9A84C;
  --accent-soft:rgba(201,168,76,0.25);
  --bg:#FAFAF7;
  --bg2:#F4EFE6;
  --text:#1C1C1C;
  --muted:#6B7280;
  --white:#ffffff;
  --shadow-sm:0 2px 10px rgba(0,0,0,.05);
  --shadow-md:0 4px 30px rgba(0,0,0,.06);
  --radius:12px;
  --maxw:1200px;
  --space:clamp(16px,3vw,28px);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'DM Sans',system-ui,sans-serif;
  font-size:16px;line-height:1.6;
  color:var(--text);background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img,video{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:none;background:none}

h1,h2,h3,h4{font-family:'Cormorant Garamond',serif;color:var(--text);line-height:1.2;font-weight:600}
h2{font-size:clamp(28px,4vw,40px);margin-bottom:.5rem}
h3{font-size:22px}
p{color:var(--text)}

.container{max-width:var(--maxw);margin:0 auto;padding:0 var(--space)}
.section{padding:clamp(48px,7vw,88px) 0}
.section-head{text-align:center;max-width:720px;margin:0 auto 48px}
.section-head p{color:var(--muted);margin-top:8px}
.eyebrow{display:inline-block;font-size:12px;letter-spacing:.18em;color:var(--accent);text-transform:uppercase;font-weight:500;margin-bottom:8px}

/* ---------- Skip link ---------- */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--primary);color:#fff;padding:10px 16px;z-index:9999}
.skip-link:focus{left:8px;top:8px}

/* ---------- Glassmorphism ---------- */
.glass-card{
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid var(--accent-soft);
  border-radius:14px;
  box-shadow:0 4px 30px rgba(0,0,0,.06);
}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 32px;border-radius:4px;font-weight:500;font-size:15px;transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease;letter-spacing:.02em;border:1px solid transparent}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(-2px)}
.btn-ghost{background:transparent;border-color:var(--accent);color:#fff}
.btn-ghost:hover{background:var(--accent);color:#fff;transform:translateY(-2px)}
.btn-block{width:100%}

/* ---------- Navigation ---------- */
.site-header{position:sticky;top:0;z-index:100;background:#fff;box-shadow:var(--shadow-sm)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px var(--space);max-width:var(--maxw);margin:0 auto}
.brand{display:flex;align-items:center;gap:10px;font-family:'Cormorant Garamond',serif;color:var(--primary);font-size:20px;font-weight:600}
.brand img{height:42px;width:42px;border-radius:50%;object-fit:cover}
.brand-text{display:inline-block}
.nav-toggle,.nav-toggle-label{display:none}
.nav-links{display:flex;gap:28px;list-style:none;align-items:center}
.nav-links a{font-size:15px;color:var(--text);padding:6px 2px;border-bottom:2px solid transparent;transition:color .2s,border-color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--accent);border-bottom-color:var(--accent)}

@media (max-width:900px){
  .nav-toggle-label{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:8px}
  .nav-toggle-label span{display:block;width:26px;height:2px;background:var(--primary);transition:.2s}
  .nav-links{position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;gap:0;padding:0;max-height:0;overflow:hidden;transition:max-height .3s ease;box-shadow:var(--shadow-sm)}
  .nav-links li{width:100%;border-bottom:1px solid #eee}
  .nav-links a{display:block;padding:16px var(--space)}
  .nav-toggle:checked ~ .nav-links{max-height:400px}
}

/* ---------- Hero ---------- */
.hero{position:relative;height:100vh;min-height:560px;overflow:hidden;color:#fff}
.hero video,.hero .hero-poster{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.45),rgba(0,0,0,.25));z-index:1}
.hero-logo{position:absolute;top:90px;left:80px;z-index:10;width:120px;height:120px;border-radius:50%;box-shadow:0 4px 20px rgba(0,0,0,.3)}
.hero-content{position:relative;z-index:5;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:0 var(--space)}
.hero-title{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,6vw,56px);font-weight:600;color:#fff;margin-bottom:14px}
.hero-tag{font-size:clamp(16px,2vw,20px);color:#fff;max-width:680px;margin-bottom:32px;opacity:.95}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
@media (max-width:600px){.hero-logo{top:80px;left:30px;width:84px;height:84px}}

/* ---------- Page banner ---------- */
.banner{background:var(--bg2);padding:clamp(64px,9vw,110px) 0;text-align:center;position:relative;overflow:hidden}
.banner h1{font-size:clamp(36px,5vw,48px)}
.banner p{color:var(--muted);max-width:640px;margin:12px auto 0}
.banner.has-image{background-size:cover;background-position:center 25%;background-repeat:no-repeat;color:#fff;padding:clamp(96px,12vw,170px) 0}
.banner.has-image.banner-about{background-position:center 15%}
.banner.has-image::before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(27,67,50,.55),rgba(0,0,0,.4));z-index:1}
.banner.has-image > *{position:relative;z-index:2}
.banner.has-image h1{color:#fff;text-shadow:0 2px 18px rgba(0,0,0,.4)}
.banner.has-image p{color:#f4efe6;text-shadow:0 1px 8px rgba(0,0,0,.35)}

/* ---------- About strip ---------- */
.trust-strip{background:var(--bg2);padding:48px 0}
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);max-width:900px;margin:0 auto;text-align:center}
.trust-item{padding:8px 16px;position:relative}
.trust-item + .trust-item{border-left:1px solid var(--accent-soft)}
.trust-num{font-family:'Cormorant Garamond',serif;font-size:clamp(32px,5vw,42px);color:var(--accent);font-weight:600;line-height:1}
.trust-label{font-size:13px;color:var(--text);margin-top:6px;letter-spacing:.05em}
@media (max-width:600px){.trust-grid{grid-template-columns:1fr}.trust-item+.trust-item{border-left:none;border-top:1px solid var(--accent-soft)}}

/* ---------- Services grid ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
@media (max-width:1023px){.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.grid-3,.grid-2{grid-template-columns:1fr}}

.service{padding:32px 24px;text-align:left;transition:transform .25s,border-color .25s,box-shadow .25s}
.service:hover{transform:translateY(-4px);border-color:var(--accent);box-shadow:0 10px 36px rgba(0,0,0,.08)}
.service .icon{width:42px;height:42px;color:var(--primary);margin-bottom:14px}
.service h3{margin-bottom:8px;font-size:22px}
.service p{color:var(--muted);font-size:14px}

/* ---------- Featured venture ---------- */
.featured{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.featured img,.featured .img-ph{width:100%;height:420px;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow-md);background:var(--bg2)}
.featured h2{margin-top:6px}
.featured ul{list-style:none;margin:18px 0 24px}
.featured ul li{padding:8px 0 8px 24px;position:relative;color:var(--text)}
.featured ul li::before{content:"";position:absolute;left:0;top:16px;width:10px;height:10px;border-radius:50%;background:var(--accent)}
.location-tag{display:inline-flex;align-items:center;gap:6px;font-size:14px;color:var(--muted);margin-top:8px}
@media (max-width:900px){.featured{grid-template-columns:1fr}.featured img,.featured .img-ph{height:280px}}

/* ---------- Chips ---------- */
.chips{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.chip{background:#fff;border:1px solid var(--accent);color:var(--text);font-size:14px;padding:8px 20px;border-radius:999px;transition:.2s}
.chip:hover{background:var(--accent);color:#fff}

/* ---------- Founder ---------- */
.founder{display:grid;grid-template-columns:1fr 1.3fr;gap:48px;align-items:center}
.founder img,.founder .img-ph{width:100%;height:480px;object-fit:cover;object-position:center top;border-radius:var(--radius);box-shadow:var(--shadow-md);background:var(--bg2)}
.founder h2{font-size:34px}
.founder .sub{color:var(--accent);font-size:12px;font-weight:500;letter-spacing:.18em;text-transform:uppercase;margin:8px 0 14px;display:block}
.tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.tag{font-size:12px;padding:6px 12px;border-radius:999px;background:var(--bg2);color:var(--primary);border:1px solid var(--accent-soft)}
@media (max-width:900px){.founder{grid-template-columns:1fr}.founder img,.founder .img-ph{height:420px;object-position:center 15%}}

/* ---------- Gallery ---------- */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media (max-width:1023px){.gallery{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.gallery{grid-template-columns:1fr}}
.gallery .ph,.gallery img{height:250px;object-fit:cover;border-radius:10px;background:var(--bg2);transition:transform .3s,box-shadow .3s,border .3s;border:2px solid transparent;width:100%}
.gallery .ph{display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:13px}
.gallery a:hover .ph,.gallery a:hover img{transform:scale(1.02);border-color:var(--accent);box-shadow:var(--shadow-md)}

/* ---------- Testimonials ---------- */
.testi{padding:32px 28px;position:relative}
.testi::before{content:"\201C";font-family:'Cormorant Garamond',serif;font-size:64px;color:var(--accent);position:absolute;top:6px;left:18px;line-height:1}
.testi blockquote{font-style:italic;font-size:15px;color:var(--text);margin:20px 0 18px;line-height:1.7}
.testi .who{font-weight:500}
.testi .where{color:var(--muted);font-size:13px}

/* ---------- Inquiry form ---------- */
.inquiry{max-width:560px;margin:0 auto;padding:36px}
.inquiry label{display:block;font-size:13px;font-weight:500;margin-bottom:6px;color:var(--text)}
.inquiry input,.inquiry textarea{width:100%;background:#fff;border:1px solid var(--accent);border-radius:6px;padding:14px 18px;font:15px 'DM Sans',sans-serif;color:var(--text);margin-bottom:16px;transition:border-color .2s,box-shadow .2s}
.inquiry input:focus,.inquiry textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(27,67,50,.1)}
.inquiry textarea{min-height:110px;resize:vertical}

/* ---------- Property cards ---------- */
.property{display:flex;flex-direction:column;overflow:hidden}
.property .media{aspect-ratio:16/9;background:var(--bg2);position:relative;overflow:hidden}
.property .media img{width:100%;height:100%;object-fit:cover}
.property .body{padding:20px 22px;flex:1;display:flex;flex-direction:column}
.property .pin{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:var(--primary);background:var(--bg2);padding:5px 12px;border-radius:999px;align-self:flex-start;margin-bottom:10px}
.property h3{font-size:22px;margin-bottom:6px}
.property p{color:var(--muted);font-size:14px;flex:1}
.property .info{display:flex;gap:14px;font-size:13px;color:var(--muted);margin-top:10px}
.property .cta{display:block;text-align:center;background:var(--primary);color:#fff;padding:14px;font-weight:500;letter-spacing:.08em;font-size:14px;border-top:1px solid var(--accent-soft);transition:background .2s}
.property .cta:hover{background:var(--primary-dark)}

/* ---------- Contact page ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}}
.contact-info p{margin:10px 0;color:var(--muted)}
.contact-info a{color:var(--primary);font-weight:500}
.contact-info iframe{width:100%;height:280px;border:0;border-radius:var(--radius);margin-top:18px;background:var(--bg2)}
.contact-socials{display:flex;gap:12px;margin-top:14px}
.contact-socials a{width:40px;height:40px;border-radius:50%;border:1px solid var(--accent);display:inline-flex;align-items:center;justify-content:center;color:var(--primary);transition:.2s}
.contact-socials a:hover{background:var(--primary);color:#fff;border-color:var(--primary)}

/* ---------- Why choose us ---------- */
.why{padding:28px 22px;text-align:center}
.why .icon{width:42px;height:42px;color:var(--accent);margin:0 auto 12px}
.why h3{font-size:20px;margin-bottom:6px}
.why p{color:var(--muted);font-size:14px}

/* ---------- Strength rows (about) ---------- */
.strength-row{display:flex;align-items:flex-start;gap:14px;padding:14px 0;border-bottom:1px solid var(--accent-soft)}
.strength-row svg{width:24px;height:24px;color:var(--accent);flex-shrink:0;margin-top:2px}
.strength-row strong{display:block;margin-bottom:2px}
.strength-row span{color:var(--muted);font-size:14px}

.gold-list{list-style:none;margin:14px 0}
.gold-list li{padding:6px 0 6px 24px;position:relative;color:var(--text)}
.gold-list li::before{content:"\2714";position:absolute;left:0;color:var(--accent);font-weight:700}

/* ---------- Footer ---------- */
.site-footer{background:var(--primary);color:#e9eee9;padding:60px 0 28px;margin-top:60px}
.site-footer h4{font-family:'DM Sans',sans-serif;font-size:14px;letter-spacing:.15em;text-transform:uppercase;color:var(--accent);margin-bottom:16px;font-weight:500}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.2fr;gap:36px}
.footer-grid ul{list-style:none}
.footer-grid li{margin:8px 0}
.footer-grid a:hover{color:var(--accent)}
.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:12px;font-family:'Cormorant Garamond',serif;font-size:22px;color:#fff}
.footer-brand img{height:44px;width:44px;border-radius:50%}
.footer-tag{font-size:14px;color:#cfd9d2;margin-bottom:16px}
.socials{display:flex;gap:10px;margin-top:16px}
.socials a{width:36px;height:36px;border-radius:50%;border:1px solid var(--accent);display:inline-flex;align-items:center;justify-content:center;color:var(--accent);transition:.2s}
.socials a:hover{background:var(--accent);color:#fff}
.footer-bottom{margin-top:36px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);font-size:13px;color:#cfd9d2;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px}
.footer-bottom .credit a{color:var(--accent);font-weight:500}
.footer-bottom .credit a:hover{text-decoration:underline}
@media (max-width:600px){.footer-bottom{justify-content:center;text-align:center}}
@media (max-width:800px){.footer-grid{grid-template-columns:1fr}}

/* ---------- Floating buttons ---------- */
.float{position:fixed;bottom:24px;width:56px;height:56px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#fff;z-index:90;box-shadow:0 6px 20px rgba(0,0,0,.18);transition:transform .2s}
.float:hover{transform:scale(1.07)}
.float svg{width:28px;height:28px}
.float-wa{right:24px;background:#25D366;animation:pulse 2s infinite}
.float-call{left:24px;background:var(--primary)}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(37,211,102,.6)}70%{box-shadow:0 0 0 16px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}

/* ---------- 404 ---------- */
.nf{min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:80px 20px}
.nf h1{font-size:clamp(48px,7vw,72px);color:var(--primary)}
.nf p{color:var(--muted);margin:12px 0 24px}
