/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-item,
    .feature-item,
    .price-plan-item,
    .core-info-item,
    .contact-form {
        padding: 25px 20px;
    }
    
    .team-info {
        margin: -20px 10px 0;
        padding: 15px;
    }
    
    .review-item {
        padding: 25px 20px;
    }
    
    .about-feature {
        margin-top: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse .nav-link {
        color: #333;
    }
    
    .blog-item {
        margin-bottom: 30px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse .nav-link {
        color: #333;
    }
    
    .about-feature {
        margin-top: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .blog-item {
        margin-bottom: 30px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about-feature {
        margin-top: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .section-title h2 {
        font-size: 2.3rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    
    .swiper-container {
        --swiper-pagination-bullet-inactive-opacity: 0.5;
        --swiper-pagination-bullet-size: 10px;
    }
}

/* Disable autoplay and effects on mobile */
@media (max-width: 767.98px) {
    .swiper-container {
        --swiper-autoplay-delay: 0;
        --swiper-effect-fade-crossfade: 0;
    }
} 