/* ==========================================================
   Maa Durga Property — Stylesheet
   Token system: colors, type, spacing, layout
   ========================================================== */

:root{
  /* colors */
  --primary:#0E5E4A;
  --primary-glow:#17886A;
  --secondary:#C89B3C;
  --gold-light:#E1BC6C;
  --cream:#F5F3EF;
  --bg:#FBFAF7;
  --dark:#1B1B1B;
  --grey:#6B7280;
  --border:#E8E8E8;
  --success:#22C55E;
  --white:#FFFFFF;
  --whatsapp:#25D366;

  /* type */
  --font-head:'Playfair Display', Georgia, serif;
  --font-body:'Inter', -apple-system, sans-serif;

  /* layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(27,27,27,0.06);
  --shadow-md: 0 12px 32px rgba(14,94,74,0.10);
  --shadow-lg: 0 24px 60px rgba(14,94,74,0.16);
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--dark);
  background:var(--bg);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:1rem; max-width:100%; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--dark);
  margin:0 0 0.5em;
  letter-spacing:-0.01em;
}

.eyebrow{
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-size:0.78rem;
  font-weight:600;
  color:var(--secondary);
  margin:0 0 0.9em;
}
.eyebrow.center{ text-align:center; }
.eyebrow-light{ color:var(--gold-light); }

.section-title{
  font-size:clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom:0.4em;
}
.section-title.center{ text-align:center; }

.section-desc{
  color:var(--grey);
  font-size:1.05rem;
  max-width:560px;
  margin:0 0 2.2rem;
}
.section-desc.center{ margin-left:auto; margin-right:auto; text-align:center; }

section{ padding:64px 0; }

/* ---------- reveal animation ---------- */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:0.95rem;
  border:1px solid transparent;
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:focus-visible{ outline:2px solid var(--primary-glow); outline-offset:3px; }

.btn-primary{ background:var(--primary); color:var(--white); box-shadow:var(--shadow-md); }
.btn-primary:hover{ background:var(--primary-glow); }

.btn-outline{ background:transparent; color:var(--primary); border-color:var(--primary); }
.btn-outline:hover{ background:var(--primary); color:var(--white); }

.btn-outline-light{ background:transparent; color:var(--white); border-color:rgba(255,255,255,0.5); }
.btn-outline-light:hover{ background:rgba(255,255,255,0.12); border-color:var(--white); }

.btn-gold{ background:var(--secondary); color:var(--white); }
.btn-gold:hover{ background:var(--gold-light); }

.btn-whatsapp{ background:var(--whatsapp); color:var(--white); }
.btn-whatsapp:hover{ filter:brightness(1.06); }

.btn-sm{ padding:10px 18px; font-size:0.85rem; }
.btn-block{ width:100%; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header{
  position:sticky; top:0; z-index:1000;
  background:rgba(251,250,247,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled{
  background:rgba(251,250,247,0.97);
  border-color:var(--border);
  box-shadow:var(--shadow-sm);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:var(--header-h);
  gap:24px;
}

.brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.brand-mark{ flex:none; display:flex; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; min-width:0; }
.brand-name{ font-family:var(--font-head); font-weight:700; font-size:1.18rem; color:var(--primary); white-space:nowrap; }
.brand-sub{ font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--secondary); font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.main-nav ul{ display:flex; gap:2.1rem; }
.main-nav a{
  font-size:0.94rem; font-weight:500; color:var(--dark);
  position:relative; padding:4px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background:var(--secondary); transition:width 0.25s ease;
}
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:16px; flex:none; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; border:1px solid var(--border); border-radius:8px; background:var(--white);
  flex:none;
}
.nav-toggle span{
  display:block; width:18px; height:2px; background:var(--dark); margin:0 auto;
  transition:transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================
   HERO
   ========================================================== */
.hero{ position:relative; overflow:hidden; padding:88px 0 70px; }

.hero-visual-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  margin-bottom:24px;
}
.hero-visual-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}
.hero-visual-badge{
  position:absolute;
  left:18px;
  bottom:18px;
  background:rgba(9,22,18,0.72);
  backdrop-filter:blur(8px);
  color:var(--white);
  border-radius:14px;
  padding:12px 14px;
  max-width:calc(100% - 36px);
}
.hero-visual-badge span{
  display:block;
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--gold-light);
  margin-bottom:3px;
}
.hero-visual-badge strong{
  font-family:var(--font-head);
  font-size:1rem;
}

.hero-grid-bg{
  position:absolute; inset:0; z-index:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Crect x='0.5' y='0.5' width='119' height='119' fill='none' stroke='%230E5E4A' stroke-opacity='0.10' stroke-width='1' stroke-dasharray='4 4'/%3E%3C/svg%3E");
  mask-image:linear-gradient(to bottom, black, transparent 88%);
}
.hero-grid-bg--dark{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Crect x='0.5' y='0.5' width='119' height='119' fill='none' stroke='%23E1BC6C' stroke-opacity='0.16' stroke-width='1' stroke-dasharray='4 4'/%3E%3C/svg%3E");
  mask-image:none;
}

.hero-inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
}

.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:1.6rem; }
.stamp-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px; border-radius:999px; font-size:0.8rem; font-weight:600;
  background:var(--white); border:1px dashed var(--primary); color:var(--primary);
  max-width:100%;
}
.stamp-pill .dot{ width:7px; height:7px; border-radius:50%; background:var(--success); flex:none; }
.stamp-pill--gold{ border-color:var(--secondary); color:var(--secondary); background:var(--white); }

.hero-title{
  font-size:clamp(2.4rem, 4.6vw, 3.6rem);
  line-height:1.08;
  margin-bottom:0.5em;
}
.hero-title em{ font-style:italic; color:var(--primary); }

.hero-desc{ color:var(--grey); font-size:1.1rem; max-width:480px; margin-bottom:2.2rem; }

.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; }

.hero-panel{ position:relative; width:100%; }

.search-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-lg);
}
.search-card-label{ font-weight:600; margin:0 0 18px; font-family:var(--font-head); font-size:1.15rem; }
.search-form{ display:flex; flex-direction:column; gap:16px; }
.field{ display:flex; flex-direction:column; gap:6px; min-width:0; }
.field label{ font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; color:var(--grey); }
.field select, .field input, .field textarea{
  padding:12px 14px; border:1px solid var(--border); border-radius:var(--radius-sm);
  background:var(--cream); color:var(--dark); transition:border-color 0.2s ease, box-shadow 0.2s ease;
  width:100%;
}
.field select:focus, .field input:focus, .field textarea:focus{
  outline:none; border-color:var(--primary-glow); box-shadow:0 0 0 3px rgba(23,136,106,0.14);
}

.hero-seal{
  position:absolute; width:120px; height:120px;
  right:-18px; bottom:-24px;
  filter:drop-shadow(0 10px 20px rgba(14,94,74,0.28));
  transform:rotate(-9deg);
}

.scroll-cue{
  position:relative; z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  width:fit-content; margin:56px auto 0;
  color:var(--grey); font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase;
}
.scroll-cue-dot{ animation:scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot{ 0%,100%{ transform:translateY(0); opacity:1; } 50%{ transform:translateY(6px); opacity:0.3; } }

/* ==========================================================
   LEDGER STATS
   ========================================================== */
.ledger{ padding:0; background:var(--primary); }
.ledger-inner{
  display:grid; grid-template-columns:repeat(4,1fr);
  padding:44px 28px;
}
.ledger-stat{
  text-align:center; color:var(--white); position:relative;
  padding:0 12px;
  min-width:0;
}
.ledger-stat:not(:last-child)::after{
  content:''; position:absolute; right:0; top:8%; bottom:8%; width:1px;
  background:rgba(225,188,108,0.3);
}
.ledger-num{
  display:block; font-family:var(--font-head); font-weight:800;
  font-size:clamp(1.9rem, 3.4vw, 2.6rem); color:var(--gold-light);
}
.ledger-label{ display:block; font-size:0.82rem; color:rgba(255,255,255,0.78); margin-top:4px; }

/* ==========================================================
   ABOUT
   ========================================================== */
.about{ background:var(--bg); }
.about-inner{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center;
}

.trust-image-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  max-width:460px;
}
.trust-image-card img{
  width:100%;
  height:380px;
  object-fit:cover;
  display:block;
}
.trust-image-overlay{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  background:linear-gradient(180deg, rgba(10,24,18,0.18), rgba(10,24,18,0.82));
  color:var(--white);
  border-radius:16px;
  padding:16px 18px;
}
.trust-image-overlay span{
  display:block;
  font-size:0.74rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:8px;
}
.trust-image-overlay strong{
  font-family:var(--font-head);
  font-size:1.1rem;
}

.about-copy .lead{ font-size:1.12rem; color:var(--dark); }
.about-copy p{ color:var(--grey); }
.about-copy .lead{ color:var(--dark); }

.check-list{
  display:grid; grid-template-columns:1fr 1fr; gap:12px 20px;
  margin-top:1.6rem;
}
.check-list li{
  display:flex; align-items:center; gap:10px;
  font-weight:500; font-size:0.95rem;
}
.check-list li::before{
  content:'✓'; display:flex; align-items:center; justify-content:center;
  width:20px; height:20px; border-radius:50%; background:var(--primary); color:var(--white);
  font-size:0.7rem; flex:none;
}

/* ==========================================================
   PURPOSE (mission/vision)
   ========================================================== */
.purpose{ background:var(--cream); }
.purpose-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:2.2rem; }
.purpose-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:38px 34px; box-shadow:var(--shadow-sm);
}
.purpose-mark{
  display:inline-block; font-family:var(--font-head); font-style:italic; font-weight:600;
  color:var(--primary); font-size:1.5rem; margin-bottom:14px;
  border-bottom:2px solid var(--gold-light); padding-bottom:6px;
}
.purpose-card p{ color:var(--grey); font-size:1.02rem; }

/* ==========================================================
   SERVICES
   ========================================================== */
.services-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(255px,1fr)); gap:24px;
}
.service-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:30px 26px; transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--gold-light); }
.service-icon{
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px; border-radius:14px; margin-bottom:18px;
  background:var(--cream); color:var(--primary);
}
.service-icon svg{ width:26px; height:26px; }
.service-card h3{ font-size:1.1rem; margin-bottom:8px; }
.service-card p{ color:var(--grey); font-size:0.94rem; margin:0 0 16px; }
.card-link{ color:var(--secondary); font-weight:600; font-size:0.88rem; transition:letter-spacing 0.2s ease; }
.card-link:hover{ letter-spacing:0.02em; }

/* ==========================================================
   LISTINGS
   ========================================================== */
.listings{ background:var(--cream); }
.listings-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(320px,1fr)); gap:28px; }
.listing-card{
  background:var(--white); border-radius:var(--radius-md); overflow:hidden;
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.listing-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }

.listing-media{
  position:relative; height:190px;
  display:flex; align-items:flex-end; padding:16px;
  background-size:cover; background-position:center;
  isolation:isolate;
}
.listing-media::before{
  content:''; position:absolute; inset:0; z-index:0;
  background:linear-gradient(180deg, rgba(14,94,74,0.15) 0%, rgba(15,20,18,0.65) 100%);
}
.listing-media > *{ position:relative; z-index:1; }
.listing-media--a{ background-image:url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=760&q=80"); }
.listing-media--b{ background-image:url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=760&q=80"); }
.listing-media--c{ background-image:url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=760&q=80"); }
.listing-media--d{ background-image:url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=760&q=80&sat=-30"); }
.listing-media--e{ background-image:url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=760&q=80"); }
.listing-media--f{ background-image:url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=760&q=80"); }

.pill{
  position:absolute; top:14px; font-size:0.7rem; font-weight:700; letter-spacing:0.03em;
  padding:5px 12px; border-radius:999px; color:var(--white);
}
.pill-verified{ left:14px; background:rgba(34,197,94,0.92); }
.pill-featured{ left:14px; top:46px; background:rgba(200,155,60,0.94); }
.listing-tag{
  margin-left:auto; background:rgba(27,27,27,0.55); color:var(--white);
  font-size:0.76rem; font-weight:600; padding:5px 12px; border-radius:999px;
}

.listing-body{ padding:22px; }
.listing-loc{ color:var(--grey); font-size:0.82rem; margin:0 0 6px; }
.listing-body h3{ font-size:1.18rem; margin-bottom:12px; }
.listing-meta{ display:flex; gap:8px; margin-bottom:16px; flex-wrap:wrap; }
.badge{ font-size:0.72rem; font-weight:600; padding:4px 11px; border-radius:999px; background:var(--cream); color:var(--dark); border:1px solid var(--border); }
.badge-verified{ background:rgba(34,197,94,0.12); color:#16803f; border-color:rgba(34,197,94,0.3); }

.listing-foot{ display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:16px; gap:12px; flex-wrap:wrap; }
.price{ display:block; font-family:var(--font-head); font-weight:700; font-size:1.25rem; color:var(--primary); }
.price-note{ font-size:0.76rem; color:var(--grey); }

.listings-empty{ text-align:center; color:var(--grey); margin-top:2rem; }

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(255px,1fr)); gap:24px; }
.why-card{
  padding:30px 26px; border-radius:var(--radius-md); background:var(--white);
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.why-icon{
  display:flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:50%; margin-bottom:16px;
  background:var(--primary); color:var(--gold-light);
  font-family:var(--font-head); font-weight:700; font-size:1.1rem;
}
.why-icon svg{
  width:22px;
  height:22px;
}
.why-card h3{ font-size:1.08rem; margin-bottom:8px; }
.why-card p{ color:var(--grey); font-size:0.94rem; margin:0; }

/* ==========================================================
   PROCESS
   ========================================================== */
.process{ background:var(--primary); color:var(--white); }
.process .eyebrow{ color:var(--gold-light); }
.process .section-title{ color:var(--white); }

.process-track{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
  position:relative; margin-top:2.6rem;
}
.process-track::before{
  content:''; position:absolute; top:24px; left:6%; right:6%; height:1px;
  background:repeating-linear-gradient(to right, rgba(225,188,108,0.55) 0 8px, transparent 8px 16px);
  z-index:0;
}
.process-step{ position:relative; z-index:1; text-align:left; }
.process-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:50%; background:var(--gold-light); color:var(--primary);
  font-family:var(--font-head); font-weight:800; margin-bottom:18px;
}
.process-step h3{ color:var(--white); font-size:1.12rem; margin-bottom:8px; }
.process-step p{ color:rgba(255,255,255,0.75); font-size:0.94rem; margin:0; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.testi-card{
  margin:0; background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:30px 28px;
}
.stars{ color:var(--secondary); letter-spacing:2px; display:block; margin-bottom:14px; }
.testi-card p{ font-size:1rem; color:var(--dark); margin:0 0 22px; }
.testi-card footer{ display:flex; align-items:center; gap:12px; }
.testi-card footer strong{ display:block; font-size:0.94rem; }
.testi-card footer em{ font-style:normal; font-size:0.82rem; color:var(--grey); }
.avatar{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%; flex:none;
  background:var(--primary); color:var(--white); font-family:var(--font-head); font-weight:700;
}
.avatar-gold{ background:var(--secondary); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-inner{ display:grid; grid-template-columns:0.7fr 1.3fr; gap:56px; }
.faq-head h2{ margin-bottom:0.3em; }
.faq-head .section-desc{ margin:0 0 1.8rem; max-width:none; }
.faq-image{
  border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-md);
  border:1px solid var(--border); aspect-ratio:7/5; margin-top:18px;
}
.faq-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; text-align:left; padding:22px 0;
  font-family:var(--font-head); font-size:1.05rem; font-weight:600; color:var(--dark);
}
.faq-icon{
  flex:none; width:28px; height:28px; border-radius:50%; border:1px solid var(--primary);
  color:var(--primary); display:flex; align-items:center; justify-content:center; font-size:1.05rem;
}
.faq-item.is-open .faq-icon{ background:var(--primary); color:var(--white); }
.faq-a{ display:grid; grid-template-rows:0fr; transition:grid-template-rows 0.3s ease; }
.faq-a > p{ overflow:hidden; margin:0; color:var(--grey); padding-right:44px; }
.faq-item.is-open .faq-a{ grid-template-rows:1fr; }
.faq-a p{ min-height:0; }
.faq-item.is-open .faq-a > p{ padding-bottom:22px; }

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner{ position:relative; background:var(--primary); color:var(--white); overflow:hidden; text-align:center; }
.cta-inner{ position:relative; z-index:1; max-width:640px; margin:0 auto; }
.cta-inner h2{ color:var(--white); font-size:clamp(1.6rem,3vw,2.2rem); }
.cta-inner p{ color:rgba(255,255,255,0.8); margin-bottom:2rem; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-inner{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; }
.contact-list{ margin-top:2rem; display:flex; flex-direction:column; gap:20px; }
.contact-list li{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.contact-label{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.1em; font-weight:700; color:var(--secondary); }
.contact-list a{ font-weight:500; word-break:break-word; }
.contact-list a:hover{ color:var(--primary); }

.contact-form{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:34px; display:grid; grid-template-columns:1fr 1fr; gap:18px; box-shadow:var(--shadow-sm);
}
.field-full{ grid-column:1 / -1; }
.field textarea{ resize:vertical; min-height:100px; }
.field-error{ display:none; font-size:0.78rem; color:#c0392b; }
.field.invalid select, .field.invalid input, .field.invalid textarea{ border-color:#c0392b; }
.field.invalid .field-error{ display:block; }
.contact-form .btn{ grid-column:1 / -1; }
.form-success{
  grid-column:1 / -1; text-align:center; color:#16803f; background:rgba(34,197,94,0.12);
  border-radius:var(--radius-sm); padding:12px; font-size:0.92rem; font-weight:500;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer{ background:var(--dark); color:rgba(255,255,255,0.75); padding-top:64px; }
.footer-grid{
  display:grid; grid-template-columns:1.3fr 0.8fr 0.8fr 1.1fr; gap:40px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.1);
}
.brand-footer .brand-name{ color:var(--white); }
.footer-brand p{ margin-top:16px; font-size:0.9rem; max-width:280px; }
.footer-col h4{ color:var(--white); font-size:0.95rem; margin-bottom:16px; font-family:var(--font-body); font-weight:700; letter-spacing:0.03em; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:0.9rem; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-newsletter p{ font-size:0.88rem; margin:0 0 16px; }
.newsletter-form{ display:flex; gap:8px; }
.newsletter-form input{
  flex:1; min-width:0; padding:11px 14px; border-radius:999px; border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.06); color:var(--white);
}
.newsletter-form input::placeholder{ color:rgba(255,255,255,0.5); }
.newsletter-success{ margin-top:10px; font-size:0.85rem; color:var(--gold-light); }

.footer-bottom{ padding:22px 28px; text-align:center; font-size:0.82rem; }

/* ==========================================================
   FLOATING ELEMENTS
   ========================================================== */
.whatsapp-float{
  position:fixed; right:24px; bottom:24px; z-index:900;
  width:56px; height:56px; border-radius:50%; background:var(--whatsapp); color:var(--white);
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
  transition:transform 0.2s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); }

.chatbot-float{
  position:fixed; right:24px; bottom:92px; z-index:900;
  width:56px; height:56px; border-radius:50%; background:var(--primary); color:var(--white);
  border:none; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
  transition:transform 0.2s ease, background 0.2s ease;
}
.chatbot-float:hover{ transform:scale(1.08); background:var(--primary-glow); }
.chatbot-float svg{ width:24px; height:24px; }

/* ==========================================================
   RESPONSIVE
   (Everything above this line is desktop-first / unchanged.
    Breakpoints below are tuned for large tablets, small
    tablets, large phones and small phones so every section
    scales cleanly without altering the desktop layout.)
   ========================================================== */

/* ---------- Large tablets / small laptops (≤1024px) ---------- */
@media (max-width: 1024px){
  .container{ padding:0 24px; }

  .hero-inner{ grid-template-columns:1fr; }
  .hero-panel{ max-width:460px; margin:0 auto; }
  .about-inner{ grid-template-columns:1fr; }
  .about-visual{ order:2; }
  .trust-image-card{ max-width:100%; margin:0 auto; }
  .contact-inner{ grid-template-columns:1fr; }
  .faq-inner{ grid-template-columns:1fr; gap:36px; }
  .purpose-grid{ grid-template-columns:1fr; }

  .main-nav ul{ gap:1.4rem; }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    row-gap:36px;
  }
  .footer-brand{ grid-column:1 / -1; }
  .footer-brand p{ max-width:420px; }
}

/* ---------- Small tablets / large phones landscape (≤860px) ---------- */
@media (max-width: 860px){
  body.menu-open { overflow:hidden; }

  .hero-visual-card img,
  .trust-image-card img{
    height:280px;
  }
.main-nav{
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-h));

    z-index: 1100;
    background: var(--bg);

    transform: translateX(100%);
    transition: transform 0.3s ease;

    padding: 32px 28px;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:0; }
  .main-nav a{ display:block; padding:16px 0; font-size:1.1rem; border-bottom:1px solid var(--border); }
  .nav-toggle{ display:flex; }
  .header-actions .btn-primary{ display:none; }

  .ledger-inner{ grid-template-columns:1fr 1fr; row-gap:28px; }
  .ledger-stat:nth-child(2)::after{ display:none; }

  .process-track{ grid-template-columns:1fr; gap:34px; }
  .process-track::before{ display:none; }

  .check-list{ grid-template-columns:1fr; }
  .contact-form{ grid-template-columns:1fr; padding:28px; }

  .search-card{ padding:26px; }
  .hero-panel{ max-width:100%; }
}

/* ---------- Phones (≤680px) ---------- */
@media (max-width: 680px){
  .header-inner{ gap:14px; }
  .brand-sub{ max-width:160px; }

  .hero{ padding:56px 0 48px; }
  .hero-desc{ max-width:100%; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }

  .cta-actions .btn{ width:100%; }
  .cta-actions{ flex-direction:column; align-items:stretch; }

  .listing-foot{ align-items:flex-start; }
  .listing-foot .btn{ width:100%; justify-content:center; }

  .whatsapp-float,
  .chatbot-float{ width:50px; height:50px; right:16px; }
  .whatsapp-float{ bottom:16px; }
  .chatbot-float{ bottom:78px; }
}

/* ---------- Small phones (≤560px) ---------- */
@media (max-width: 560px){
  section{ padding:48px 0; }
  .container{ padding:0 18px; }
  .hero{ padding-top:56px; }
  .hero-seal{ display:none; }
  .hero-visual-card img,
  .trust-image-card img{
    height:220px;
  }
  .hero-visual-badge{ padding:10px 12px; }

  .search-card{ padding:22px; }
  .services-grid, .listings-grid, .why-grid, .testi-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-brand{ grid-column:auto; }

  .newsletter-form{ flex-direction:column; }
  .newsletter-form .btn{ width:100%; }

  .purpose-card{ padding:28px 24px; }
  .contact-form{ padding:22px; }

  .stamp-pill{ font-size:0.76rem; padding:7px 13px; }

  .faq-a > p{ padding-right:0; }
}

/* ---------- Extra-small phones (≤400px) ---------- */
@media (max-width: 400px){
  .container{ padding:0 16px; }

  .brand-sub{ display:none; }
  .header-inner{ height:auto; min-height:64px; }
  :root{ --header-h: 64px; }

  .hero-title{ font-size:clamp(2rem, 8vw, 2.6rem); }
  .hero-badges{ gap:8px; }
  .stamp-pill{ font-size:0.72rem; padding:6px 12px; }

  .ledger-inner{ grid-template-columns:1fr 1fr; padding:32px 18px; gap:20px; }
  .ledger-num{ font-size:1.7rem; }

  .search-card{ padding:18px; }
  .search-card-label{ font-size:1.05rem; }

  .purpose-card{ padding:22px 18px; }
  .service-card, .why-card, .testi-card{ padding:24px 20px; }

  .listing-body{ padding:18px; }
  .listing-media{ height:170px; }

  .btn{ padding:13px 20px; font-size:0.9rem; }

  .whatsapp-float,
  .chatbot-float{ width:46px; height:46px; right:14px; }
  .whatsapp-float{ bottom:14px; }
  .chatbot-float{ bottom:68px; }
}