
/* ==========================================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */

.hidden-desktop {
    display: none !important;
}

@media (max-width: 992px) {
    .hidden-desktop {
        display: block !important;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        display: none !important;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
    .hero-mobile-counter {
        margin: 30px auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-mobile-counter .trust-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 16px !important;
        margin: 0 auto !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius-sm) !important;
    }
    .inputs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }

    .navbar {
        padding: 10px 16px;
        border-radius: 20px;
    }

    .fynd-logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .action-bridge .bridge-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 20px 16px;
    }

    .inputs-header h2 {
        font-size: 1.5rem;
    }

    .col-header {
        text-align: center;
        margin-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left .footer-subcopy {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .btn-yellow, .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .trust-number {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns button {
        width: 100%;
    }
}

/* Responsive Logo Fix */
@media (max-width: 768px) {
    .fynd-logo-img {
        height: clamp(55px, 12vw, 80px) !important;
        width: auto !important;
        transform: none !important;
        margin: 0 !important;
        object-fit: contain !important;
    }

    /* Hide EDGE+ text logo in portrait on small screens */
    @media (orientation: portrait) {
        .edge-logo-img {
            display: none !important;
        }
    }
    
    /* Show in landscape */
    @media (orientation: landscape) {
        .edge-logo-img {
            display: block !important;
        }
    }

    .about-mission-block {
        text-align: center !important;
    }
}
