/* Responsive CSS for Eco-Friendly Garage Template */

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 15px;
  }
  
  .nav-link {
    margin: 10px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .section-desc {
    font-size: 1rem;
  }
  
  .services-card-img {
    height: 180px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .priceplan-item-name {
    font-size: 1.6rem;
  }
  
  .priceplan-item-price {
    font-size: 2.5rem;
  }
  
  .blog-img {
    height: 200px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
  .hero-section {
    text-align: center;
    height: auto;
    min-height: 100vh;
  }
  
  .hero-img {
    margin-top: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .section-divider {
    margin-bottom: 30px;
  }
  
  .about-feature {
    margin-bottom: 20px;
  }
  
  .features-item {
    flex-direction: column;
    text-align: center;
  }
  
  .features-icon {
    margin: 0 auto 15px;
  }
  
  .team-card {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  /* Disable animations on mobile for better performance and respect prefers-reduced-motion */
  @media (prefers-reduced-motion) {
    .services-card:hover,
    .priceplan-card:hover,
    .team-card:hover,
    .blog-item:hover,
    .about-feature:hover,
    .coreinfo-item:hover {
      transform: none;
    }
    
    .services-card:hover .services-card-img img,
    .team-card:hover .team-img img,
    .blog-item:hover .blog-img img,
    .gallery-item:hover img {
      transform: none;
    }
    
    .btn-submit:hover {
      transform: none;
    }
    
    .nav-link::after {
      transition: none;
    }
  }
  
  /* Disable slider autoplay for mobile */
  .swiper-container-autoplay {
    autoplay: false;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-item-name {
    font-size: 1.3rem;
  }
  
  .services-item-price {
    font-size: 1.5rem;
  }
  
  .priceplan-item-name {
    font-size: 1.4rem;
  }
  
  .priceplan-item-price {
    font-size: 2.2rem;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .footer-heading {
    font-size: 1.2rem;
  }
} 