/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  
  .hero-slider, .hero-slide {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .price-card {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 30px;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  
  .hero-slider, .hero-slide {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .price-card {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 30px;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  footer {
    padding: 60px 0 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 50px 0;
  }
  
  .hero-slider, .hero-slide {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero-content h1 {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 25px;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .price-card {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 30px;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-info {
    margin-bottom: 30px;
    padding: 25px;
  }
  
  footer {
    padding: 50px 0 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  /* Animations and transitions reduction for smaller screens */
  .about-feature:hover,
  .service-card:hover,
  .price-card:hover,
  .core-info-item:hover,
  .add-page-item:hover,
  .blog-card:hover {
    transform: none;
  }
  
  /* Reduce sliders on mobile */
  .swiper-pagination {
    bottom: 10px !important;
  }
}

/* Prefers reduced motion media query */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .about-feature:hover,
  .service-card:hover,
  .price-card:hover,
  .core-info-item:hover,
  .add-page-item:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
} 