/* Responsive CSS */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 15px;
  }
  
  .hero-section {
    height: 90vh;
  }
  
  .service-image {
    height: 180px;
  }
  
  .team-image {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    height: 80vh;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .service-image {
    height: 160px;
  }
  
  .team-image {
    height: 200px;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    height: 70vh;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-card,
  .team-card,
  .price-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .about-feature {
    margin-bottom: 1.5rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  html {
    font-size: 13px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    height: 100vh;
    text-align: center;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .service-card,
  .team-card,
  .price-card,
  .blog-card,
  .about-feature,
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999s;
  }
} 