/* ==========================================================================
   MSME EXPERTS — Responsive Overrides (mobile-first enhancements)
   ========================================================================== */

/* ---------- Small devices (≥576px) ---------- */
@media (min-width: 576px) {
  .hero-cta-row {
    flex-wrap: nowrap;
  }
}

/* ---------- Tablets (≥768px) ---------- */
@media (min-width: 768px) {
  :root {
    --section-padding: 7.5rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 3rem;
  }
}

/* ---------- Desktops (≥992px) ---------- */
@media (min-width: 992px) {
  .hero-content {
    padding-right: 2.5rem;
  }

  .why-matters-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 3rem;
  }
}

/* ---------- Large desktops (≥1200px) ---------- */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

/* ---------- Small screens / phones (<576px) tightening ---------- */
@media (max-width: 575.98px) {
  :root {
    --section-padding: 4rem;
  }

  .section-heading {
    font-size: 1.65rem;
  }

  .cta-banner,
  .matters-panel {
    padding: 2rem 1.5rem;
  }

  .hero-cta-row .btn {
    width: 100%;
    text-align: center;
  }

  .back-to-top {
    bottom: 1.1rem;
    right: 1.1rem;
    width: 42px;
    height: 42px;
  }

  .contact-info-card,
  .contact-form-card,
  .form-section-card {
    padding: 1.5rem;
  }
}

/* ---------- Navbar collapse (mobile menu) ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
    padding: 1.25rem 0.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

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

  .nav-cta-btn {
    display: inline-block;
    margin-top: 0.5rem;
    text-align: center;
  }

  .step-card {
    margin-bottom: 1.5rem;
  }
}

/* ---------- Print styles ---------- */
@media print {
  .site-header,
  .back-to-top,
  .cta-banner,
  .site-footer,
  .hero-visual {
    display: none !important;
  }
}
