/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .service-card,
  .price-plan-card,
  .team-member,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .review-card {
    margin: 10px 0;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .footer-widgets {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .service-card,
  .price-plan-card,
  .team-member,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .gallery-item {
    height: 220px;
  }
  
  .footer-widgets {
    margin-bottom: 30px;
  }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-feature {
    margin-bottom: 20px;
  }
  
  .service-card,
  .price-plan-card {
    margin-bottom: 30px;
  }
  
  .gallery-item {
    height: 200px;
  }
}

/* Large devices (desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-item {
    height: 220px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* For animations and sliders */
@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-theme-color: var(--primary-color);
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

/* Mobile-specific styles */
@media (max-width: 767.98px) {
  section {
    padding: 50px 0;
  }
  
  .swiper-container {
    --swiper-theme-color: var(--primary-color);
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-top: 10px;
  }
  
  .nav-link {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
} 