/* Responsive CSS for Airport Chauffeur Rental Service Template */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 42px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .about-img:after {
    right: -20px;
    top: 20px;
  }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .navbar-nav .nav-link {
    margin: 0;
    padding: 10px 0;
  }
  
  .navbar-collapse {
    background-color: var(--primary-1);
    padding: 15px;
    border-radius: 5px;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
  
  .about-img:after {
    display: none;
  }
  
  .team-info {
    position: relative;
    transform: translateY(0);
    background-color: var(--primary-1);
  }
  
  .price-item.featured {
    transform: scale(1);
  }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 600px;
  }
  
  .hero-content h1 {
    font-size: 30px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .service-item,
  .feature-item,
  .price-item,
  .team-item,
  .blog-item {
    margin-bottom: 20px;
  }
  
  .review-item {
    margin: 10px 0;
  }
  
  .coreinfo-section {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Disable animations on mobile */
  @media (prefers-reduced-motion) {
    .service-item:hover {
      transform: none;
    }
    
    .blog-item:hover .blog-img img,
    .team-item:hover .team-img img,
    .gallery-item:hover img {
      transform: none;
    }
  }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 26px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title h2:after {
    width: 40px;
  }
  
  .service-item,
  .contact-form {
    padding: 20px;
  }
  
  .footer-widget h4 {
    font-size: 18px;
  }
  
  .review-author-img {
    width: 50px;
    height: 50px;
  }
  
  .gallery-item img {
    height: 180px;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    transition: none;
  }
  
  .service-item:hover,
  .team-item:hover .team-info,
  .blog-item:hover .blog-img img,
  .team-item:hover .team-img img,
  .gallery-item:hover img,
  .team-info {
    transform: none;
    transition: none;
  }
} 