/* Mobile Menu Icon */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        border: none;
        background: transparent;
        padding: 0.25rem;
    }

    .nav-links {
        position: fixed;
        top: 80px; /* Match header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
} 
