/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 30px;
  }
  
  .hero {
    height: auto;
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
  
  .hero-img {
    margin-top: 40px;
  }
  
  .about-feature {
    margin-bottom: 20px;
  }
  
  .about-img {
    margin-top: 30px;
  }
  
  .service-item, 
  .price-item, 
  .team-member, 
  .blog-item {
    margin-bottom: 20px;
  }
  
  .contact-form,
  .contact-info {
    padding: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .accordion-button {
    padding: 15px;
  }
  
  .accordion-body {
    padding: 15px;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .review-item {
    margin: 20px 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 34px;
  }
  
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-img {
    margin-top: 40px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 36px;
  }
  
  .hero {
    height: auto;
    min-height: 500px;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .hero-img {
    margin-top: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Disable animations for users who prefer 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: 999999999s;
  }
}

/* Disable autoplay on mobile */
@media (max-width: 767.98px) {
  .swiper-container {
    --swiper-autoplay-delay: 999999999s;
  }
} 