/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .team-img {
        width: 150px;
        height: 150px;
    }

    /* Disable animations on mobile */
    @media (prefers-reduced-motion: no-preference) {
        .fade-in {
            animation: none;
        }
        
        .services-item:hover,
        .blog-item:hover,
        .priceplan-item:hover {
            transform: none;
        }
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .priceplan-item,
    .services-item {
        margin-bottom: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* Specific adjustments for special sections */
@media (max-width: 767.98px) {
    /* Swiper adjustments for mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    /* Footer adjustments */
    .site-footer {
        text-align: center;
    }
    
    .site-footer .col-md-4 {
        margin-bottom: 2rem;
    }
    
    /* Gallery adjustments */
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    /* Contact form adjustments */
    .contact-info {
        margin-bottom: 2rem;
    }
} 