/**
 * Footer Styles para Flight Support
 */

.footer {
    background-color: #ffffff;
    width: 100%;
    padding: 4rem 5% 2rem 5%;
    color: #0b132b;
    font-family: 'Kontora', 'Outfit', sans-serif;
    box-sizing: border-box;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05); /* Sombra en el borde superior */
    position: relative;
    z-index: 5;
}

.footer * {
    box-sizing: border-box;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 900px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
}

/* Left Column */
.footer-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .footer-col-left {
        align-items: flex-start;
        flex: 1;
    }
}

.footer-logo {
    width: 250px;
    max-width: 100%;
    display: block;
}

.footer-links-soft {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
}

.footer-links-soft li,
.footer-links-soft a {
    color: #3f4756;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links-soft a:hover {
    color: #86651e;
}

/* Center Column */
.footer-col-center {
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .footer-col-center {
        flex: 1;
        align-items: center;
    }
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
}

.footer-nav-links a {
    color: #0b132b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav-links a:hover {
    color: #86651e;
}

/* Right Column */
.footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 900px) {
    .footer-col-right {
        align-items: flex-end;
        flex: 1;
    }
}

.footer-heading-support {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    color: #0b132b;
}

.footer-faq-link {
    color: #3f4756;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
}

.footer-faq-link:hover {
    color: #86651e;
}

.footer-lang-dropdown {
    position: relative;
    display: inline-block;
}

.footer-lang-btn {
    background-color: #86651e;
    color: #ffffff;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-lang-btn:hover {
    background-color: #6a4f17;
}

.footer-lang-content {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.footer-lang-dropdown:hover .footer-lang-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-lang-content a {
    padding: 0.8rem 1.5rem;
    color: #0b132b;
    text-decoration: none;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.2s, color 0.2s;
    text-align: left;
}

.footer-lang-content a:hover {
    background-color: #f5f5f5;
    color: #86651e;
}

.footer-lang-content a.active {
    background-color: #e8efe2; /* Using a very subtle background for active if needed or just color */
    color: #86651e;
    border-left: 3px solid #86651e;
}

/* Divider */
.footer-divider {
    max-width: 1400px;
    margin: 2.5rem auto 1.5rem auto;
    height: 1px;
    background-color: #e5dccf;
}

/* Bottom Section */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 900px) {
    .footer-bottom {
        flex-direction: row;
    }

    .footer-bottom > * {
        flex: 1;
        display: flex;
    }

    .footer-bottom-item:first-child {
        justify-content: flex-start;
    }

    .footer-bottom-phone {
        justify-content: center;
    }

    .footer-bottom-socials {
        justify-content: flex-end;
    }
}

.footer-bottom-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0b132b;
}

.footer-bottom-item a {
    color: #0b132b;
    text-decoration: none;
}

.footer-bottom-item a:hover {
    color: #86651e;
}

.footer-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.footer-bottom-socials {
    display: flex;
    gap: 1rem;
}

.footer-bottom-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #86651e;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-socials a:hover {
    transform: translateY(-3px);
    background-color: #6a4f17;
}