/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-image {
        margin-bottom: 3rem;
    }
    
    .service-item, .feature-item, .price-item, .team-member, .review-item, .coreinfo-item, .blog-item {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-image {
        margin-bottom: 3rem;
    }
    
    .about-feature, .service-item, .feature-item, .price-item, .team-member, .review-item, .coreinfo-item, .blog-item {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-info {
        margin-bottom: 2rem;
    }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section {
        height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .about-feature, .service-item, .feature-item, .price-item, .team-member, .review-item, .coreinfo-item, .blog-item {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-title {
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }
    
    .footer-info {
        margin-bottom: 2rem;
    }
    
    .site-copyright {
        font-size: 0.8rem;
    }
    
    /* Reduce animation for mobile */
    @media (prefers-reduced-motion: reduce) {
        .about-feature:hover,
        .service-item:hover,
        .feature-item:hover,
        .price-item:hover,
        .team-member:hover,
        .coreinfo-item:hover,
        .blog-item:hover {
            transform: none;
        }
        
        .team-member:hover .team-img img,
        .blog-item:hover .blog-img img,
        .gallery-item:hover img {
            transform: none;
        }
    }
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 