/* ============================================================
   JHARKHAND PROPERTIES — RESPONSIVE CSS
   Updated to match reference image layout.
   Breakpoints: 1200 / 992 / 768 / 576 / 400px
   ============================================================ */

/* ── ≤ 1200px ────────────────────────────────────────────────── */
@media (max-width: 1200px) {

  .top-info-item:nth-child(2) { display: none; } /* hide email */

  .nav-link { font-size: 13px; padding: 8px 9px; }

  .btn-enquire { padding: 10px 16px 10px 20px; font-size: 13px; }

  .hero-heading { font-size: clamp(36px, 4.5vw, 56px); }

  .hero-left { max-width: 55%; }

  .customer-badge { right: 24px; top: 24px; width: 106px; height: 106px; }
  .customer-badge__number { font-size: 17px; }
  .customer-badge__label { font-size: 8px; }

  .search-btn { padding: 13px 22px; font-size: 14px; }
}

/* ── ≤ 992px  (hamburger, hero reflow) ───────────────────────── */
@media (max-width: 992px) {

  /* Show hamburger, hide desktop-only elements */
  .hamburger      { display: flex; }
  .btn-enquire    { display: none; }

  /* Full-height slide-down mobile nav */
  .nav-links {
    position: fixed;
    top: calc(var(--top-h) + var(--nav-h));
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.38s ease, opacity 0.28s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-top: 1px solid var(--border);
    z-index: 998;
  }

  .site-header.is-sticky .nav-links { top: 68px; }

  .nav-links.is-open { max-height: 520px; opacity: 1; overflow-y: auto; }

  .nav-links > li { width: 100%; }

  .nav-link {
    padding: 14px 22px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    justify-content: space-between;
  }

  .nav-link::after { display: none; }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: #fafafa;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.is-open .dropdown-menu { max-height: 280px; }

  .dropdown-link {
    padding: 12px 32px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    border-left: none;
  }

  /* Hero — hero-left expands full width, image still shows right */
  .hero-left { max-width: 65%; }

  .hero-heading { font-size: clamp(32px, 5.5vw, 48px); }

  .customer-badge { right: 16px; top: 18px; width: 96px; height: 96px; }
  .customer-badge__number { font-size: 16px; }
  .customer-badge__label  { font-size: 8px; }

  /* Land pins — stay on right portion */
  .land-pin:nth-child(1) { left: 60%; top: 30%; }
  .land-pin:nth-child(2) { left: 70%; top: 52%; }
  .land-pin:nth-child(3) { left: 82%; top: 44%; }
  .land-pin:nth-child(4) { left: 76%; top: 68%; }

  /* Search bar stacks */
  .hero-search {
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 0;
  }

  .search-field {
    flex: 1 1 calc(50% - 32px);
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
  }

  .search-divider { display: none; }

  .search-btn {
    flex: 1 1 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
  }
}

/* ── ≤ 768px ─────────────────────────────────────────────────── */
@media (max-width: 768px) {

  :root { --top-h: auto; }

  .top-header { min-height: 45px; height: auto; padding: 6px 0; }

  .top-header__inner {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: space-between;
  }

  .top-header__left  { flex-wrap: wrap; gap: 8px 14px; }

  /* Show only phone */
  .top-info-item:nth-child(1),
  .top-info-item:nth-child(2) { display: none; }

  .top-info-item { font-size: 12px; padding: 0 12px 0 0; }
  .top-info-item + .top-info-item { border-left: none; padding-left: 0; }

  .main-nav { height: 64px; }

  .logo-name--bold { font-size: 14px; }
  .logo-tagline    { font-size: 10.5px; }
  .logo-icon       { width: 42px; height: 42px; }

  .nav-links { top: calc(45px + 64px); }

  .hero-section { min-height: 500px; }

  .hero-left { max-width: 75%; }

  .hero-content-wrap { padding: 40px 0 100px; }

  .hero-heading { font-size: clamp(28px, 6.5vw, 40px); }
  .hero-para    { font-size: 14px; margin-bottom: 20px; }

  .hero-features { gap: 18px; }

  .hero-cta { gap: 12px; }
  .hero-btn-primary,
  .hero-btn-outline { font-size: 14px; padding: 12px 20px; }

  .customer-badge { width: 88px; height: 88px; top: 14px; right: 12px; }
  .customer-badge__number { font-size: 15px; }
  .customer-badge__label  { font-size: 7.5px; }
  .customer-badge__icon svg { width: 18px; height: 18px; }

  /* Hide pins on small screens — too cramped */
  .land-markers { display: none; }

  .hero-search-wrap { margin-top: -30px; }

  .hero-search { padding: 16px 16px; }

  .search-field { flex: 1 1 100%; border-bottom: 1px solid var(--border); }
}

/* ── ≤ 576px ─────────────────────────────────────────────────── */
@media (max-width: 576px) {

  .hero-section { min-height: 460px; }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(255,255,255,1)   0%,
      rgba(255,255,255,0.97) 50%,
      rgba(255,255,255,0.85) 75%,
      rgba(255,255,255,0.60) 100%
    );
  }

  .hero-left { max-width: 100%; }

  .hero-content-wrap { padding: 36px 0 90px; }

  .hero-heading { font-size: clamp(26px, 8vw, 36px); }

  .hero-eyebrow-text { font-size: 11px; }

  .hero-features { flex-direction: column; gap: 12px; }

  .hero-cta { flex-direction: column; align-items: flex-start; gap: 10px; }

  .hero-btn-primary,
  .hero-btn-outline { width: 100%; justify-content: center; font-size: 14px; }

  .customer-badge { display: none; } /* too cramped on very small */

  .hero-search { flex-direction: column; }

  .search-field { flex: unset; width: 100%; padding: 10px 0; }

  .search-btn { width: 100%; justify-content: center; margin-left: 0; border-radius: 8px; }

  .post-hero-spacer { height: 40px; }
}

/* ── ≤ 400px ─────────────────────────────────────────────────── */
@media (max-width: 400px) {

  .logo-name--bold { font-size: 13px; }
  .logo-icon       { width: 36px; height: 36px; }

  .hero-heading { font-size: 25px; }

  .hero-btn-primary,
  .hero-btn-outline { font-size: 13px; padding: 11px 16px; }

  .nav-link { font-size: 14px; padding: 13px 18px; }
}

/* ── Landscape phone ─────────────────────────────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section { min-height: 400px; }
  .hero-content-wrap { padding: 28px 0 80px; }
  .hero-heading { font-size: clamp(22px, 5vw, 34px); }
  .hero-para    { font-size: 13.5px; margin-bottom: 16px; }
  .hero-features { margin-bottom: 16px; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .top-header, .hamburger, .btn-enquire,
  .hero-search-wrap, .social-icons,
  .customer-badge, .land-markers { display: none !important; }

  .main-nav { position: static; box-shadow: none; }
  .hero-overlay { display: none; }
}

/* ============================================================
   SECTIONS 1–3 RESPONSIVE — Statistics, Why Choose Us,
   Popular Localities
   ============================================================ */

/* ── ≤ 1200px : SMALL LAPTOP ────────────────────────────────── */
@media (max-width: 1200px) {

  /* Stats */
  .stats-card {
    padding: 28px 28px;
  }

  .stat-item {
    padding: 0 18px;
    gap: 14px;
  }

  .stat-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .stat-number { font-size: 26px; }
  .stat-title  { font-size: 13px; }
  .stat-desc   { font-size: 12px; }

  /* Why Choose Us */
  .why-grid { gap: 44px; }

  .why-features { gap: 22px 24px; }

  .why-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
  }

  /* Quote card */
  .why-quote-card {
    width: 268px;
    right: -18px;
    padding: 26px 24px 22px;
  }

  .why-quote-text { font-size: 16px; }

  /* Localities — show 4 cards */
  .locality-card {
    flex: 0 0 calc((100% - 60px) / 4);
  }
}

/* ── ≤ 992px : TABLET LANDSCAPE ────────────────────────────── */
@media (max-width: 992px) {

  /* Stats — 2 columns, 3 on first row, 2 on second */
  .stats-card {
    flex-wrap: wrap;
    padding: 28px 24px;
    gap: 0;
    justify-content: flex-start;
  }

  .stat-divider {
    display: none;   /* hide vertical dividers, use row gaps instead */
  }

  .stat-item {
    flex: 0 0 calc(33.333% - 1px);
    padding: 16px 20px;
    border-bottom: 1px solid #ECECEC;
  }

  /* Last row: 2 items centered */
  .stat-item:nth-child(7),
  .stat-item:nth-child(9) {
    flex: 0 0 50%;
    border-bottom: none;
  }

  /* Why Choose Us — single column */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .why-right { order: -1; }   /* image above text on tablet */

  .why-img { height: 400px; }

  .why-quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 380px;
    margin: -60px auto 0;
    border-radius: 20px;
    padding: 24px 24px 20px;
  }

  .why-dots {
    right: 0;
    bottom: 0;
    opacity: 0.6;
  }

  .why-para { max-width: 100%; }

  .why-features { gap: 20px; }

  /* Localities — 2 cards */
  .locality-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .localities-section { padding: 60px 0 70px; }
}

/* ── ≤ 768px : TABLET PORTRAIT ──────────────────────────────── */
@media (max-width: 768px) {

  /* Stats — 2 columns */
  .stats-section { margin-top: -20px; }

  .stats-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .stat-item {
    flex: 0 0 50%;
    border-bottom: 1px solid #ECECEC;
    padding: 14px 16px;
    gap: 12px;
  }

  /* Remove bottom border on last two items */
  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Make 5th item full-width and centered */
  .stat-item:last-child {
    flex: 0 0 100%;
    justify-content: center;
    border-top: 1px solid #ECECEC;
    border-bottom: none;
    padding-top: 16px;
  }

  .stat-icon-wrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .stat-number { font-size: 24px; }
  .stat-title  { font-size: 12.5px; }

  /* Why Choose Us */
  .why-section { padding: 72px 0 64px; }

  .why-heading { font-size: clamp(24px, 5vw, 32px); }

  .why-features {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .why-img { height: 340px; }

  .why-quote-card {
    max-width: 340px;
    padding: 20px 20px 18px;
  }

  .why-quote-text { font-size: 15px; }

  /* Localities */
  .localities-heading { font-size: 18px; }

  .localities-header { flex-direction: column; align-items: flex-start; gap: 14px; }

  .locality-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .locality-card__img-wrap { height: 160px; }

  .slider-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

/* ── ≤ 576px : MOBILE ───────────────────────────────────────── */
@media (max-width: 576px) {

  /* Stats — single column */
  .stats-section { margin-top: -16px; }

  .stats-card {
    padding: 16px 14px;
    border-radius: 16px;
    flex-direction: column;
    gap: 0;
  }

  .stat-item {
    flex: 0 0 auto;
    width: 100%;
    border-bottom: 1px solid #ECECEC;
    padding: 14px 12px;
    gap: 14px;
  }

  .stat-item:last-child {
    flex: 0 0 auto;
    width: 100%;
    border-bottom: none;
    border-top: none;
    justify-content: flex-start;
    padding-top: 14px;
  }

  .stat-icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .stat-number { font-size: 26px; }
  .stat-title  { font-size: 13.5px; }

  /* Why Choose Us */
  .why-section { padding: 56px 0 50px; }

  .why-heading { font-size: clamp(22px, 6vw, 28px); }

  .why-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
  }

  .why-img { height: 260px; }

  .why-quote-card {
    max-width: 100%;
    margin: -40px 0 0;
    border-radius: 16px;
  }

  .why-quote-text { font-size: 14.5px; }

  .btn-know-more {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  /* Localities — single card */
  .locality-card {
    flex: 0 0 calc(100% - 2px);
  }

  .localities-section { padding: 48px 0 56px; }

  .localities-heading { font-size: 16.5px; }

  .btn-view-all { font-size: 12.5px; padding: 9px 14px; }

  .localities-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .locality-card__img-wrap { height: 200px; }

  .slider-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}

/* ── ≤ 400px : SMALL MOBILE ─────────────────────────────────── */
@media (max-width: 400px) {

  .stats-card { padding: 12px 10px; border-radius: 14px; }

  .stat-number { font-size: 23px; }
  .stat-title  { font-size: 12.5px; }
  .stat-desc   { font-size: 11.5px; }

  .why-section { padding: 44px 0 40px; }

  .why-heading { font-size: 21px; }

  .why-para { font-size: 13.5px; }

  .localities-section { padding: 40px 0 48px; }

  .localities-heading { font-size: 15px; letter-spacing: 0.02em; }

  .locality-card__name { font-size: 14px; }
  .locality-card__type { font-size: 11.5px; }
}


/* ============================================================
   SECTIONS 4–6 RESPONSIVE — Featured, Services, CTA
   ============================================================ */

/* ── ≤ 1200px ── */
@media (max-width: 1200px) {

  /* Keep floating nav buttons inside the viewport on laptops */
  .prop-slider-btn--prev { left: -8px; }
  .prop-slider-btn--next { right: -8px; }

  /* Featured: show 3 cards */
  .prop-card { flex: 0 0 calc((100% - 40px) / 3); }

  /* Services: 3 columns */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* CTA: tighter padding */
  .cta-banner { padding: 28px 36px; gap: 28px; }
  .cta-heading { font-size: 20px; }
}

/* ── ≤ 992px ── */
@media (max-width: 992px) {

  /* Featured: stack grid, full-width left */
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-left {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px 32px;
  }

  .featured-left .section-eyebrow { grid-column: 1 / -1; }
  .featured-left .featured-para { grid-column: 1; margin-bottom: 0; max-width: 100%; }
  .featured-left [data-reveal]:last-child { align-self: end; }

  .featured-section { padding: 80px 0; }

  /* Show 2 cards */
  .prop-card { flex: 0 0 calc((100% - 20px) / 2); }

  /* Slider buttons repositioned outside */
  .prop-slider-btn--prev { left:  -18px; }
  .prop-slider-btn--next { right: -18px; }

  /* Services: 2 cols */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-section { padding: 80px 0; }

  /* CTA: 2 columns (icon hidden, stack text + buttons) */
  .cta-banner {
    grid-template-columns: 1fr auto;
    padding: 28px 30px;
    gap: 20px 28px;
  }

  .cta-icon-col { display: none; }

  .cta-right-col { flex-direction: column; align-items: flex-end; gap: 10px; }
}

/* ── ≤ 768px ── */
@media (max-width: 768px) {

  .featured-section { padding: 60px 0; }

  .featured-heading { font-size: clamp(26px, 5vw, 36px); }

  .featured-left {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Show 2 cards */
  .prop-card { flex: 0 0 calc((100% - 20px) / 2); }

  .prop-card__img-wrap { height: 190px; }

  .prop-card__title { font-size: 13.5px; }

  .services-section { padding: 60px 0; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card { padding: 24px 18px 20px; }

  .service-card__icon-wrap { width: 60px; height: 60px; }

  /* CTA full stack */
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
    border-radius: 18px;
  }

  .cta-icon-col { display: flex; }

  .cta-right-col {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .cta-phone-box,
  .cta-enquire-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section { padding: 30px 0 56px; }
}

/* ── ≤ 576px ── */
@media (max-width: 576px) {

  .featured-section { padding: 48px 0; }

  /* 1 card */
  .prop-card { flex: 0 0 calc(100% - 2px); }

  .prop-slider-btn--prev { left:  -16px; }
  .prop-slider-btn--next { right: -16px; }

  .services-section { padding: 48px 0; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card { padding: 22px 18px 18px; flex-direction: row; flex-wrap: wrap; gap: 10px; }

  .service-card__icon-wrap { width: 52px; height: 52px; }

  .service-card__title { font-size: 14px; flex: 1; }

  .service-card__desc { flex: 0 0 100%; }

  .section-center-head { margin-bottom: 40px; }

  .services-heading { font-size: 22px; }

  .cta-banner { padding: 28px 20px; border-radius: 16px; }

  .cta-heading { font-size: 18px; }

  .btn-view-props { width: 100%; justify-content: center; }
}

/* ── ≤ 400px ── */
@media (max-width: 400px) {

  .featured-heading { font-size: 24px; }

  .prop-card__title { font-size: 13px; }

  .prop-card__price { font-size: 13px; }

  .cta-heading { font-size: 16px; }

  .cta-phone-box { font-size: 13.5px; padding: 11px 16px; }

  .cta-enquire-btn { font-size: 13.5px; padding: 11px 16px; }
}


/* ============================================================
   SECTIONS 7–9 RESPONSIVE — Testimonials, HIW, Newsletter
   ============================================================ */

/* ── ≤ 1200px ── */
@media (max-width: 1200px) {

  /* Testimonials: 2 cards */
  .testi-card { flex: 0 0 calc((100% - 20px) / 2); }

  /* HIW: tighten */
  .hiw-step__circle { width: 78px; height: 78px; }
  .hiw-step__connector { top: calc(28px + 39px); }

  /* Newsletter: tighter gap */
  .newsletter-banner { padding: 28px 32px; gap: 28px; }
  .nl-heading { font-size: 18px; }
}

/* ── ≤ 992px ── */
@media (max-width: 992px) {

  /* Testi: stack grid */
  .testi-grid { grid-template-columns: 1fr; gap: 48px; }

  .testi-right { position: static; }

  /* Show 1 card */
  .testi-card { flex: 0 0 calc(100% - 2px); }

  .testi-section { padding: 80px 0; }

  /* Stats panel: 2-col stays */
  .testi-stats-grid { grid-template-columns: 1fr 1fr; }

  /* HIW: 2 per row (last on its own) using flex-wrap */
  .hiw-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .hiw-step__connector { display: none; }

  .hiw-step:nth-child(2)::after,
  .hiw-step:nth-child(4)::after { display: none; }

  .hiw-section { padding: 80px 0; }

  /* Newsletter: stack center + right */
  .newsletter-banner {
    grid-template-columns: 80px 1fr;
    padding: 28px 28px;
    gap: 20px 24px;
  }

  .nl-right-col { grid-column: 1 / -1; justify-content: center; gap: 18px; }

  .nl-divider { display: none; }
}

/* ── ≤ 768px ── */
@media (max-width: 768px) {

  /* Hide the "Jharkhand Properties आंकड़ों में" stats card on mobile */
  .testi-right { display: none; }

  .testi-section  { padding: 60px 0; }
  .hiw-section    { padding: 60px 0; }

  .testi-heading  { font-size: clamp(24px, 5vw, 34px); }

  .testi-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

  .testi-stat-card { padding: 16px 12px; gap: 10px; }

  .testi-stat-num   { font-size: 18px; }
  .testi-stat-title { font-size: 11px; }

  /* HIW: 2 per row */
  .hiw-timeline { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }

  /* Newsletter: 2-col (icon + content), right below */
  .newsletter-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
    gap: 20px;
    border-radius: 20px;
  }

  .nl-icon-col { justify-content: center; }

  .nl-form { max-width: 100%; }

  .nl-right-col { flex-direction: column; align-items: center; gap: 10px; }

  .nl-phone-block { flex-direction: column; align-items: center; text-align: center; }

  .nl-input-wrap { flex-wrap: wrap; padding: 8px; }

  .nl-btn { width: 100%; justify-content: center; }
}

/* ── ≤ 576px ── */
@media (max-width: 576px) {

  .testi-section  { padding: 48px 0; }

  .testi-stats-grid { grid-template-columns: 1fr; gap: 10px; }

  .testi-stat-card { padding: 14px 12px; }

  /* HIW: single column */
  .hiw-timeline { grid-template-columns: 1fr; gap: 28px; }

  .hiw-step { padding: 0; }

  .hiw-step__circle { width: 70px; height: 70px; }

  .hiw-step__title { font-size: 15px; }

  .newsletter-banner { padding: 24px 16px; border-radius: 16px; }

  .nl-heading { font-size: 17px; }

  .nl-para  { font-size: 12.5px; }

  .nl-input-wrap { flex-direction: column; align-items: stretch; padding: 10px; gap: 8px; }

  .nl-input-icon { display: none; }

  .newsletter-section { padding: 0 0 56px; }
}

/* ── ≤ 400px ── */
@media (max-width: 400px) {

  .testi-heading { font-size: 22px; }

  .hiw-heading   { font-size: 22px; }

  .nl-heading    { font-size: 15px; }

  .nl-phone-num  { font-size: 15px; }
}

/* ============================================================
   SECTIONS 10 + FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 42px 34px;
  }
}

@media (max-width: 992px) {
  .news-section { padding: 90px 0; }

  .news-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .news-header__text,
  .news-view-btn {
    grid-column: auto;
  }

  .news-view-btn { justify-self: center; }

  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-main { padding-top: 70px; }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col--brand { grid-column: 1 / -1; }

  .footer-bottom__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-credit { justify-self: center; }
}

@media (max-width: 768px) {
  .news-section { padding: 70px 0; }

  .blog-card__img-wrap { height: 200px; }

  .blog-card__title {
    min-height: auto;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .news-section { padding: 56px 0; }

  .news-grid { grid-template-columns: 1fr; }

  .news-heading { font-size: 24px; }

  .news-para { font-size: 13.5px; }

  .blog-card__img-wrap { height: 220px; }

  .blog-card__body { padding: 20px 18px 18px; }

  .footer-main { padding: 56px 0 28px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo-name { font-size: 22px; }

  .footer-legal {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}

@media (max-width: 400px) {
  .blog-card__img-wrap { height: 190px; }

  .footer-copy,
  .footer-credit,
  .footer-legal-link,
  .footer-legal-sep {
    font-size: 12px;
  }
}

/* ============================================================
   UNIQUE PAGE HEROES RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .about-hero__grid { gap: 40px; }
  .about-hero__stats { gap: 12px; }
  .about-stat-card { padding: 20px 18px; }
  .about-stat-number { font-size: 28px; }

  .whyus-badge { min-width: 130px; padding: 12px 14px; }
  .whyus-badge__icon { width: 38px; height: 38px; min-width: 38px; }

  .contact-channel { min-width: 160px; padding: 11px 18px; font-size: 13px; }
}

@media (max-width: 992px) {
  .about-hero { padding: 48px 0; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .about-hero__content { max-width: 100%; }
  .about-hero__stats { max-width: 480px; }

  .props-hero { padding: 48px 0; min-height: 340px; }
  .props-hero__filters { flex-direction: column; align-items: flex-start; gap: 8px; }

  .whyus-hero { padding: 48px 0; }
  .whyus-hero__badges { gap: 14px; }
  .whyus-badge { min-width: 120px; padding: 10px 12px; }
  .whyus-badge__text { font-size: 11px; }

  .blogs-hero { padding: 48px 0; }
  .blogs-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .blogs-hero__right { max-width: 100%; }
  .blogs-featured__img-wrap { height: 180px; }

  .contact-hero { padding: 48px 0; }
  .contact-hero__channels { gap: 10px; }
  .contact-channel { min-width: 150px; padding: 11px 16px; font-size: 13px; }

  .page-section { padding: 70px 0; }
  .content-grid-2, .contact-layout { grid-template-columns: 1fr; }
  .info-grid, .residential-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .about-hero { min-height: auto; padding: 40px 0; }
  .about-hero__title { font-size: 28px; }
  .about-hero__text { font-size: 14.5px; }
  .about-deco-circle--1 { width: 200px; height: 200px; }
  .about-deco-dots { display: none; }

  .props-hero__title { font-size: 28px; }
  .props-hero__text { font-size: 14.5px; }
  .props-filter-pills { gap: 6px; }
  .props-pill { font-size: 12px; padding: 6px 12px; }
  .props-blob--1 { width: 300px; height: 300px; }

  .whyus-hero__title { font-size: 26px; }
  .whyus-hero__text { font-size: 14.5px; }
  .whyus-float { display: none; }

  .blogs-hero__title { font-size: 26px; }
  .blogs-hero__text { font-size: 14px; }
  .blogs-featured__title { font-size: 15px; }

  .contact-hero__title { font-size: 28px; }
  .contact-hero__text { font-size: 14.5px; }
  .contact-channel { min-width: 130px; padding: 10px 14px; font-size: 12.5px; }
  .contact-pulse { display: none; }
}

@media (max-width: 576px) {
  .about-hero { padding: 32px 0; }
  .about-hero__kicker { font-size: 12px; padding-left: 36px; }
  .about-hero__kicker::before { width: 28px; }
  .about-hero__title { font-size: 26px; }
  .about-hero__text { font-size: 14px; }
  .about-hero__stats { grid-template-columns: 1fr; }
  .about-stat-card--lg { grid-column: auto; }
  .about-deco-circle { display: none; }

  .props-hero { padding: 36px 0; min-height: 300px; }
  .props-hero__title { font-size: 24px; }
  .props-hero__text { font-size: 14px; }
  .props-hero__count-badge { padding: 4px 14px 4px 4px; }
  .props-hero__count-num { width: 26px; height: 26px; font-size: 13px; }
  .props-hero__count-label { font-size: 11px; }

  .whyus-hero { padding: 36px 0; }
  .whyus-hero__title { font-size: 24px; }
  .whyus-hero__text { font-size: 14px; }
  .whyus-badge { min-width: calc(50% - 14px); padding: 10px; }

  .blogs-hero { padding: 36px 0; }
  .blogs-hero__title { font-size: 24px; }
  .blogs-hero__text { font-size: 13.5px; }
  .blogs-featured__img-wrap { height: 160px; }
  .blogs-featured__body { padding: 16px 16px 18px; }
  .blogs-topic { font-size: 12px; padding: 6px 12px; }

  .contact-hero { padding: 36px 0; }
  .contact-hero__title { font-size: 26px; }
  .contact-hero__text { font-size: 14px; }
  .contact-hero__channels { flex-direction: column; align-items: stretch; gap: 10px; }
  .contact-channel { width: 100%; }

  .page-section { padding: 52px 0; }
  .info-grid, .residential-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .contact-form { padding: 24px 18px; }
  .page-image { min-height: 260px; }
  .contact-cards { gap: 14px; }
  .contact-card { padding: 16px 18px; }
  .contact-form-wrap { padding: 24px 18px; }
  .map-card { position: static; margin-top: 16px; max-width: 100%; }
  .faq-question { padding: 14px 16px; font-size: 14px; }
  .faq-answer { padding: 0 16px 14px; font-size: 13px; }
}

@media (max-width: 400px) {
  .about-hero__title { font-size: 22px; }
  .props-hero__title { font-size: 21px; }
  .props-pill { font-size: 11px; padding: 5px 10px; }
  .whyus-hero__title { font-size: 21px; }
  .whyus-badge { min-width: 100%; }
  .blogs-hero__title { font-size: 21px; }
  .contact-hero__title { font-size: 22px; }
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form__title { font-size: 20px; }
  .map-card { left: 16px; bottom: 16px; padding: 12px 16px; }
  .map-card__text { font-size: 12px; }
}
