/* ============================================================
   BHUMI ACRES – THEME STYLESHEET v3.0
   Design: Buy/Sell/Rent layout with dark navy + gold accents
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:   #0f1e30;
  --navy2:  #1a2e4a;
  --red:    #cc2929;
  --gold:   #c8972a;
  --green:  #25d366;
  --white:  #ffffff;
  --offwhite: #f5f6f8;
  --text:   #2d3748;
  --muted:  #718096;
  --border: #e2e8f0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.section-sub { color: var(--muted); margin-top: 10px; font-size: 0.95rem; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 24px; height: 68px;
}
.nav-logo-img {
  height: 54px; width: auto; max-width: 180px;
  object-fit: contain; border-radius: 6px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 14px; font-size: 0.9rem; font-weight: 500;
  color: var(--navy); border-radius: 6px;
  transition: background 0.2s;
}
.nav-links a:hover { background: var(--offwhite); color: var(--red); }
.nav-links .sep { color: var(--border); user-select: none; }

/* Social icons in nav */
.nav-socials {
  display: flex; align-items: center; gap: 8px; margin-left: 16px;
}
.nav-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: transform 0.2s;
}
.nav-socials a:hover { transform: scale(1.15); }
.nav-socials .yt  { background: #ff0000; color: #fff; }
.nav-socials .fb  { background: #1877f2; color: #fff; }
.nav-socials .ig  { background: radial-gradient(circle at 30% 110%,#fdf497,#fd5949,#d6249f,#285aeb); color: #fff; }
.nav-socials .li  { background: #0a66c2; color: #fff; }
.nav-socials .tw  { background: #1da1f2; color: #fff; }
.nav-socials .wa  { background: #25d366; color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--border); padding: 12px 20px; }
.mobile-menu a { padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--navy); }
.mobile-menu a:last-child { border: none; }
.mobile-menu.open { display: flex; }
@media(max-width:768px){
  .nav-links, .nav-socials { display: none; }
  .hamburger { display: flex; margin-left: auto; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,20,40,0.82) 0%, rgba(10,20,40,0.55) 60%, rgba(10,20,40,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 60px 20px;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin-bottom: 10px;
}
.hero-content .hero-sub {
  color: rgba(255,255,255,0.85); font-size: 1rem;
  margin-bottom: 20px; font-weight: 400;
}
.hero-badge {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700; font-size: 0.95rem;
  padding: 10px 28px; border-radius: 6px;
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px;
}
.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy2); color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s; cursor: pointer;
}
.btn-call:hover { background: var(--navy); border-color: #fff; }

.btn-wa-green {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 12px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s; cursor: pointer;
}
.btn-wa-green:hover { background: #1ebe5a; }

.btn-view {
  display: flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s; cursor: pointer;
}
.btn-view:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

@media(max-width:600px){
  .hero-ctas { flex-direction: column; }
  .btn-call, .btn-wa-green, .btn-view { justify-content: center; }
}

/* ============================================================
   PROPERTY CARDS STRIP
============================================================ */
.prop-strip { background: #fff; padding: 40px 0; }
.prop-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.prop-strip-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.prop-strip-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.prop-strip-img {
  width: 100%; height: 150px; object-fit: cover; display: block;
}
.prop-strip-body { padding: 12px; }
.prop-strip-price {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 2px;
}
.prop-strip-loc { font-size: 0.78rem; color: var(--muted); margin-bottom: 2px; }
.prop-strip-bhk { font-size: 0.78rem; color: var(--text); font-weight: 500; margin-bottom: 10px; }
.btn-call-best {
  display: block; width: 100%; text-align: center;
  border: 2px solid var(--navy); color: var(--navy);
  padding: 7px 0; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-call-best:hover { background: var(--navy); color: #fff; }

@media(max-width:900px){ .prop-strip-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .prop-strip-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-choose { padding: 56px 0; background: var(--offwhite); }
.why-choose h2 { text-align: center; margin-bottom: 36px; }
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.why-item {
  background: #fff; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.why-item:hover { transform: translateY(-4px); }
.why-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--offwhite); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 14px;
}
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p  { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

@media(max-width:768px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:420px){ .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ============================================================
   WHATSAPP CTA BANNER
============================================================ */
.wa-cta-banner {
  background: var(--navy);
  padding: 36px 20px; text-align: center;
}
.wa-cta-banner h2 {
  color: #fff; font-size: 1.6rem; font-weight: 700; margin-bottom: 20px;
}
.btn-wa-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  padding: 14px 40px; border-radius: 50px;
  font-size: 1.1rem; font-weight: 700;
  transition: background 0.2s; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa-big:hover { background: #1ebe5a; }

/* ============================================================
   YOUTUBE VIDEO TOURS
============================================================ */
.video-tours { padding: 56px 0; background: #fff; }
.video-tours h2 { text-align: center; margin-bottom: 28px; }

.yt-playlist-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.yt-playlist-embed iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* Small video thumbnails row */
.yt-thumb-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-top: 20px;
}
.yt-thumb-mini {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 16/9; cursor: pointer; background: #111;
}
.yt-thumb-mini img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.yt-thumb-mini:hover img { transform: scale(1.06); }
.yt-thumb-mini .yt-play-sm {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
}
.yt-thumb-mini .yt-play-sm svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.yt-thumb-mini .yt-mini-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff; font-size: 0.7rem; font-weight: 600;
  padding: 8px 8px 6px; line-height: 1.3;
}

@media(max-width:600px){ .yt-thumb-row { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   SOCIAL FOLLOW + LEAD FORM
============================================================ */
.social-lead { padding: 56px 0; background: var(--offwhite); }
.social-lead-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.social-follow h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.social-icons-row {
  display: flex; gap: 12px; margin-bottom: 20px;
}
.si {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; transition: transform 0.2s;
}
.si:hover { transform: scale(1.12); }
.si.yt  { background: #ff0000; }
.si.ig  { background: radial-gradient(circle at 30% 110%,#fdf497,#fd5949,#d6249f,#285aeb); }
.si.fb  { background: #1877f2; }

/* Testimonial mini cards */
.testi-mini-row { display: flex; gap: 12px; margin-top: 16px; overflow: hidden; }
.testi-mini {
  background: #fff; border-radius: 8px; padding: 12px;
  flex: 1; min-width: 0; box-shadow: var(--shadow);
}
.testi-mini .stars { color: #f6c90e; font-size: 0.75rem; margin-bottom: 4px; }
.testi-mini p { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }
.testi-mini .auth { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.testi-mini .auth-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy2); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-mini .auth-name { font-size: 0.72rem; font-weight: 600; color: var(--navy); }

/* Lead Form */
.lead-form { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.lead-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.lead-form input, .lead-form select {
  width: 100%; padding: 12px 14px; margin-bottom: 12px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  outline: none; transition: border 0.2s;
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--navy); }
.btn-get-deal {
  width: 100%; padding: 13px;
  background: var(--gold); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.btn-get-deal:hover { background: #b07d20; }

@media(max-width:768px){
  .social-lead-grid { grid-template-columns: 1fr; }
  .testi-mini-row { flex-wrap: wrap; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy); padding: 40px 0 0;
  color: rgba(255,255,255,0.8);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px; padding-bottom: 32px;
}
.footer-logo-img {
  height: 50px; width: auto; object-fit: contain;
  border-radius: 6px; margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.footer-contact { margin-top: 16px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.83rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-map { margin-top: 20px; }
.footer-map iframe {
  width: 100%; height: 180px; border: 0;
  border-radius: 8px; display: block;
}

.footer-cta-bar {
  background: var(--navy2);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-cta-phone {
  color: var(--gold); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.footer-cta-btns { display: flex; gap: 10px; }
.footer-cta-btns a {
  padding: 9px 22px; border-radius: 6px;
  font-weight: 600; font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
}
.ftr-call { background: var(--gold); color: #fff; }
.ftr-wa   { background: var(--green); color: #fff; }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 14px 20px; text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.footer-social-row {
  display: flex; gap: 10px; margin-top: 16px;
}
.footer-social-row a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); color: #fff;
  font-size: 0.8rem; transition: background 0.2s;
}
.footer-social-row a:hover { background: rgba(255,255,255,0.25); }

@media(max-width:900px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--green); color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
@media(max-width:600px){ .float-wa span { display: none; } .float-wa { padding: 14px; border-radius: 50%; } }

/* ============================================================
   VISITING CARD SECTION (About / Why Us)
============================================================ */
.about-section { padding: 56px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-text .section-title { margin-bottom: 16px; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.about-feat { display: flex; align-items: flex-start; gap: 12px; }
.about-feat .feat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 7px; }
.about-feat p { font-size: 0.9rem; color: var(--text); }
.visiting-card-img { width: 100%; border-radius: 12px; box-shadow: 0 24px 64px rgba(0,0,0,0.2); transition: transform 0.4s; }
.visiting-card-img:hover { transform: translateY(-4px) rotate(-0.5deg); }
@media(max-width:768px){ .about-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROP FILTER TABS (reused)
============================================================ */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-tab {
  padding: 8px 18px; border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.83rem; font-weight: 500;
  background: #fff; color: var(--muted); cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* RERA badge */
.rera-bar {
  background: var(--offwhite); border-top: 1px solid var(--border);
  padding: 10px 20px; text-align: center;
  font-size: 0.78rem; color: var(--muted);
}
.rera-bar strong { color: var(--navy); }

/* ============================================================
   v3.1 UPDATES
============================================================ */

/* ---- 0% Brokerage Badge – Highlighted ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c8972a 0%, #f0c040 50%, #c8972a 100%);
  background-size: 200% 200%;
  animation: shimmer 2.5s ease infinite;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(200,151,42,0.5);
  letter-spacing: 0.02em;
}
.badge-icon { font-size: 1.2rem; }
.badge-text { position: relative; }
.badge-text::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,0.3);
  border-radius: 2px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- About section solo (no visiting card) ---- */
.about-grid-solo {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-grid-solo .about-features { text-align: left; display: inline-block; }
.about-grid-solo .section-label { justify-content: center; display: flex; }
.about-grid-solo .about-feat { justify-content: flex-start; }
.about-grid-solo .btn-wa-green { margin: 16px auto 0 !important; }

/* ---- Google Forms Section ---- */
.gforms-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f1e30 0%, #1a2e4a 100%);
}
.gforms-section .section-label { color: #f0c040; }
.gforms-section .section-title { color: #fff; }
.gforms-section .section-sub   { color: rgba(255,255,255,0.7); }

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

.gform-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.gform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.gform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.gform-buyer::before  { background: linear-gradient(90deg, #1565c0, #42a5f5); }
.gform-renter::before { background: linear-gradient(90deg, #2e7d32, #66bb6a); }
.gform-owner::before  { background: linear-gradient(90deg, #c8972a, #f0c040); }

.gform-icon {
  font-size: 2.8rem;
  margin-bottom: 10px;
  display: block;
}
.gform-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.gform-buyer  .gform-tag { background: #e3f2fd; color: #1565c0; }
.gform-renter .gform-tag { background: #e8f5e9; color: #2e7d32; }
.gform-owner  .gform-tag { background: #fff8e1; color: #c8972a; }

.gform-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.gform-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.gform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.gform-buyer  .gform-btn { background: #1565c0; color: #fff; }
.gform-buyer  .gform-btn:hover { background: #0d47a1; }
.gform-renter .gform-btn { background: #2e7d32; color: #fff; }
.gform-renter .gform-btn:hover { background: #1b5e20; }
.gform-owner  .gform-btn { background: var(--gold); color: #fff; }
.gform-owner  .gform-btn:hover { background: #b07d20; }

/* ---- RERA bar update ---- */
.rera-bar {
  background: #e8f4fd;
  border-top: 1px solid #bee3f8;
  border-bottom: 1px solid #bee3f8;
  padding: 11px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #2c5282;
}
.rera-bar strong { color: #1a365d; }

/* ---- Nav logo: white bg version — add light border for definition ---- */
.nav-logo-img {
  height: 52px; width: auto; max-width: 190px;
  object-fit: contain; border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 2px 6px;
  background: #fff;
}

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

  /* Hero */
  .hero { min-height: 420px; }
  .hero-content { padding: 40px 16px; }
  .hero-content h1 { font-size: 1.65rem; }
  .hero-sub { font-size: 0.85rem; }
  .hero-badge { font-size: 0.9rem; padding: 10px 20px; }
  .hero-ctas { gap: 8px; }
  .btn-call, .btn-wa-green, .btn-view {
    padding: 10px 18px; font-size: 0.82rem; flex: 1; justify-content: center;
  }

  /* RERA bar */
  .rera-bar { font-size: 0.72rem; padding: 10px 12px; line-height: 1.5; }

  /* Property strip */
  .prop-strip { padding: 28px 0; }
  .prop-strip-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .prop-strip-img { height: 120px; }
  .prop-strip-price { font-size: 0.9rem; }

  /* Why choose */
  .why-choose { padding: 36px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-item { padding: 20px 14px; }
  .why-icon { width: 48px; height: 48px; font-size: 1.2rem; }

  /* WA CTA */
  .wa-cta-banner h2 { font-size: 1.25rem; }
  .btn-wa-big { font-size: 0.95rem; padding: 12px 24px; }

  /* About */
  .about-section { padding: 36px 0; }
  .about-grid-solo { text-align: left; }

  /* Google Forms */
  .gforms-section { padding: 40px 0; }
  .gforms-grid { grid-template-columns: 1fr; gap: 16px; }
  .gform-card { padding: 24px 18px; }

  /* Video tours */
  .video-tours { padding: 36px 0; }
  .yt-thumb-row { grid-template-columns: 1fr 1fr; }

  /* Social + lead */
  .social-lead { padding: 36px 0; }
  .lead-form { padding: 20px; }
  .testi-mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .testi-mini:last-child { grid-column: 1 / -1; }

  /* Footer */
  .footer-cta-bar { flex-direction: column; text-align: center; gap: 12px; }
  .footer-cta-phone { font-size: 1rem; justify-content: center; }
  .footer-cta-btns { justify-content: center; }

  /* Float WA */
  .float-wa { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.4rem; }
  .hero-ctas { flex-direction: column; }
  .btn-call, .btn-wa-green, .btn-view { width: 100%; }
  .prop-strip-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .yt-thumb-row { grid-template-columns: 1fr 1fr; }
  .testi-mini-row { grid-template-columns: 1fr; }
  .testi-mini:last-child { grid-column: auto; }
  .section-title { font-size: 1.6rem; }
  .gforms-grid { grid-template-columns: 1fr; }
}
