footer {
    margin-top: 60px;
    padding-bottom: 90px;
}
footer .container {
    position: relative;
}

/* Footer navigation */
.footer-nav-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid #0a2a28;
}
.footer-nav-col .f_title {
    color: #d2eeed !important;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-nav-col a,
.footer-nav-col a:link,
.footer-nav-col a:visited,
.footer-nav-col a:active {
    color: #3b6f6d !important;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.3;
}
.footer-nav-col a:hover {
    color: #04CFAA !important;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #0a2a28;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}
.social-icon:hover {
    border-color: #04CFAA;
}
.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Trust section (providers + payments) */
.footer-trust {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #0a2a28;
}
.footer-providers,
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.footer-providers img,
.footer-payments img {
    opacity: 0.4;
    transition: opacity 0.2s;
}
.footer-providers img:hover,
.footer-payments img:hover {
    opacity: 0.8;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #0a2a28;
    gap: 15px;
}
.footer_copy {
    color: #3b6f6d;
    font-size: 12px;
}
.legal-license-age {
    color: #3b6f6d;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #3b6f6d;
    border-radius: 4px;
    padding: 2px 6px;
    flex-shrink: 0;
}

/* Language dropdown */
.language-dropdown {
    position: relative;
}
.lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid #0a2a28;
    border-radius: 6px;
    color: #d2eeed;
    font-size: 13px;
    transition: border-color 0.2s;
}
.lang-button:hover {
    border-color: #04CFAA;
}
.dropdown-content {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #031717;
    border: 1px solid #0a2a28;
    border-radius: 8px;
    min-width: 160px;
    padding: 5px 0;
    margin-bottom: 5px;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}
.dropdown-content.show {
    display: block;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #3b6f6d;
    text-decoration: none;
    font-size: 13px;
    transition: 0.15s;
}
.lang-option:hover {
    background: #0a2a28;
    color: #d2eeed;
}

/* Mobile fixed nav */
.mobile-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00100e;
    border-top: 1px solid #0a2a28;
    padding: 6px 0;
    z-index: 99;
    display: none;
}
.mobile-fixed-href {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: #3b6f6d;
    font-size: 10px;
    flex: 1;
    transition: color 0.15s;
}
.mobile-fixed-href:hover,
.mobile-fixed-href.mobile-href-act {
    color: #ffffff;
}
.mobile-fixed-icon {
    width: 24px;
    height: 24px;
}
.mobile-fixed-icon svg {
    width: 100%;
    height: 100%;
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 70px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff2400;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 98;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1020px) {
    .footer-nav-section {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-nav-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .mobile-fixed {
        display: flex;
    }
    footer {
        padding-bottom: 70px;
    }
}
