/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .service-item, .price-item, .team-member, .blog-item {
    margin-bottom: 20px;
  }
  
  footer {
    padding: 50px 0 20px;
  }
  
  .navbar-brand {
    font-size: 20px;
  }
  
  .page-header {
    height: 300px;
  }
  
  .page-header-content h1 {
    font-size: 1.8rem;
  }
  
  #space {
    min-height: 300px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .page-header {
    height: 350px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .service-item, .about-feature, .feature-item, .info-item {
    margin-bottom: 25px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
}

/* Animations and Slider Behavior - Respecting 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;
  }
  
  .fade-up, .fade-in, .scale-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .service-item:hover, .price-item:hover, .team-member:hover, .blog-item:hover,
  .about-feature:hover, .feature-item:hover, .info-item:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  }
  
  .service-item:hover .service-img img,
  .blog-item:hover .blog-img img,
  .gallery-item:hover img {
    transform: none !important;
  }
}

/* Mobile Sliders - Disable autoplay on mobile */
@media (max-width: 767px) {
  .swiper-autoplay-off-on-mobile {
    --swiper-autoplay: 0;
  }
} 