/* =========================================
   MA PRINT - RESPONSIVE QUERIES
   ========================================= */

/* Tablet & Smaller Laptops (Max 991px) */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .grid-container {
        gap: 25px;
    }
}

/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar to save screen real estate */
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .form-group {
        grid-template-columns: 1fr; /* Stack form inputs vertically */
        gap: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr !important; /* Stack contact info and form */
        gap: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    /* Mobile Menu Styles */
    .menu-toggle {
        display: block !important;
        font-size: 28px;
        color: var(--primary-black);
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%; 
        width: 100%;
        /* Mobile Glassmorphism */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 10px !important;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        left: 0; 
    }

    .nav-links li {
        width: 90%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-radius: 8px; /* Rounded corners for mobile taps */
    }
    
    .btn-call {
        display: none !important; /* Hide header call button on mobile */
    }
}