/* Mobile footer component styles
   Extracted from index-mobile.css so mobile footer works site-wide.
*/

@media (max-width: 767.98px) {
    /* Hide desktop footer on mobile */
    .site-footer {
        display: none !important;
    }

    .mobile-footer {
        background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 50%, #1e293b 100%);
        padding: 60px 20px 30px;
        position: relative;
        overflow: hidden;
    }

    .mobile-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 224, 224, 0.5), transparent);
    }

    .mobile-footer-content {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Brand */
    .mobile-footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .mobile-footer-logo {
        height: 50px;
        margin-bottom: 16px;
    }

    .mobile-footer-description {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    /* Links */
    .mobile-footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .mobile-footer-section {
        text-align: center;
    }

    .mobile-footer-heading {
        font-size: 14px;
        font-weight: 700;
        color: #00e0e0;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-footer-menu li {
        margin-bottom: 12px;
    }

    .mobile-footer-menu a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .mobile-footer-menu a:active {
        color: #00e0e0;
        transform: translateX(4px);
    }

    /* Contact */
    .mobile-footer-contact {
        text-align: center;
        margin-bottom: 40px;
        padding: 30px 20px;
        background: rgba(0, 224, 224, 0.05);
        border-radius: 16px;
        border: 1px solid rgba(0, 224, 224, 0.1);
    }

    .mobile-footer-contact-items {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-footer-contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-footer-contact-item i {
        width: 20px;
        text-align: center;
        color: #00e0e0;
        font-size: 16px;
    }

    .mobile-footer-contact-item:active {
        color: #00e0e0;
        transform: scale(1.05);
    }

    /* Social */
    .mobile-footer-social {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 32px;
    }

    .mobile-footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-footer-social a:active {
        background: linear-gradient(135deg, #00c0c0, #00e0e0);
        border-color: #00e0e0;
        color: #ffffff;
        transform: scale(1.1);
    }

    /* Portal */
    .mobile-footer-portal-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 32px;
        background: linear-gradient(135deg, #00c0c0 0%, #00e0e0 100%);
        color: #ffffff;
        text-decoration: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(0, 224, 224, 0.3);
        transition: all 0.3s ease;
        margin-bottom: 40px;
    }

    .mobile-footer-portal-btn:active {
        transform: scale(0.98);
        box-shadow: 0 6px 20px rgba(0, 224, 224, 0.4);
        color: #ffffff;
    }

    .mobile-footer-portal-btn i {
        font-size: 18px;
    }

    /* Bottom */
    .mobile-footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-footer-bottom p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin: 4px 0;
    }
}

@media (max-width: 390px) {
    .mobile-footer {
        padding: 50px 16px 24px;
    }

    .mobile-footer-links {
        gap: 24px;
    }

    .mobile-footer-heading {
        font-size: 13px;
    }

    .mobile-footer-menu a {
        font-size: 13px;
    }

    .mobile-footer-contact {
        padding: 24px 16px;
    }

    .mobile-footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .mobile-footer-portal-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}
