:root{
  --blue:#0B66B2;
  --gold:#D4AF37;
  --text:#1E293B;
  --muted:#64748B;
  --bg:#F5F7FA;
  --white:#FFFFFF;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Inter, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HEADER ================= */
.header{
  background:white;
  border-bottom:1px solid var(--gold);
  position:sticky;
  top:0;
  z-index:100;
}

.nav{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  height:90px;
}

.nav-left{ justify-self:start; }
.nav-center{ justify-self:center; }
.nav-right{ justify-self:end; }

.logo{
  height:100px;
  width:auto;
}

/* MENU */
.nav-center nav ul{
  list-style:none;
  display:flex;
  gap:26px;
  margin:0;
  padding:0;
  align-items:center;
}

nav a{
  text-decoration:none;
  color:var(--blue);
  font-weight:500;
  font-size:15px;
}

nav a:hover{
  color:var(--gold);
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:white;
  display:none;
  gap:40px;
  padding:22px 26px;
  border-radius:14px;
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
  min-width:340px;
}

.dropdown-menu h4{
  margin:0 0 10px;
  color:var(--blue);
  font-size:14px;
}

.dropdown-menu a{
  display:block;
  padding:6px 0;
  font-size:14px;
  color:var(--text);
}

.dropdown:hover .dropdown-menu{
  display:flex;
}

/* ================= HERO ================= */
.hero{
  height:75vh;
  background:url('../images/hero.jpg') center/cover no-repeat;
  position:relative;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:rgba(255,255,255,0.95);
}

.hero h1{
  font-size:44px;
  font-weight:500;
  line-height:1.2;
  letter-spacing:-0.5px;
  margin-bottom:22px;
}

.hero h1 span{
  color:var(--gold);
  font-weight:600;
  position:relative;
}

.hero h1 span::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:3px;
  background:var(--gold);
  border-radius:2px;
}

/* SEARCH BOX */
.search-box{
  background:white;
  padding:14px;
  border-radius:14px;
  display:flex;
  gap:14px;
  box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.search-box select{
  padding:12px 14px;
  border:none;
  font-size:14px;
  color:var(--text);
  background:#f8fafc;
  border-radius:8px;
  outline:none;
}

.search-box button{
  padding:12px 20px;
  border:none;
  font-size:14px;
  background:var(--blue);
  color:white;
  border-radius:10px;
  cursor:pointer;
  font-weight:500;
}

.search-box button:hover{
  background:#094f8a;
}

/* ================= FOOTER ================= */
.footer{
  background:white;
  border-top:1px solid #e5e7eb;
  padding:22px 0;
  text-align:center;
  font-size:14px;
  color:var(--muted);
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .nav-center{ display:none; } /* mobile menu later */
  .hero h1{ font-size:34px; }
  .search-box{ flex-direction:column; }
}
/* ================= PILL SEARCH ================= */
.search-pill{
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  max-width:720px;
  padding:10px;
  border-radius:999px;
  box-shadow:0 25px 45px rgba(0,0,0,0.25);
}

.search-pill input{
  flex:1;
  border:none;
  outline:none;
  padding:14px 20px;
  font-size:15px;
  color:var(--text);
  background:transparent;
}

.search-pill input::placeholder{
  color:#9ca3af;
}

.search-pill button{
  background:#111827;        /* dark premium like reference */
  color:#ffffff;
  border:none;
  padding:14px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  transition:all .25s ease;
}

.search-pill button span{
  font-size:18px;
  line-height:1;
}

.search-pill button:hover{
  background:#000000;
}
/* ================= PROPERTIES SECTION ================= */
.properties-section{
  padding:20px 0;
  background:#ffffff;
}

.section-header{
  margin-bottom:35px;
}

.section-header h2{
  font-size:28px;
  font-weight:600;
  margin-bottom:6px;
}

.section-header p{
  color:var(--muted);
  font-size:14px;
}

/* GRID */
.properties-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */
.property-card{
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow:hidden;
  background:#ffffff;
  transition:all .25s ease;
}

.property-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.property-image{
  position:relative;
}

.property-image img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.image-dots{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  font-size:18px;
  color:#ffffff;
  opacity:0.9;
}

/* BODY */
.property-body{
  padding:18px;
}

/* TAGS */
.property-tags{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}

.property-tags span{
  background:#f1f5f9;
  color:#475569;
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
}

/* TITLE */
.property-body h3{
  font-size:16px;
  font-weight:600;
  margin:6px 0;
}

.property-location{
  font-size:13px;
  color:var(--muted);
}

/* PRICE */
.property-price{
  font-size:20px;
  font-weight:700;
  margin:14px 0;
}

/* DIVIDER */
.property-divider{
  height:1px;
  background:#e5e7eb;
  margin:14px 0;
}

/* META */
.property-meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  font-size:13px;
  color:#334155;
}

/* VIEW ALL */
.view-all{
  margin-top:40px;
}

.view-btn{
  display:inline-block;
  background:#111827;
  color:white;
  padding:14px 22px;
  border-radius:12px;
  text-decoration:none;
  font-size:14px;
}

.view-btn:hover{
  background:#000000;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .properties-grid{
    grid-template-columns:1fr;
  }
}
.j-container{max-width:1200px;margin:auto}
.j-top{display:grid;grid-template-columns:2fr 1fr;gap:30px}

.j-main-img img{
  width:100%;height:420px;object-fit:cover;border-radius:18px
}
.j-overlay{
  position:absolute;bottom:15px;right:15px;
  background:rgba(0,0,0,.6);color:#fff;
  padding:8px 12px;border-radius:8px
}

.j-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:10px}
.j-thumbs img{height:90px;object-fit:cover;border-radius:10px}

.j-sidebar{position:sticky;top:90px}
.j-price-card{
  border:1px solid #e5e7eb;padding:24px;border-radius:18px
}
.j-btn{width:100%;padding:14px;margin-top:10px;border-radius:10px}
.j-btn.primary{background:#0B66B2;color:#fff;border:none}
.j-btn.outline{background:#fff;border:1px solid #0B66B2;color:#0B66B2}

.j-title{margin:30px 0}
.j-facts{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid #e5e7eb;padding-bottom:20px}
.j-facts div strong{font-size:18px;display:block}
.j-facts span{font-size:13px;color:#64748b}

.j-section{margin-top:40px}
.j-amenities{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.j-amenity{display:flex;gap:8px;align-items:center}

.j-photo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.j-photo-grid img{height:200px;object-fit:cover;border-radius:14px}


/* Agent card */
.j-agent{
  display:flex;
  gap:12px;
  align-items:center;
  margin:16px 0 20px;
  padding:12px;
  background:#f8fafc;
  border-radius:12px;
}

.j-agent-avatar{
  width:44px;
  height:44px;
  background:#0B66B2;
  color:#fff;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}

.j-agent span{
  font-size:13px;
  color:#64748b;
}
/* ================= WHY GHARNITI ================= */
.why-gharniti{
  padding:80px 0;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.section-header.center{
  text-align:center;
  max-width:720px;
  margin:0 auto 48px;
}
.section-header.center h2{
  font-size:28px;
  font-weight:700;
}
.section-header.center p{
  margin-top:10px;
  color:#64748b;
  font-size:15px;
  line-height:1.6;
}

/* Grid */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* Cards */
.why-card{
  background:#ffffff;
  border-radius:18px;
  padding:28px 26px;
  box-shadow:0 14px 34px rgba(15,23,42,0.08);
  transition:all .3s ease;
}
.why-card:hover{
  transform:translateY(-6px);
}

/* Icon */
.why-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:#e6f0fa;
  color:#0B66B2;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

/* Text */
.why-card h3{
  font-size:17px;
  font-weight:600;
  margin-bottom:10px;
}
.why-card p{
  font-size:14px;
  color:#475569;
  line-height:1.6;
}

/* Responsive */
@media(max-width:900px){
  .why-grid{
    grid-template-columns:1fr;
  }
}
/* ================= FIND HOME FAST ================= */
.find-home{
  padding:90px 0;
  background:#f8fafc;
}

.find-home-wrapper{
  display:grid;
  grid-template-columns:70% 30%;
  gap:30px;
  align-items:stretch;
}

/* LEFT */
.find-home-left{
  background:#ffffff;
  border-radius:22px;
  padding:40px;
  box-shadow:0 16px 40px rgba(15,23,42,0.08);
}

.find-home-left h2{
  font-size:30px;
  font-weight:700;
}

.find-home-left .subtitle{
  margin:12px 0 30px;
  font-size:15px;
  color:#64748b;
  line-height:1.6;
}

/* FORM */
.find-home-form .form-row{
  display:flex;
  gap:16px;
  margin-bottom:16px;
}

.find-home-form input,
.find-home-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  font-size:14px;
  font-family:Inter,sans-serif;
}

.find-home-form input:focus,
.find-home-form textarea:focus{
  outline:none;
  border-color:#0B66B2;
}

.submit-btn{
  margin-top:10px;
  padding:14px 26px;
  border-radius:999px;
  background:#0B66B2;
  color:#ffffff;
  font-size:15px;
  font-weight:600;
  border:none;
  cursor:pointer;
  transition:all .3s ease;
}
.submit-btn:hover{
  background:#084c87;
}

/* RIGHT */
.find-home-right{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(2,6,23,.25),rgba(2,6,23,.75)),
    url('../images/hero.jpg') center/cover no-repeat;
}

.right-overlay{
  height:100%;
  padding:34px 26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#ffffff;
}

.right-overlay h3{
  font-size:26px;
  font-weight:700;
  line-height:1.2;
}

.trust-points{
  list-style:none;
  padding:0;
  margin:24px 0;
}
.trust-points li{
  font-size:15px;
  margin-bottom:14px;
}

.right-btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.6);
  color:#ffffff;
  font-size:14px;
  font-weight:500;
  transition:all .3s ease;
}
.right-btn:hover{
  background:#ffffff;
  color:#0B66B2;
}

/* RESPONSIVE */
@media(max-width:900px){
  .find-home-wrapper{
    grid-template-columns:1fr;
  }
}
/* ================= 30 MIN HIGHLIGHT ================= */
.time-highlight{
  display:flex;
  align-items:center;
  gap:14px;
  margin:22px 0 34px;
  padding:18px 22px;
  border-radius:16px;
  background:linear-gradient(135deg,#e6f0fa,#ffffff);
  box-shadow:0 12px 30px rgba(11,102,178,.15);
  width:fit-content;
}

.time-number{
  font-size:34px;
  font-weight:800;
  color:#0B66B2;
  line-height:1;
}

.time-text{
  font-size:18px;
  font-weight:600;
  color:#0f172a;
  line-height:1.2;
}

.time-text small{
  font-size:13px;
  font-weight:500;
  color:#64748b;
}

/* Subtle pulse to draw attention */
.time-highlight{
  animation:timePulse 2.5s infinite;
}

@keyframes timePulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.03)}
  100%{transform:scale(1)}
}
/* ================= NEIGHBOURHOODS ================= */
.neighbourhoods{
  padding:80px 0;
  background:#ffffff;
}

.neighbourhood-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:36px;
}

/* Card */
.neighbourhood-card{
  position:relative;
  height:260px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(15,23,42,0.15);
  transition:all .35s ease;
}

.neighbourhood-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.neighbourhood-card:hover img{
  transform:scale(1.08);
}

/* Overlay */
.neighbourhood-card .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(2,6,23,.2) 20%,
    rgba(2,6,23,.75) 100%
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  color:#ffffff;
}

.neighbourhood-card .small-text{
  font-size:13px;
  opacity:.85;
}

.neighbourhood-card h3{
  font-size:26px;
  font-weight:700;
  margin-top:4px;
}

/* Hover lift */
.neighbourhood-card:hover{
  transform:translateY(-6px);
}

/* Responsive */
@media(max-width:900px){
  .neighbourhood-grid{
    grid-template-columns:1fr;
  }
  .neighbourhood-card{
    height:220px;
  }
}
/* ================= WHY VASAI VIRAR – 6 GRID ================= */
.why-vasai-virar-grid{
  padding:70px 0;
  background:#ffffff;
}

.why-vasai-virar-grid .section-header{
  max-width:760px;
  margin-bottom:36px;
}

.why-vasai-virar-grid h2{
  font-size:28px;
  font-weight:700;
}

.why-vasai-virar-grid p{
  margin-top:10px;
  font-size:15px;
  color:#64748b;
  line-height:1.6;
}

/* Grid */
.vasai-grid-6{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* Box */
.vasai-box{
  padding:22px 22px 24px;
  border-radius:20px;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#D4AF37,#F5D77A,#C9A227) border-box;
  border:1.5px solid transparent;
  transition:all .3s ease;
}

.vasai-box:hover{
  transform:translateY(-4px);
}

/* Icon */
.box-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background:#f8fafc;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin-bottom:14px;
}

/* Text */
.vasai-box h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:8px;
}

.vasai-box p{
  font-size:14px;
  color:#475569;
  line-height:1.6;
}

/* Responsive */
@media(max-width:900px){
  .vasai-grid-6{
    grid-template-columns:1fr;
  }
}

/* ================= INFRASTRUCTURE SECTION ================= */
.infra-section{
  padding:90px 0;
  background:#f8fafc;
}

.section-header.center{
  text-align:center;
  max-width:820px;
  margin:0 auto 50px;
}

.section-tag{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  color:#D4AF37;
  margin-bottom:8px;
}

/* GRID LAYOUT */
.infra-grid-final{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-areas:
    "bigLeft small1 small2"
    "small3 small4 bigRight";
  gap:24px;
}

/* GRID AREAS */
.big-left{ grid-area: bigLeft; }
.big-right{ grid-area: bigRight; }
.small-1{ grid-area: small1; }
.small-2{ grid-area: small2; }
.small-3{ grid-area: small3; }
.small-4{ grid-area: small4; }

/* CARD BASE */
.infra-card{
  background:#ffffff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(15,23,42,0.08);
  display:flex;
  flex-direction:column;
}

/* IMAGE */
.infra-card img{
  width:100%;
  object-fit:cover;
}

.infra-card.big img{ height:260px; }
.infra-card.small img{ height:160px; }

/* CONTENT */
.infra-body{
  padding:22px;
}

.infra-body h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:6px;
}

.infra-body p{
  font-size:14px;
  color:#475569;
  line-height:1.6;
}

/* TAGS */
.infra-tags{
  margin-top:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.infra-tags span{
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  background:#e6f0fa;
  color:#0B66B2;
}

/* MOBILE */
@media(max-width:900px){
  .infra-grid-final{
    grid-template-columns:1fr;
    grid-template-areas:
      "bigLeft"
      "small1"
      "small2"
      "small3"
      "small4"
      "bigRight";
  }
}
/* ================= REVIEWS SECTION ================= */
.reviews-section{
  position:relative;
  padding:100px 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.35),
      rgba(0,0,0,.6)
    ),
    url('/assets/images/hero.jpg') center/cover no-repeat;
}


.reviews-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.4),
    rgba(0,0,0,.85)
  );
  z-index:1;
}

.reviews-section .container{
  position:relative;
  z-index:2;
}

/* Slider */
.reviews-slider-wrapper{
  overflow:hidden;
  margin-top:40px;
}

.reviews-slider{
  display:flex;
  gap:26px;
  transition:transform .6s ease;
}

/* Card */
.review-card{
  min-width:33%;
  background:#ffffff;
  border-radius:22px;
  padding:32px;
  box-shadow:0 14px 34px rgba(15,23,42,0.1);
}

.review-card p{
  font-size:15px;
  color:#334155;
  line-height:1.7;
}

.review-name{
  display:block;
  margin-top:18px;
  font-size:14px;
  font-weight:600;
  color:#0B66B2;
}

/* Light header */
.section-header.light h2{
  color:#ffffff;
}

.section-header.light p{
  color:#e5e7eb;
}

/* Mobile */
@media(max-width:900px){
  .review-card{
    min-width:100%;
  }
}

/* ================= GHARNITI FOOTER ================= */
.gh-footer{
  background:#ffffff;
  padding:80px 0 30px;
  border-top:1px solid #e5e7eb;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 2fr;
  gap:40px;
  align-items:start;
}

/* BRAND */
.footer-brand .brand-name{
  font-size:28px;
  font-weight:700;
  color:#0B66B2;
}

.footer-brand .brand-sub{
  margin-top:6px;
  font-size:14px;
  color:#64748b;
}

.social-links{
  display:flex;
  gap:14px;
  margin:18px 0 22px;
}

.social-links a{
  font-size:15px;
  color:#64748b;
  transition:.3s;
}
.social-links a:hover{
  color:#0B66B2;
}

.powered-by{
  font-size:12px;
  color:#94a3b8;
  margin-bottom:8px;
}

.partners{
  display:flex;
  gap:14px;
  font-size:13px;
  color:#334155;
}

/* LINKS */
.footer-links h4{
  font-size:15px;
  font-weight:600;
  margin-bottom:14px;
}

.footer-links a{
  display:block;
  font-size:14px;
  color:#64748b;
  margin-bottom:10px;
  transition:.3s;
}
.footer-links a:hover{
  color:#0B66B2;
}

/* CTA CARD */
.footer-cta{
  background:
    linear-gradient(#1e293b,#0f172a) padding-box,
    linear-gradient(135deg,#D4AF37,#F5D77A,#C9A227) border-box;
  border:1.5px solid transparent;
  border-radius:20px;
  padding:28px;
  color:#ffffff;
}

.footer-cta h3{
  font-size:20px;
  font-weight:600;
}

.footer-cta p{
  margin:12px 0 18px;
  font-size:14px;
  line-height:1.6;
  color:#e5e7eb;
}

.cta-btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.5);
  color:#ffffff;
  font-size:14px;
  transition:.3s;
}
.cta-btn:hover{
  background:#ffffff;
  color:#0B66B2;
}

/* BOTTOM */
.footer-bottom{
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid #e5e7eb;
  text-align:center;
  font-size:13px;
  color:#94a3b8;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
}
/* ================= HEADER CALL BOX (FIXED ALIGNMENT) ================= */
.call-box{
  display:inline-flex;              /* important */
  align-items:center;               /* vertical center */
  justify-content:center;
  gap:8px;

  padding:10px 18px;
  border-radius:999px;

  background:
    linear-gradient(#ffffff,#ffffff) padding-box,
    linear-gradient(135deg,#D4AF37,#F5D77A,#C9A227) border-box;
  border:1.5px solid transparent;

  font-size:14px;
  font-weight:600;
  line-height:1;                    /* key fix */
  color:#0f172a;
}

/* Icon wrapper */
.call-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* SVG fix */
.call-icon svg{
  display:block;                    /* removes inline SVG gap */
  width:16px;
  height:16px;
}

/* Number text */
.call-number{
  display:flex;
  align-items:center;
  line-height:1;                    /* key fix */
}
/* ================= FOOTER LOGO ================= */
.footer-logo img{
  max-width:160px;        /* adjust if needed */
  height:auto;
  display:block;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap:12px;
}
/* ================= HOME LOAN COMING SOON (REFINED) ================= */
.home-loan-soon{
  padding:35px 0;
  background:#ffffff;
}

.loan-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:70px;
  align-items:center;
}

/* LEFT */
.loan-left.refined{
  max-width:520px;
}

.loan-left .soon-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:#e6f0fa;
  color:#0B66B2;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}

/* BIG TYPOGRAPHY */
.loan-heading{
  font-size:52px;
  line-height:1.15;
  margin-bottom:22px;
}

.loan-heading span{
  font-weight:400;
  color:#9ca3af; /* soft grey like reference */
}

.loan-heading strong{
  font-weight:700;
  color:#111827;
}

/* SUBTEXT */
.loan-sub.refined{
  font-size:17px;
  color:#6b7280;
  line-height:1.7;
}

/* RIGHT SLIDER */
.loan-right{
  position:relative;
}

.loan-slider{
  position:relative;
  height:280px;
}

/* CARD */
.loan-card{
  position:absolute;
  inset:0;
  background:#0B66B2;
  color:#ffffff;
  border-radius:28px;
  padding:40px 34px;
  box-shadow:0 25px 60px rgba(11,102,178,.35);
  opacity:0;
  transform:scale(.92);
  transition:all .6s ease;
}

.loan-card.active{
  opacity:1;
  transform:scale(1);
  z-index:2;
}

/* CARD CONTENT */
.loan-icon{
  width:66px;
  height:66px;
  border-radius:20px;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:20px;
}

.loan-card h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:12px;
}

.loan-card p{
  font-size:15px;
  color:#e5e7eb;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:900px){
  .loan-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .loan-heading{
    font-size:40px;
  }

  .loan-slider{
    height:300px;
  }
}
/* SVG ICON FIX */
.loan-icon svg{
  width:30px;
  height:30px;
  display:block;
}
/* ================= ABOUT GHARNITI ================= */
.about-gharniti{
  padding:100px 0;
  background:#ffffff;
}

.about-grid{
  display:grid;
  grid-template-columns:4fr 1fr;
  gap:60px;
  align-items:center;
}

.about-content h1{
  font-size:38px;
  font-weight:700;
  margin-bottom:14px;
}

.about-sub{
  font-size:18px;
  color:#475569;
  margin-bottom:20px;
}

.about-content p{
  font-size:15px;
  color:#334155;
  line-height:1.7;
  margin-bottom:14px;
}

.about-image img{
  width:100%;
  border-radius:18px;
  object-fit:cover;
}

/* ================= MVV ================= */
.mvv-section{
  padding:90px 0;
  background:#f8fafc;
}

.mvv-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.mvv-card{
  background:#ffffff;
  border-radius:22px;
  padding:32px;
  box-shadow:0 14px 34px rgba(15,23,42,0.08);
}

.mvv-card h3{
  font-size:20px;
  margin-bottom:12px;
}

.mvv-card p{
  font-size:15px;
  color:#475569;
  line-height:1.6;
}

/* ================= WHY VASAI ================= */
.why-vasai{
  padding:100px 0;
  background:#ffffff;
}

.why-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.why-card{
  padding:28px;
  border-radius:22px;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#D4AF37,#F5D77A,#C9A227) border-box;
  border:1.5px solid transparent;
}

.why-card h4{
  font-size:17px;
  margin-bottom:8px;
}

.why-card p{
  font-size:14px;
  color:#475569;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-grid,
  .mvv-grid,
  .why-grid{
    grid-template-columns:1fr;
  }
}
/* ================= MVV SECTION ================= */
.mvv-section{
  padding:100px 0;
  background:#f8fafc;
}

.section-header.center{
  text-align:center;
  max-width:780px;
  margin:0 auto 50px;
}

.section-header.center h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:10px;
}

.section-header.center p{
  font-size:16px;
  color:#64748b;
}

/* GRID */
.mvv-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.mvv-card{
  position:relative;
  background:#ffffff;
  border-radius:22px;
  padding:34px;
  box-shadow:0 14px 34px rgba(15,23,42,0.08);
  overflow:hidden;
}

/* CONTENT */
.mvv-card h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
}

.mvv-card p{
  font-size:15px;
  color:#475569;
  line-height:1.7;
}

/* ================= STANDARD BORDER ANIMATION ================= */
.animated-mvv .mvv-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  pointer-events:none;

  /* fake border using background */
  background:
    linear-gradient(
      90deg,
      #D4AF37,
      #F5D77A,
      #C9A227
    );

  background-size:0% 2px;
  background-repeat:no-repeat;
  background-position:left top;

  animation:borderDraw 4.5s linear infinite;
}

/* SEQUENCE: LEFT → RIGHT */
.animated-mvv .mvv-card:nth-child(1)::after{
  animation-delay:0s;
}
.animated-mvv .mvv-card:nth-child(2)::after{
  animation-delay:1.5s;
}
.animated-mvv .mvv-card:nth-child(3)::after{
  animation-delay:3s;
}

/* KEYFRAMES */
@keyframes borderDraw{
  0%{
    background-size:0% 2px;
  }
  50%{
    background-size:100% 2px;
  }
  100%{
    background-size:0% 2px;
    background-position:right top;
  }
}

/* RESPONSIVE */
@media(max-width:900px){
  .mvv-grid{
    grid-template-columns:1fr;
  }
}
/* ================= WHY GHARNITI PREMIUM ================= */
.why-gharniti-premium{
  padding:50px 0;
  background:#ffffff;
}

.why-gh-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */
.why-gh-card{
  position:relative;
  padding:34px;
  border-radius:24px;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#D4AF37,#F5D77A,#C9A227) border-box;
  border:1.4px solid transparent;

  box-shadow:0 20px 45px rgba(15,23,42,0.08);
  transition:all .35s ease;
}

/* Hover = luxury lift */
.why-gh-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(15,23,42,0.12);
}

/* Tag */
.card-tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  color:#0B66B2;
  margin-bottom:12px;
}

.card-tag.gold{
  color:#C9A227;
}

/* Title */
.why-gh-card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
  line-height:1.35;
}

/* Text */
.why-gh-card p{
  font-size:14.5px;
  color:#475569;
  line-height:1.7;
}

/* Highlight card */
.why-gh-card.highlight{
  background:
    linear-gradient(180deg,#0B66B2,#0A4F8A) padding-box,
    linear-gradient(135deg,#D4AF37,#F5D77A,#C9A227) border-box;
}

.why-gh-card.highlight h3,
.why-gh-card.highlight p{
  color:#ffffff;
}
.about-gharniti-story.premium-fix{
  padding:20px 0;
  background:#f8fafc;
}
/* RESPONSIVE */
@media(max-width:900px){
  .why-gh-grid{
    grid-template-columns:1fr;
  }
}
/* ================= PREMIUM STORY FIX ================= */


.story-grid-fix{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:80px;
  align-items:flex-start;
}

/* LEFT CONTENT */
.story-content-fix{
  max-width:720px;
}

.section-eyebrow{
  font-size:12px;
  letter-spacing:.14em;
  font-weight:700;
  color:#0B66B2;
  margin-bottom:5px;
  display:inline-block;
}

.story-content-fix h2{
  font-size:40px;
  line-height:1.2;
  margin-bottom:10px;
}

.story-intro{
  font-size:18px;
  color:#475569;
  margin-bottom:22px;
}

.story-content-fix p{
  font-size:15px;
  line-height:1.7;
  color:#334155;
  margin-bottom:14px;
}

/* ZERO BROKERAGE INLINE (NOT BOXED) */
.zero-brokerage-inline{
  margin:12px 0;
  padding-left:16px;
  border-left:3px solid #D4AF37;
}

.zero-brokerage-inline strong{
  display:block;
  font-size:16px;
  color:#0B66B2;
  margin-bottom:4px;
}

.zero-brokerage-inline span{
  font-size:14.5px;
  color:#475569;
}

/* RIGHT PROOF COLUMN */
.story-proof-fix{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.proof-card{
  background:#ffffff;
  border-radius:22px;
  padding:32px;
  text-align:center;
  box-shadow:0 18px 40px rgba(15,23,42,0.08);
}

.proof-card.gold{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#D4AF37,#F5D77A,#C9A227) border-box;
  border:1.4px solid transparent;
}

.proof-number{
  font-size:44px;
  font-weight:700;
  color:#0B66B2;
  display:block;
  margin-bottom:6px;
}

.proof-card p{
  font-size:18px;
  color:#475569;
  line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:900px){
  .story-grid-fix{
    grid-template-columns:1fr;
    gap:40px;
  }
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.blog-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.blog-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.blog-card h3{
  padding:16px;
  font-size:18px;
}

.blog-card p{
  padding:0 16px 20px;
  color:#64748b;
}
/* SINGLE BLOG */
.single-blog h1{
  font-size:36px;
  margin-bottom:10px;
}

.blog-sub{
  font-size:18px;
  color:#64748b;
  margin-bottom:20px;
}

.blog-cover{
  width:100%;
  max-height:420px;
  object-fit:cover;
  border-radius:20px;
  margin:30px 0;
}

.blog-content{
  font-size:16px;
  line-height:1.8;
  color:#334155;
}

.back-link{
  display:inline-block;
  margin-top:40px;
  color:#0B66B2;
  font-weight:600;
}
/* ================= HERO LEAD ================= */
.hero-lead{
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:center;
}

.hero-lead-wrapper{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:40px;
  align-items:center;
}

/* LEFT FORM */
.hero-form-box{
  background:rgba(255,255,255,.95);
  padding:36px;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.hero-form-box h1{
  font-size:32px;
  font-weight:700;
  line-height:1.25;
}
.hero-form-box h1 span{
  color:#0B66B2;
}

.hero-note{
  margin:10px 0 22px;
  font-size:14px;
  color:#475569;
}

.hero-form input,
.hero-form textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:12px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  font-size:14px;
}

.hero-form button{
  width:100%;
  margin-top:10px;
  padding:15px;
  border:none;
  border-radius:999px;
  background:#0B66B2;
  color:#fff;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
}

.urgency-line{
  margin-top:12px;
  font-size:13px;
  color:#dc2626;
  font-weight:600;
  text-align:center;
}

/* OR DIVIDER */
.hero-or{
  position:relative;
  height:220px;
  width:1px;
  background:rgba(255,255,255,.4);
}
.hero-or span{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  color:#0f172a;
  font-size:12px;
  font-weight:700;
  padding:6px 14px;
  border-radius:999px;
}

/* RIGHT EXPERT */
.hero-expert-box{
  background:rgba(255,255,255,.95);
  padding:36px;
  border-radius:24px;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.expert-avatar{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#0B66B2;
  color:#fff;
  font-size:20px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
}

.expert-role{
  font-size:13px;
  color:#64748b;
}

.expert-desc{
  margin:14px 0 22px;
  font-size:14px;
  color:#334155;
}

.expert-actions{
  display:flex;
  gap:12px;
}
.call-btn,
.whatsapp-btn{
  flex:1;
  padding:13px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  text-align:center;
}
.call-btn{ background:#0B66B2; color:#fff; }
.whatsapp-btn{ background:#25D366; color:#fff; }

.trust-line{
  margin-top:14px;
  font-size:13px;
  color:#16a34a;
  font-weight:600;
}

@media (max-width: 768px){
.properties-section{
  padding:10px 0;
  background:#ffffff;
}
}
/* ================= ABOUT US – MOBILE RESPONSIVE FIX ================= */
@media (max-width: 768px){

  /* STORY SECTION */
  .story-grid-fix{
    display:flex !important;
    flex-direction:column !important;
    gap:24px;
  }

  .story-content-fix h2{
    font-size:20px;
    line-height:1.3;
  }

  .story-content-fix p{
    font-size:14px;
  }

  .zero-brokerage-inline{
    padding:12px;
    font-size:13px;
    border-radius:12px;
  }

  /* RIGHT CARDS STACK */
  .story-proof-fix{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }

  .proof-card{
    padding:16px;
  }

  /* WHY GHARNITI GRID */
  .why-gh-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px;
  }

  .why-gh-card{
    padding:18px;
  }

  .why-gh-card h3{
    font-size:16px;
  }

  .why-gh-card p{
    font-size:14px;
  }

.about-gharniti-story {
  padding:35px;
  background:#f8fafc;
}

}
/* ================= STATIC PAGES ================= */
.static-page{
  padding:60px 0;
  background:#ffffff;
}

.static-container{
  max-width:900px;
  margin:0 auto;
  padding:0 20px;
}

.static-container h1{
  font-size:32px;
  font-weight:700;
  margin-bottom:24px;
  color:#0f172a;
}

.static-content{
  font-size:15px;
  line-height:1.8;
  color:#334155;
}

.static-content h2{
  font-size:22px;
  margin:32px 0 12px;
  color:#0f172a;
}

.static-content ul{
  padding-left:18px;
  margin:12px 0;
}

.static-content li{
  margin-bottom:8px;
}

/* Mobile */
@media(max-width:768px){
  .static-page{
    padding:40px 0;
  }

  .static-container h1{
    font-size:24px;
  }
}
/* ================= HEADER MOBILE FIX ================= */


.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

  .nav-center {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .call-number {
    font-size: 13px;
  }

  .mobile-menu.show {
    display: flex;
  }
}
/* ================= HEADER HARD FIX ================= */

/* Prevent duplicate nav rendering */
header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Only show nav inside header */


/* Header nav alignment */
.header nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

/* Remove underline issue */
.header nav ul li a {
  text-decoration: none;
}

/* Prevent wrapping */
.header .nav {
  flex-wrap: nowrap;
}

/* Ensure header is isolated */
.header {
  position: relative;
  z-index: 999;
  background: #fff;
}
@media (max-width: 768px) {
  .nav-center {
    display: none !important;
  }
}
/* ================= HEADER SAFE SCOPE ================= */
.header nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:26px;
  align-items:center;
}

.header nav a{
  text-decoration:none;
  color:var(--blue);
  font-weight:500;
  font-size:15px;
}
/* ================= MOBILE HEADER FIX (FINAL) ================= */
@media (max-width: 768px) {

  /* COMPLETELY KILL DESKTOP NAV ON MOBILE */
  .nav-center,
  .nav-center nav,
  .nav-center nav ul {
    display: none !important;
  }

  /* Ensure header content stays in one row */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Prevent text leakage */
  nav {
    overflow: hidden;
  }

  /* Safety: hide stray nav text */
  header ul,
  header nav ul {
    list-style: none;
  }
}
/* ================= MOBILE NAV TEXT KILL SWITCH ================= */
@media (max-width: 768px) {

  /* Completely disable desktop nav text rendering */
  .nav-center,
  .nav-center * {
    font-size: 0 !important;
    line-height: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Restore mobile menu text */
  .mobile-menu,
  .mobile-menu * {
    font-size: 14px !important;
    line-height: normal !important;
    height: auto !important;
  }
}
.header {
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
/* ================= CONTACT US PAGE ================= */

.contact-page{
  padding:90px 0;
  background:#f8fafc;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.contact-info h1{
  font-size:38px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:16px;
}

.contact-info p{
  font-size:16px;
  color:#475569;
  max-width:520px;
  line-height:1.7;
}

.contact-points{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-points strong{
  font-size:15px;
  color:#0B66B2;
}

.contact-points span{
  display:block;
  font-size:14px;
  color:#64748b;
  margin-top:4px;
}

/* RIGHT FORM CARD */
.contact-form-card{
  background:#ffffff;
  border-radius:24px;
  padding:36px;
  box-shadow:0 20px 50px rgba(15,23,42,0.1);
}

.contact-form-card h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:22px;
  color:#0f172a;
}

/* FORM */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:14px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  font-size:14px;
  font-family:Inter, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#0B66B2;
}

/* BUTTON */
.contact-submit{
  width:100%;
  padding:14px;
  border-radius:999px;
  border:none;
  background:#0B66B2;
  color:#ffffff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:all .3s ease;
}

.contact-submit:hover{
  background:#084c87;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .contact-wrapper{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-info h1{
    font-size:26px;
  }

  .contact-form-card{
    padding:26px;
  }
}
