/*** Footer ***/
.site-footer {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 3rem 0.75rem 2rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand-divider {
    display: none;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

.footer-separator {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
}

.footer-logo {
    width: auto;
    height: 2.5rem;
    display: block;
}

.global-home-link-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.global-home-link-footer:hover {
    opacity: 0.8;
}

.global-home-link-footer svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--white);
}

/* Footer Columns */
.footer-columns {
    display: flex;
    gap: 4rem;
    width: 100%;
}

.footer-column {
    flex: 1;
    width: 33.333%;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-menu a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-menu a:hover {
    opacity: 0.8;
}

/* Footer Contact Column */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--green);
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.footer-contact-link:hover {
    opacity: 0.8;
}

.footer-contact-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-phone {
    text-decoration: none;
}

.footer-address-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-address-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-address-item svg {
    color: var(--green);
}

.footer-address-item svg path,
.footer-address-item svg circle {
    fill: currentColor;
}

.footer-address-label {
    color: var(--green);

    text-decoration-color: var(--green);
    text-underline-offset: 3px;
    margin-bottom: 0.5rem;
}

.footer-address-text {
    color: var(--white);
    line-height: 1!important;
}

/* Footer Country Select */
.footer-country-select {
    position: relative;
    margin-top: 1rem;
}

.footer-country-trigger {
    background-color: var(--white);
    color: var(--blue-navy);
    border: none;
    border-radius: var(--radius-small);
    padding: 0.625rem 0.875rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9375rem;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    transition: opacity 0.2s ease;
}

.footer-country-trigger:hover {
    opacity: 0.9;
}

.footer-country-trigger svg {
    width: 12px;
    height: 7px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.footer-country-trigger svg path {
    stroke: var(--blue-navy);
}

.footer-country-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.footer-country-list {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 0.5rem;
    background-color: var(--white);
    border-radius: var(--radius-small);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
}

.footer-country-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-country-list li:last-child {
    border-bottom: none;
}

.footer-country-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--blue-navy);
    text-decoration: none;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9375rem;
    transition: background-color 0.2s ease;
}

.footer-country-list a:hover {
    background-color: var(--blue-lightest);
}

.footer-country-list .country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
    margin-top: 12px;
    margin-bottom: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    transition: opacity 0.2s ease;
    text-decoration: none;
    color: var(--green);
    background-color: var(--green);
    border-radius: 50%;
}

.footer-social-link svg {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
}

.footer-social-link svg path,
.footer-social-link svg g {
    fill: var(--green-dark);
}

.footer-social-link:hover {
    opacity: 0.8;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--green);
}

/* Footer Copyright */
.footer-copyright {
    margin: 0;
    padding: 0;
}

.footer-copyright p {
    margin: 0;
    padding: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.875rem;
    font-weight: normal;
    color: var(--white);
}

/* Mobile Footer */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 2rem 0.75rem 1.5rem;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-brand-divider {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--white);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-menu {
        gap: 0.875rem;
        margin-bottom: 0;
    }
    
    .footer-column:nth-child(1) .footer-menu li:last-child {
        margin-bottom: 0.875rem;
    }
    
    
    .footer-contact {
        width: 100%;
        margin-top: 2rem;
    }
    
    .footer-contact-link,
    .footer-address-item,
    .footer-country-select {
        width: 100%;
    }
    
    .footer-social {
        margin-left: 0;
    }
}

