/* Comprehensive Responsive Design */

@media (max-width: 1440px) {
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .hero-grid,
  .about-grid,
  .hp-banner-box,
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .about-visual {
    order: -1;
  }

  .hp-banner-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
    z-index: 999;
  }

  .site-nav.active {
    left: 0;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .services-grid,
  .why-grid,
  .process-grid,
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
  }

  .cta-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }
}

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

  .services-grid,
  .why-grid,
  .process-grid,
  .conditions-grid,
  .gallery-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hp-banner-box {
    padding: 2.5rem 1.5rem;
  }

  .hp-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .hp-banner-actions .btn {
    width: 100%;
  }

  .credentials-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .testimonial-card {
    padding: 2rem 1.25rem;
  }

  .floating-card {
    display: none;
  }

  .about-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 414px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo {
    font-size: 1.35rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 1.85rem;
  }
}