/* Responsive CSS - Modernized */

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav-bar {
        display: none;
        /* Handled by JS toggle in future or kept hidden for now as per logic */
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-toggle span {
        width: 30px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

    /* Hero adjustments */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* TopBar Stack */
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info {
        font-size: 0.8rem;
    }
}