/* Responsive Styles */

@media (max-width: 768px) {

    /* Header */
    .mobile-menu-toggle {
        display: block;
        z-index: 200;
    }

    .main-nav ul {
        display: none;
        /* Hide by default */
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--c-white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: var(--sp-md);
        text-align: center;
    }

    .main-nav ul.active {
        display: flex;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        -webkit-mask-image: none;
        mask-image: none;
        width: 100%;
        /* Ensure full width on mobile */
    }

    .hero-text p {
        margin: 0 auto var(--sp-md);
    }

    /* About & Contact Grid */
    .about-grid,
    .contact-content,
    .footer-inner,
    .service-columns {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    /* Typography */
    .hero-text h1 {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem;
    }
}