/* Responsive Styles */

/* Large Devices (less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
}

/* Medium Devices (less than 992px) */
@media (max-width: 991.98px) {
  html {
    font-size: 15px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-image img {
    max-height: 50vh;
    margin-top: 2rem;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    color: var(--text-dark);
  }
  
  .header:not(.sticky) .navbar-toggler {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .service-item,
  .pricing-table,
  .team-member {
    margin-bottom: 40px;
  }
  
  .contact-info {
    margin-bottom: 50px;
  }
}

/* Small Devices (less than 768px) */
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .hero-image img {
    max-height: 40vh;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .testimonial-item {
    margin: 10px 0;
  }
  
  /* Disable animations for better performance on mobile */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  /* Respect prefers-reduced-motion */
  @media (prefers-reduced-motion) {
    .swiper-container {
      --swiper-autoplay-delay: 0; /* Disable autoplay */
    }
    
    * {
      animation: none !important;
      transition: none !important;
    }
  }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .hero-image img {
    max-height: 30vh;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .testimonial-item {
    padding: 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .testimonial-img {
    margin-bottom: 10px;
  }
  
  .contact-info-item {
    flex-direction: column;
  }
  
  .contact-info-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
}

/* Extra Extra Small Devices (less than 400px) */
@media (max-width: 399.98px) {
  .pricing-price {
    font-size: 2.5rem;
  }
  
  .service-icon, 
  .feature-icon {
    margin-bottom: 15px;
  }
  
  .section-title h2:after {
    width: 40px;
  }
} 