/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 50px 0;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-feature, 
  .service-card, 
  .price-card,
  .team-card,
  .coreinfo-item {
    margin-bottom: 20px;
  }
  
  .contact-form {
    padding: 20px;
  }

  .review-card {
    padding: 15px;
  }
  
  footer {
    text-align: center;
  }
  
  footer .col-md-3 {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  footer .col-md-3 {
    margin-bottom: 30px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 70px 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  footer .col-md-3 {
    margin-bottom: 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay: false;
  }
  
  .service-card:hover,
  .about-feature:hover,
  .price-card:hover,
  .blog-card:hover,
  .team-card:hover .team-img img,
  .service-card:hover .service-img img,
  .blog-card:hover .blog-img img,
  .gallery-item:hover,
  .gallery-item:hover img,
  .coreinfo-item:hover {
    transform: none !important;
  }
}

/* Mobile menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    padding: 10px 0;
  }
  
  .nav-link::after {
    display: none;
  }
} 