/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .about-feature {
    margin-bottom: 1.5rem;
  }
  
  .service-item {
    margin-bottom: 2rem;
  }
  
  .feature-item {
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .review-item {
    margin-bottom: 1.5rem;
  }
  
  .coreinfo-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  .page-header {
    height: 40vh;
    min-height: 300px;
  }
  
  .page-title {
    font-size: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-feature {
    margin-bottom: 1.5rem;
  }
  
  .service-item {
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .service-item {
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

/* Animation preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
}

/* Browser compatibility */
@supports not (display: grid) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }
} 