.footer {
    background-color: #004D3A;
    color: white;
    padding: 0;
    position: relative;
}

.footer-banner {
    padding: 2rem 15px;
}

.footer-banner .container {
    padding: 0;
    border-radius: 30px;
    margin: 0 auto;
    overflow: hidden;
}

.footer-banner-content {
    display: flex;
    align-items: stretch;
    border-radius: 30px;
    overflow: hidden;
}

.footer-banner-left {
    position: relative;
    background-color: #007D6B;
    padding: 2rem 2.5rem;
    flex: 1;
    min-height: 150px;
}

.footer-banner-left::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 200px;
    border-radius: 50%;
    background-color: #006551;
}

.footer-banner-right {
    position: relative;
    background-color: #006551;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    min-width: 180px;
}

.footer-banner-title {
    font-size: 36px;
    font-weight: 500;
    color: white;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-banner-text {
    font-size: 20px;
    color: white;
    margin: 0.5rem 0 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-banner-link {
    position: relative;
    z-index: 1;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.3s;
}

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

@media (max-width: 767px) {
    .footer-banner {
        padding: 1rem 15px;
    }
    .footer-banner .container {
        border-radius: 30px;
    }
    .footer-banner-content {
        border-radius: 30px;
    }
    .footer-banner-left {
        padding: 1.25rem 1rem;
        min-height: auto;
    }
    .footer-banner-left::after {
        right: -80px;
        width: 100px;
        height: 160px;
    }
    .footer-banner-right {
        padding: 1.25rem 1rem;
        min-height: auto;
        min-width: 120px;
        justify-content: flex-end;
    }
    .footer-banner-title {
        font-size: 1.5rem;
        font-weight: bold;
    }
    .footer-banner-text {
        font-size: 0.875rem;
        margin-top: 0.35rem;
    }
    .footer-banner-link {
        font-size: 1rem;
        font-weight: 600;
    }
}

.footer-content {
    padding: 3rem 0 2rem;
}

.footer-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.footer-links a:hover {
    color: white;
}

.footer-logo-col {
    display: flex;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.footer-apps {
    padding: 1.5rem 0;
}

.footer-apps-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-apps-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-app-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-app-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.app-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.app-badge {
    display: inline-block;
}

.app-badge img {
    height: 50px;
    width: auto;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.footer-social {
    margin: 0 -12px;
    gap: 0 1rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-social {
        flex-wrap: nowrap;
    }
}

.footer-social-col {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
}

.social-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none !important;
    font-size: 0.9375rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.25s ease-in-out;
}

.social-link-item:hover {
    color: #7dd3c0;
}

.social-link-item span {
    opacity: 0.8;
    transition: opacity 0.25s ease-in-out;
}

.social-link-item:hover span {
    opacity: 1;
}

.social-link-item:hover .social-link-icon {
    opacity: 1;
    color: #7dd3c0;
}

.social-link-icon {
    display: flex;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.25s ease-in-out, color 0.25s ease-in-out;
}

.social-link-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    flex: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.footer-privacy-link:hover {
    color: white;
}

.btn-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #004D3A;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.btn-scroll-top-icon {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-scroll-top:hover {
    background-color: #005A37;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
