/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .team-img-container {
    width: 150px;
    height: 150px;
  }
  
  .service-img-container {
    height: 180px;
  }
  
  .about-feature,
  .feature-item,
  .coreinfo-item {
    margin-bottom: 2rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-100);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .team-img-container {
    width: 170px;
    height: 170px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-img-container {
    height: 160px;
  }
  
  .price-card-header {
    padding: 1.5rem;
  }
  
  .price-body {
    padding: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 90vh;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    min-height: 90vh;
  }
}

/* For reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .service-card:hover,
  .blog-card:hover,
  .price-card:hover,
  .feature-item:hover,
  .about-feature:hover,
  .team-member:hover .team-img-container {
    transform: none;
  }
  
  .service-card:hover .service-img,
  .blog-card:hover .blog-img,
  .gallery-item:hover .gallery-img {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
}

/* Mobile devices for slider */
@media (max-width: 767.98px) {
  .swiper-container {
    padding: 0 1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
} 