/* --- Responsive Mobile Optimization --- */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        padding-top: 160px;
        padding-bottom: 120px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    /* Header & Nav */
    .header-container {
        height: auto;
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .logo {
        order: -2;
        margin: 0 auto;
    }

    .logo img {
        height: 63px;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .header-btn {
        display: flex !important;
        order: -1;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background: #050511;
        padding: 30px;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        order: 1;
    }

    .nav.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        padding-top: 200px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    /* Special Form - Remove overlap on mobile */
    .special-form-section {
        margin-top: 0;
        margin-bottom: 60px;
    }

    .special-card {
        padding: 25px;
    }

    .special-card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Quote Wrapper */
    .quote-wrapper {
        padding: 30px 20px;
        width: 100%;
        margin: 0;
        border-radius: var(--radius-md);
    }

    .quote-content h2 {
        font-size: 1.8rem;
    }

    .quote-content p {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        /* Single column for products on small screens */
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .footer {
        text-align: center;
    }

    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        /* Full width buttons on very small screens */
    }
}