/* Responsive Styles */

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .service-card, 
  .about-feature-card, 
  .price-card {
    padding: 2rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .review-card,
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 6rem 0;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card, 
  .about-feature-card,
  .price-card,
  .review-card,
  .contact-form {
    margin-bottom: 1.5rem;
  }
  
  .gallery-image {
    margin-bottom: 1rem;
  }
  
  .blog-card {
    margin-bottom: 2rem;
  }
  
  /* Disable animations for better performance */
  .fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  
  /* Respect prefers-reduced-motion */
  @media (prefers-reduced-motion) {
    .swiper-container {
      --swiper-autoplay: false;
    }
    
    .fade-up {
      transition: none;
    }
    
    * {
      transition: none !important;
      animation: none !important;
    }
  }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .service-card, 
  .about-feature-card,
  .price-card {
    padding: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .add-page-header {
    padding: 3rem 0;
  }
  
  .add-page-title {
    font-size: 1.8rem;
  }
}

/* Handling Swiper Sliders for mobile */
@media (max-width: 767.98px) {
  .swiper-container {
    --swiper-autoplay: false;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
} 