/* Responsive CSS */

/* Large Screens (desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Medium Screens (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-desc {
    max-width: 100%;
  }
  
  .about-feature, 
  .service-card, 
  .feature-card, 
  .price-card, 
  .team-member, 
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .section-heading {
    margin-bottom: 2.5rem;
  }
  
  .shape {
    display: none;
  }
}

/* Small Screens (mobile phones, less than 768px) */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .swiper-button-next, 
  .swiper-button-prev {
    display: none;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
}

/* Extra Small Screens (smaller mobile phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .swiper-pagination {
    bottom: 0 !important;
  }
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
  
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    transition: none !important;
  }
  
  /* Stop all animations on hover, focus, and active states */
  .btn:hover,
  .service-card:hover,
  .feature-card:hover,
  .price-card:hover,
  .blog-card:hover,
  .about-feature:hover,
  .service-card:hover .service-card-image img,
  .blog-card:hover .blog-image img,
  .gallery-item:hover .gallery-image {
    transform: none !important;
    transition: none !important;
  }
}

/* Disable hover effects on mobile devices */
@media (hover: none) {
  .btn:hover,
  .service-card:hover,
  .feature-card:hover,
  .price-card:hover,
  .blog-card:hover,
  .about-feature:hover,
  .service-card:hover .service-card-image img,
  .blog-card:hover .blog-image img,
  .gallery-item:hover .gallery-image {
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
  }
} 