/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card, 
  .price-card, 
  .team-card, 
  .review-card, 
  .coreinfo-card,
  .blog-card,
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card, 
  .price-card, 
  .team-card, 
  .review-card, 
  .coreinfo-card,
  .blog-card,
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .service-card, 
  .price-card, 
  .team-card, 
  .review-card, 
  .coreinfo-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .footer-col {
    margin-bottom: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

/* Reduce motion at user's request */
@media (prefers-reduced-motion: reduce) {
  .swiper-container,
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .feature-card:hover,
  .coreinfo-card:hover,
  .gallery-img,
  .btn-custom:hover {
    transition: none;
    transform: none;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0; /* Disable autoplay */
  }
} 