/**
 * 2026 Footer Styles
 */

/* Footer Container */
.footer-2026 {
    background: #2d2d2d;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-2026-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Content - 3 Column Layout */
.footer-2026-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Left Column - Logo and Description */
.footer-2026-left {
    display: flex;
    flex-direction: column;
}

.footer-2026-logo {
    margin-bottom: 40px;
}

.footer-2026-logo a {
    display: inline-block;
}

.footer-2026-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-2026-description {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Middle Column - Both Navigation Menus */
.footer-2026-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-2026-nav {
    width: 100%;
}

.footer-2026-nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-2026-nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-2026-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-2026-menu li {
    margin: 0;
    padding: 0;
}

.footer-2026-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-2026-menu a:hover,
.footer-2026-menu a:focus {
    opacity: 0.7;
    text-decoration: none;
}

/* Right Column - Apps and Social */
.footer-2026-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-2026-apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom:75px;
    align-items: flex-end;
}

.footer-2026-app-badge {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 1 !important;
    position: relative;
    line-height: 0;
}

.footer-2026-app-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
}

.footer-2026-app-badge:hover,
.footer-2026-app-badge:focus {
    opacity: 0.8 !important;
    text-decoration: none;
}

.footer-2026-app-badge img {
    height: 50px;
    width: auto;
    display: block;
    opacity: 1 !important;
    filter: none !important;
    position: relative;
    z-index: 1;
}

.footer-2026-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-2026-social-icon {
    color: #2d2d2d !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #d3d3d3;
    border-radius: 50%;
}

.footer-2026-social-icon img {
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1) brightness(0.18);
    /* Makes SVG match footer background color #2d2d2d */
}

.footer-2026-social-icon i {
    color: #2d2d2d !important;
    display: inline-block;
    font-size: 24px;
}

.footer-2026-social-icon:hover,
.footer-2026-social-icon:focus {
    opacity: 0.7;
    text-decoration: none;
}

.footer-2026-social-icon:hover img,
.footer-2026-social-icon:focus img {
    opacity: 1;
}

.footer-2026-social-icon:hover i,
.footer-2026-social-icon:focus i {
    color: #2d2d2d !important;
}

/* Bottom Section - Copyright and Legal */
.footer-2026-bottom {
    margin-top: 40px;
}

.footer-2026-divider {
    border: none;
    border-top: 2px solid #4a4a4a;
    width: 100%;
    margin: 0 0 20px 0;
}

.footer-2026-copyright {
    text-align: center;
    margin-bottom: 16px;
}

.footer-2026-copyright p {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin: 0;
}

.footer-2026-copyright a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-2026-copyright a:hover,
.footer-2026-copyright a:focus {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-2026-legal-wrapper {
    background: #111111;
    width: 100%;
    margin-top: 0;
}

.footer-2026-legal {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.footer-2026-legal p {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-2026-main {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-2026 {
        padding: 40px 0 24px;
    }

    .footer-2026-container {
        padding: 0 16px;
    }

    .footer-2026-legal {
        padding: 16px;
    }

    .footer-2026-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 32px;
    }

    .footer-2026-middle {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-2026-right {
        align-items: flex-start;
    }

    .footer-2026-apps {
        align-items: flex-start;
    }

    .footer-2026-bottom {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .footer-2026-container {
        padding: 0 12px;
    }

    .footer-2026-main {
        gap: 32px;
    }

    .footer-2026-logo img {
        height: 40px;
    }

    .footer-2026-legal {
        padding: 12px;
    }
}

