/* Media query for laptops and desktops */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
}

/* Media query for tablets and small laptops */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .service-img {
    height: 180px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .contact-info {
    margin-top: 3rem;
  }
}

/* Media query for tablets */
@media (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 3.5rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-desc {
    margin-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-swiper {
    height: 80vh;
  }
  
  .about-feature {
    margin-bottom: 2rem;
  }
  
  .team-img {
    height: 220px;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
}

/* Media query for mobile devices */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .section-desc {
    margin-bottom: 2.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-swiper {
    height: 70vh;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .service-img {
    height: 160px;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .team-img {
    height: 180px;
  }
  
  .review-text:before,
  .review-text:after {
    font-size: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    margin-top: 2rem;
  }
}

/* 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;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 10000000ms;
  }
} 