/* ==========================================================================
   Yogi automation and services - Responsive Media Queries
   ========================================================================== */

/* Large Screens (Above 1200px) */
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }
}

/* Medium / Tablet Screens (Max 991px) */
@media (max-width: 991px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  
  .top-bar {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Screens / Mobile Phones (Max 575px) */
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 1.2rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-grid,
  .industry-grid,
  .why-grid,
  .process-grid,
  .testimonial-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}
