/* Minimalistic Footer Styles */
.lva-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'GT-Light', -apple-system, BlinkMacSystemFont, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lva-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.lva-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.lva-footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lva-footer__logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.lva-footer__logo span {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Canela-Regular', serif;
}

.lva-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.contact-item span {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

/* Prevent automatic phone number detection styling */
.contact-item a {
    text-decoration: none !important;
    color: inherit !important;
    border: none !important;
}

.contact-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: rgba(255, 255, 255, 0.5);
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.lva-footer__links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.lva-footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 400;
    position: relative;
}

.lva-footer__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.lva-footer__links a:hover {
    color: #ffffff;
}

.lva-footer__links a:hover::after {
    width: 100%;
}

.lva-footer__social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lva-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 24px;
    border-radius: 50%;
}

.lva-footer__social a:hover {
    color: #ffffff;
}

.lva-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    gap: 40px;
    min-height: 60px;
}

.lva-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    flex: 1;
}

.lva-footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.lva-footer__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.lva-footer__student-credit {
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    margin: 0;
    line-height: 1.4;
}

.lva-footer__student-credit:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lva-footer__student-credit .fas.fa-code {
    color: #53ffafbd;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lva-footer {
        padding: 40px 0 20px;
    }

    .lva-footer__container {
        padding: 0 20px;
    }

    .lva-footer__content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .lva-footer__contact {
        align-items: center;
        text-align: center;
    }

    .lva-footer__links {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lva-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }

    .lva-footer__center {
        order: 2;
    }

    .lva-footer__right {
        align-items: center;
        order: 3;
    }

    .lva-footer__contact {
        order: 1;
    }

    .lva-footer__student-credit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lva-footer__links {
        gap: 20px;
    }

    .lva-footer__links a {
        font-size: 15px;
    }
}
