/* ==========================================================================
   Footer Styles (Unified based on Contact Page)
   ========================================================================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Override container max-width to match other pages on desktop */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.footer-logo {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    font-family: var(--font-main);
    margin-bottom: 20px;
    text-decoration: none;
    display: inline-block;
}

.footer-right {
    text-align: right;
    margin-top: 10px;
}

.footer-contact {
    opacity: 0.8;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.contact-numbers {
    margin: 10px 0;
    font-family: var(--font-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--white);
    transition: all 0.4s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    padding-left: 10px;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .footer-lang-switch {
    position: static;
    transform: none;
    margin-top: 0;
    display: flex;
    gap: 8px;
    font-size: 14px;
    align-items: center;
}

.footer-lang-switch .lang-opt {
    color: var(--white);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 14px;
}

.footer-lang-switch .lang-opt.active {
    opacity: 1;
    font-weight: 700;
}

.footer-lang-switch .lang-separator {
    color: var(--white);
    opacity: 0.3;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .footer {
        padding: 40px 0;
    }

    .footer-top-section {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-links {
        align-items: center;
    }

    .footer-right {
        text-align: center;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        padding-top: 30px;
        align-items: center;
    }

    .footer-bottom .footer-lang-switch {
        justify-content: center;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Footer tweaks for Mobile if needed (inherited from 1200px) */
    .footer-lang-switch {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 32px;
    }
}