/* === GLOBAL FOOTER STYLES === */
.afandu-footer {
    background: #000000;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    padding: 10vh 2vw 0 2vw;
    position: relative;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-content {
    position: relative;
    z-index: 2;
    mix-blend-mode: exclusion;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-grow: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6vw;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-top: 20vh;
}

.footer-tagline {
    flex: 1.4;
}

.footer-tagline h2 {
    font-size: 3.6em;
    font-weight: 400;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-family: "Inter", sans-serif;
    margin-bottom: 1.4em;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    align-items: flex-start;
}

.footer-cta-button {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 1em 2.4em;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    display: inline-block;
    font-family: "Inter", sans-serif;
    position: relative;
    z-index: 10000;
    cursor: pointer;
}

.footer-cta-button:hover {
    background: #ffffff;
    color: #000000;
}

.footer-cta-text {
    font-size: 0.75em;
    color: #ffffff;
    margin-top: 0.5em;
}


.footer-right {
    flex: 0.8;
    text-align: right;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5em;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.footer-contact a {
    display: block;
    font-size: 1.5em;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 3.5em;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
}

.footer-contact a:hover {
    color: #086b79;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

.footer-social-links a {
    font-size: 1.5em;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
}

.footer-social-links a:hover {
    color: #086b79;
}

.footer-logo-bg {
    position: absolute;
    top: 25%;
    left: 22%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    will-change: transform;
    transition: filter 0.3s ease;
}

.footer-logo-bg img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.9em;
    color: #ffffff;
    max-width: none;
    margin: 0;
    padding-top: 3vh;
    padding-bottom: 2.5vh;
    /* Standardized to raise from absolute bottom */
    margin-bottom: 0px;
    font-family: "Inter", sans-serif;
    width: 100%;
    margin-top: auto;
}

.footer-privacy a,
.footer-copyright p {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
    margin: 0;
    display: inline;
}

.footer-privacy a:hover {
    color: #086b79;
}

.footer-privacy::after {
    content: "•";
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.4);
}


@media (max-width: 900px) {
    .afandu-footer {
        padding: 8vh 4vw 0 4vw;
        min-height: 100vh;
    }

    .footer-top {
        flex-direction: column;
        gap: 4em;
        padding-top: 15vh;
    }

    .footer-right {
        text-align: left;
    }

    .footer-tagline h2 {
        font-size: 2.3em;
        line-height: 1.1;
    }

    .footer-cta-button {
        padding: 0.9em 2em;
    }

    .footer-contact a,
    .footer-social-links a {
        font-size: 1.3em;
    }

    .footer-logo-bg img {
        max-width: 250px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8em;
        text-align: center;
        padding-bottom: 2.5vh;
        /* Match desktop raised padding */
    }

    .footer-privacy::after {
        display: none;
        /* Hide separator dot on stacked mobile layout */
    }
}