/* ==================== Enhanced Detailed Footer ==================== */
.main-footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 4rem 0 0 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col {
    min-width: 0;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-desc {
    margin: 1.5rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-weight: 700;
}

.footer-links-list a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-socials {
    margin-top: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-left: 0;
    margin-right: 10px;
    color: white;
}

.app-downloads {
    width: 100%;
}

.app-btn {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    box-sizing: border-box;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--primary-dark);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer-col,
    .footer-bottom-container {
        text-align: center;
    }

    .main-footer .logo {
        justify-content: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-desc,
    .contact-info,
    .contact-info p {
        text-align: center;
    }

    .footer-socials {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-socials a,
    .footer-socials span {
        margin-right: 0;
    }

    .footer-links-list a {
        justify-content: center;
        width: 100%;
    }

    .app-downloads {
        align-items: center;
    }

    .app-btn {
        justify-content: center;
    }

    .app-btn > span {
        text-align: center !important;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
    }

    .footer-bottom p {
        width: 100%;
        text-align: center;
    }
}
