/* Extra Small Devices (portrait phones) */
@media (max-width: 575.98px) {
  section {
    padding: 3rem 0;
  }
  
  .section-subtitle {
    font-size: 1.8rem;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-bg-shape {
    display: none;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .service-item, 
  .price-item, 
  .about-feature-item,
  .team-member, 
  .blog-item,
  .coreinfo-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Small Devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  .section-subtitle {
    font-size: 2rem;
  }
  
  .hero-bg-shape {
    width: 40%;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Medium Devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-bg-shape {
    width: 45%;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .service-item, 
  .price-item {
    height: calc(100% - 2rem);
  }
  
  .team-member, 
  .blog-item,
  .coreinfo-item {
    height: calc(100% - 2rem);
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Large Devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-bg-shape {
    width: 45%;
  }
  
  .service-item, 
  .price-item {
    height: calc(100% - 2rem);
  }
  
  .team-member, 
  .blog-item,
  .coreinfo-item {
    height: calc(100% - 2rem);
  }
}

/* Extra Large Devices (large desktops) */
@media (min-width: 1200px) {
  .hero-bg-shape {
    width: 50%;
  }
  
  .service-item, 
  .price-item {
    height: calc(100% - 2rem);
  }
  
  .team-member, 
  .blog-item,
  .coreinfo-item {
    height: calc(100% - 2rem);
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
} 