/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    min-height: auto;
    padding: 5rem 0;
  }
  
  .hero-img {
    margin-top: 2rem;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
  
  .service-card, .price-card, .team-member, .blog-card {
    margin-bottom: 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  .page-header {
    padding: 5rem 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.85rem;
  }
  
  .hero {
    min-height: auto;
    padding: 6rem 0;
  }
  
  .hero-img {
    margin-top: 2rem;
  }
  
  .service-card, .price-card, .team-member, .blog-card {
    margin-bottom: 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 4.5rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    min-height: auto;
    padding: 7rem 0;
  }
  
  .service-card, .price-card, .team-member, .blog-card {
    margin-bottom: 2rem;
  }
  
  .footer-widget {
    margin-bottom: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  section {
    padding: 5rem 0;
  }
  
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  section {
    padding: 5rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

/* 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;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
  
  .hero-shape, .service-card, .price-card, .team-member, 
  .blog-card, .about-feature, .feature-item, .core-item {
    transition: none !important;
    transform: none !important;
  }
  
  .service-card:hover, .price-card:hover, .team-member:hover,
  .blog-card:hover, .about-feature:hover, .feature-item:hover, 
  .core-item:hover {
    transform: none !important;
  }
} 