/* ==========================================================================
   SHREE AMBEY UDYOG - RESPONSIVE STYLESHEET
   Responsive Breakpoints & Mobile Adaptations
   ========================================================================== */

/* Large Desktop & Laptops (Max 1200px) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .process-timeline {
    gap: 1rem;
  }

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

/* Medium Tablets & Small Laptops (Max 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper img {
    height: 360px;
  }

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

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

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

  .cta-content p {
    margin: 0 auto;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

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

  /* Mobile Navigation Menu */
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary-navy-deep);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(-150%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-link {
    color: var(--text-white);
    font-size: 1.1rem;
  }
}

/* Small Tablets & Mobile Devices (Max 768px) */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero {
    padding: 4rem 0 5rem;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

/* Extra Small Phones (Max 480px) */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .hero-card-floating {
    position: static;
    margin-top: 1rem;
  }
}
