.footer-section {
    width: 100%;
    color: #fff;
    padding: 60px 24px;
    box-sizing: border-box;
    position: relative; /* for any absolute children */
    overflow: hidden;
    top: 50px;
}

.footer-divider {
    width: 940px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 20px auto; /* center and add bottom spacing */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 940px;
    margin: 0 auto;
    padding: 40px 0;
    gap: 201px; /* as per Figma */
    flex-wrap: wrap;
}

.footer-logo-desc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    max-width: 619px;
}

.footer-logo {
    width: 93px;
    height: 76px;
    object-fit: contain;
}

.footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 502px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    background: #1C1C1C;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon img,
.social-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    width: 940px;
    /* align-items: center; */
    gap: 24px; /* space between items */
    /* width: 703px; */
    margin: 20px auto 0 auto; /* top margin and center horizontally */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #808080;
    flex-wrap: wrap; /* for smaller screens */
}

.footer-bottom a {
    color: #808080;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-copyright {
     width: 940px;
    margin: auto; /* space between divider and copyright */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: #808080;
}

.footer-ellipse {
    position: absolute;
    width: 642px;
    height: 427px;
    left: 50%;
    bottom: 0; /* stick to the bottom of the footer */
    transform: translateX(-50%);
    background: rgba(103, 235, 211, 0.12);
    filter: blur(100px);
}

.footer-ellipse-40 {
    position: absolute;
    width: 235.04px;
    height: 352.16px;
    left: 10%;
    top: 30%;
    bottom: 50px; /* adjust how high from the bottom */
    transform: translateX(-50%) rotate(-15deg);
    background: rgba(103, 235, 211, 0.13);
    filter: blur(100px);
}

.footer-ellipse-39 {
    position: absolute;
    width: 235.04px;
    height: 352.16px;
    left: 85%;
    top: 10%;
    bottom: 50px; /* adjust how high from the bottom */
    transform: translateX(-50%) rotate(-15deg);
    background: rgba(103, 235, 211, 0.13);
    filter: blur(100px);
}
.footer-ellipse,
.footer-ellipse-40,
.footer-ellipse-39 {
    pointer-events: none; /* ← this allows clicks to pass through */
}

/* Mobile Footer Responsive */
/* Mobile Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 16px; /* reduce padding */
        top: 0;
    }

    /* Top section stacked */
    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        width: 100%; /* full width on mobile */
        padding: 20px 0;
    }

    .footer-logo-desc {
        flex-direction: column; /* stack logo & text */
        align-items: center;
        gap: 12px;
        max-width: 100%;
    }

    .footer-logo {
        width: 80px;
        height: auto;
    }

    .footer-desc {
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }

    /* Socials */
    .footer-socials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon svg {
        width: 100%;
        height: 100%;
    }

    /* Bottom links */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        text-align: center;
        margin: 16px 0 0 0;
    }

    .footer-bottom a {
        font-size: 12px;
    }

    .footer-divider {
        width: 100%;
        margin: 12px 0;
    }

    .footer-copyright {
        width: 100%;      /* make it full width */
        margin: 12px 0 0; /* top spacing only */
        text-align: center;
    }

    /* Hide decorative ellipses */
    .footer-ellipse,
    .footer-ellipse-40,
    .footer-ellipse-39 {
        display: none;
    }
}

@media (min-width: 1441px) {
    .footer-divider{
        width: 80%;
    }
    .footer-top {
        width: 80%;
    }
    .footer-bottom {
        width: 80%; 
    }
    .footer-copyright {
        width: 80%;
    }
}

/* ===== XL Screens (≥1441px) ===== */
