/* Responsive CSS */

/* Extra Large Devices (>1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* Large Devices (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .team-member {
        margin-bottom: 30px;
    }
}

/* Medium Devices (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .service-item, 
    .feature-item, 
    .price-item, 
    .about-feature {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .page-header {
        padding: 150px 0 80px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

/* Small Devices (576px - 767px) */
@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    
    .hero-section {
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 1rem;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    footer {
        padding: 50px 0 30px;
    }
    
    .footer-bottom {
        margin-top: 30px;
    }
    
    .page-header {
        padding: 130px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1rem;
    }
    
    /* Disable animations on mobile for performance and accessibility */
    .fade-up {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Simplify swiper navigation on small devices */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    /* Adjust slider height for mobile */
    .hero-image {
        height: 450px;
    }
}

/* Extra Small Devices (<576px) */
@media (max-width: 575px) {
    html {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 120px 0 50px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .service-item, 
    .feature-item, 
    .price-item, 
    .about-feature {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .page-header {
        padding: 120px 0 50px;
    }
    
    .hero-image {
        height: 350px;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-up {
        opacity: 1;
        transform: translateY(0);
    }
    
    .swiper-container {
        --swiper-autoplay-delay: 0; /* Disable autoplay */
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
} 