/* =================================================
   NexGen Media - Responsive Breakpoints
   ================================================= */

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(6, 8, 12, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }

    .navbar.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
        gap: 2rem;
    }

    .about-snippet-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid,
    .why-us-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .promo-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .promo-box p {
        margin: 0 auto;
    }

    .contact-lead-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-section {
        padding: 8rem 0 4rem 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .services-grid,
    .why-us-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .why-card,
    .testimonial-card {
        padding: 1.75rem;
    }

    .lead-form-wrapper {
        padding: 2rem 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
    }
}