/* Responsive Styles */

/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: 4rem;
  }
}

/* Medium Screens (992px to 1199px) */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .about-content {
    gap: 30px;
  }
}

/* Small Screens (768px to 991px) */
@media (max-width: 991px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-img, .about-text {
    flex: none;
    width: 100%;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-header {
    height: 30vh;
  }
}

/* Extra Small Screens (up to 767px) */
@media (max-width: 767px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .services-grid, 
  .pricing-grid, 
  .team-grid, 
  .core-info-grid, 
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:nth-child(4n+1),
  .gallery-item:nth-child(4n+4) {
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .services-select {
    grid-template-columns: 1fr;
  }
}

/* Very Small Screens (up to 575px) */
@media (max-width: 575px) {
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 25px;
  }
  
  .header-inner {
    padding: 15px 0;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .service-card:hover,
  .pricing-card:hover,
  .team-member:hover,
  .blog-card:hover,
  .feature-item:hover,
  .info-box:hover,
  .feature-box:hover {
    transform: none;
  }
  
  .service-card:hover .service-img img,
  .team-member:hover .team-img img,
  .blog-card:hover .blog-img img,
  .gallery-item:hover img,
  .about-img img:hover {
    transform: none;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999999s;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .swiper-container {
    --swiper-autoplay-delay: 999999999s;
  }
} 