/* Extra Small Devices (portrait phones) */
@media (max-width: 575.98px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero {
    min-height: auto;
    padding: 5rem 0;
  }
  
  .about-feature {
    margin-bottom: 1.5rem;
  }
  
  .service-item, 
  .price-item,
  .feature-item,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .team-member-image {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .price-item.featured {
    transform: none;
  }
}

/* Small Devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    min-height: auto;
    padding: 6rem 0;
  }
  
  .price-item.featured {
    transform: none;
  }
}

/* Medium Devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-item-image {
    height: 180px;
  }
  
  .blog-item-image {
    height: 180px;
  }
  
  .price-item.featured {
    transform: scale(1.03);
  }
}

/* Large Devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* Animation Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .service-item:hover,
  .price-item:hover,
  .about-feature:hover,
  .coreinfo-item:hover,
  .blog-item:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay: false;
  }
}

/* Responsive Swiper Settings */
@media (max-width: 767.98px) {
  .swiper-container {
    --swiper-autoplay: false;
  }
} 