/* Extra Small Devices (phones, 575px and down) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .shape-blob {
    transform: scale(0.7);
  }
  
  .service-item, 
  .price-item, 
  .about-feature, 
  .core-info-item {
    padding: 1.5rem;
  }
  
  .review-item {
    padding: 1.5rem;
    margin: 0.5rem 0;
  }
}

/* Small Devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 5rem 0;
  }
  
  .hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

/* Large Devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero {
    padding-top: 7rem;
  }
}

/* Responsive Layout Fixes */
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-lightest);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .team-member, 
  .service-item,
  .price-item {
    margin-bottom: 2rem;
  }
}

/* Fix for slider layouts on mobile */
@media (max-width: 767.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .swiper-slide {
    padding: 0 0.5rem;
  }
}

/* Reduce motion - Accessibility */
@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: 999999999s;
  }
} 