.bca-pool-footer {
    --footer-text: #dce8e2;
    --footer-accent: #f4c542;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #0b3f31;
    color: var(--footer-text);
}

.bca-pool-footer__wave-top {
    position: absolute;
    top: -38px;
    left: -3%;
    right: -3%;
    height: 78px;
    border-radius: 50%;
    background: #fbfaf4;
    z-index: 1;
}

.bca-pool-footer__main {
    position: relative;
    z-index: 2;
}

.bca-pool-footer__inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr .8fr .8fr;
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
}

.bca-pool-footer__column {
    min-width: 0;
}

.bca-pool-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #ffffff;
}

.bca-pool-footer__logo img {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
}

.bca-pool-footer__tagline {
    max-width: 330px;
    color: var(--footer-text);
    font-size: 15px;
    line-height: 1.7;
}

.bca-pool-footer__tagline p {
    margin: 0;
}

.bca-pool-footer__heading {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
}

.bca-pool-footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--footer-accent);
}

.bca-pool-footer__contacts,
.bca-pool-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bca-pool-footer__contact-link,
.bca-pool-footer__link {
    color: var(--footer-text);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.bca-pool-footer__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.bca-pool-footer__link {
    position: relative;
    display: inline-flex;
    width: fit-content;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.bca-pool-footer__link::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--footer-accent);
    font-weight: 900;
}

.bca-pool-footer__contact-link:hover,
.bca-pool-footer__link:hover,
.bca-pool-footer__powered:hover {
    color: #fff;
}

.bca-pool-footer__link:hover {
    transform: translateX(3px);
}

.bca-pool-footer__icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
    color: var(--footer-accent);
}

.bca-pool-footer__icon svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

.bca-pool-footer__bottom {
    position: relative;
    z-index: 2;
    background: #0f5a42;
}

.bca-pool-footer__bottom-inner {
    width: min(100%, 1320px);
    min-height: 64px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.bca-pool-footer__copyright,
.bca-pool-footer__powered {
    color: rgba(255,255,255,.82);
    font-size: 12px;
    line-height: 1.5;
}

.bca-pool-footer__powered {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .bca-pool-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bca-pool-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bca-pool-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 18px;
        padding-bottom: 18px;
    }
}
