/* Tablet View */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
}

/* Tablet View for New Pages */
@media (max-width: 992px) {
    .about-grid, .mv-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-header i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Mobile View for New Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        margin-bottom: 2rem;
    }
    
    .step:last-child {
        margin-bottom: 0;
    }
}