/* Extra Large Devices */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices */
@media (max-width: 1199px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }
  
  .section-title h2 {
    font-size: 36px;
  }
  
  .price-amount {
    font-size: 50px;
  }
}

/* Medium Devices */
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-section {
    padding-top: 80px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-image-container {
    margin-top: 50px;
  }
  
  .about-img {
    margin-bottom: 50px;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .service-item, 
  .price-card,
  .feature-item,
  .team-member,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .review-item {
    margin: 15px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices */
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .accordion-button {
    padding: 15px;
  }
  
  .accordion-body {
    padding: 15px;
  }
  
  /* Disable autoplay animations for accessibility */
  @media (prefers-reduced-motion) {
    .swiper-container[data-swiper-autoplay] {
      autoplay: false;
    }
  }
}

/* Extra Small Devices */
@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .review-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .review-author-img {
    margin-bottom: 15px;
  }
  
  .contact-form {
    padding: 20px;
  }
} 