/* Extra large devices (large desktops) */
@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 0;
    }
}

/* Large devices (desktops) */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title h3 {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .team-image {
        width: 180px;
        height: 180px;
    }
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .section-title h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-section {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-feature, 
    .service-card, 
    .feature-box, 
    .price-card,
    .team-member,
    .blog-card {
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    /* Disable animations for mobile */
    @media (prefers-reduced-motion: reduce) {
        .swiper-container {
            --swiper-theme-color: var(--primary-color-1);
        }
        
        .swiper-autoplay {
            display: none !important;
        }
        
        .hero-shape,
        .about-feature:hover,
        .service-card:hover,
        .feature-box:hover,
        .price-card:hover,
        .blog-card:hover,
        .gallery-item:hover img,
        .btn-custom:hover {
            transform: none !important;
            transition: none !important;
        }
    }
}

/* Small devices (landscape phones) */
@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title h3 {
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    .price-header {
        padding: 20px;
    }
    
    .price-body {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    footer {
        padding: 50px 0 20px;
    }
    
    .accordion-button {
        padding: 15px;
    }
    
    .accordion-body {
        padding: 15px;
    }
} 