/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .hero-title-1 {
        font-size: 2rem;
    }
    
    .hero-subtitle-1 {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .team-card-img {
        height: 250px;
    }
    
    .service-card, .price-card, .team-card, .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .review-card {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .accordion-button {
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title-1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-1 {
        font-size: 1.3rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .service-card, .price-card, .team-card, .blog-card {
        margin-bottom: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title-1 {
        font-size: 3rem;
    }
    
    .service-card-img {
        height: 180px;
    }
    
    .team-card-img {
        height: 280px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-title-1 {
        font-size: 4rem;
    }
    
    .container {
        max-width: 1140px;
    }
}

/* Additional accessibility for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    
    .swiper-container {
        --swiper-autoplay: false;
    }
    
    .service-card:hover,
    .price-card:hover,
    .team-card:hover,
    .blog-card:hover,
    .about-feature:hover,
    .coreinfo-item:hover,
    .gallery-item:hover {
        transform: none !important;
    }
}

/* Specific mobile optimizations for sliders and interactivity */
@media (max-width: 767.98px) {
    .swiper-container {
        --swiper-autoplay: false;
    }
    
    .fade-in {
        opacity: 1;
        transform: translateY(0);
    }
    
    .accordion-button {
        font-size: 0.9rem;
    }
    
    .nav-link::after {
        display: none;
    }
} 