/* Media Queries */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .service-item,
  .about-feature,
  .feature-item,
  .core-info-item,
  .price-card {
    padding: 20px;
  }

  .review-item {
    margin: 10px 0;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.8rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3.2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Slider specific media queries */
@media (max-width: 767.98px) {
  /* Disable autoplay and animations on mobile devices */
  .swiper-container[data-autoplay="true"] {
    --swiper-autoplay: false;
  }
  
  .swiper-slide {
    transition: none;
  }
  
  /* Adjustments for small screens */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Respects prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  
  .swiper-container[data-autoplay="true"] {
    --swiper-autoplay: false;
  }
  
  .service-item:hover,
  .about-feature:hover,
  .feature-item:hover,
  .core-info-item:hover,
  .price-card:hover,
  .team-member:hover img,
  .blog-item:hover,
  .gallery-item:hover img,
  .btn-primary:hover {
    transform: none !important;
    box-shadow: none !important;
  }
} 