/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-100);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 3rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-feature {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 3rem;
  }
  
  .review-item {
    margin-bottom: 2rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .footer-info {
    margin-bottom: 2.5rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  /* Disable animations on mobile for better performance and respect prefers-reduced-motion */
  @media (prefers-reduced-motion) {
    .about-feature:hover,
    .service-item:hover,
    .price-card:hover,
    .blog-item:hover,
    .team-member:hover .team-member-img img,
    .blog-item:hover .blog-item-img img,
    .gallery-item:hover img {
      transform: none !important;
    }
    
    .swiper-container {
      --swiper-autoplay-delay: 0 !important; /* Disable autoplay */
    }
  }
  
  .team-member-img img,
  .blog-item-img img,
  .gallery-item img {
    transition: none;
  }
  
  .service-item-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-item-icon i {
    font-size: 1.5rem;
  }
  
  .about-feature i,
  .coreinfo-item i,
  .feature-item i {
    font-size: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title h2::after {
    width: 50px;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
  
  .review-item {
    padding: 2rem 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
} 