/* Mobile Responsiveness & Hamburger Menu */

/* Default (Hidden on Desktop) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: inherit;
    /* Inherit navbar text color */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        /* Ensure it stays at top */
        background-color: #1a5c61;
        /* Fallback for transparency */
        padding: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1a5c61;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links li a {
        color: white !important;
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem;
    }

    .logo-hero {
        display: none;
        /* Hide hero logo on mobile if redundant or messy */
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        /* Ensure visible on dark background */
    }

    /* Adjust grid layouts for mobile */
    .hero {
        flex-direction: column;
        padding-top: 0;
        /* Resetting padding for full fill */
        min-height: 100vh;
        display: flex;
        align-items: stretch;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid,
    .service-grid {
        grid-template-columns: 1fr;
        /* Single column */
    }

    .container {
        padding: 0 15px;
    }
}