/* ══════════════════════════════════════
        FOOTER MAIN — dark bg
    ══════════════════════════════════════ */
    .footer-accent {
        width: 100%;
        height: 1px;
        margin: 0 0 0 0;
    }

    .footer {
        position: relative;
        background: #161616;
        overflow: hidden;
    }

    /* ── Icon wallpaper grid ── */
    .footer-icon-grid {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, 90px);
        grid-template-rows: repeat(auto-fill, 90px);
        pointer-events: none;
        z-index: 0;
    }

    .fig-icon {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fig-icon svg {
        width: 38px;
        height: 38px;
        stroke: rgba(255, 255, 255, .09);
        fill: none;
        stroke-width: 1.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ── Inner content ── */
    .footer-inner {
        position: relative;
        z-index: 2;
        max-width: 1280px;
        margin: 0 auto;
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
        display: grid;
        grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
        gap: clamp(2rem, 4vw, 4rem);
    }

    /* ══════════════════════════════════════
       COL 1 — Brand
    ══════════════════════════════════════ */

    .ft-logo {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 1.1rem;
    }

    .ft-logo-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .ft-logo-icon svg {
        width: 100%;
        height: 100%
    }

    .ft-logo-name {
        font-family: 'Barlow', sans-serif;
        font-weight: 800;
        font-size: 1.35rem;
        color: #fff;
        letter-spacing: 1em;
    }

    .ft-desc {
        font-size: clamp(.8rem, 1.2vw, .88rem);
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.59);
        line-height: 1.7;
        margin-bottom: 1.6rem;
        max-width: 300px;
    }

    /* Social icons */
    .ft-socials {
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
    }

    .ft-social {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .05);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .22s, border-color .22s, transform .22s;
    }

    .ft-social:hover {
        background: rgba(255, 255, 255, .15);
        border-color: rgba(255, 255, 255, .25);
        transform: translateY(-2px);
    }

    .ft-social svg {
        width: 17px;
        height: 17px;
        stroke: rgba(255, 255, 255, .65);
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .22s;
    }

    .ft-social:hover svg {
        stroke: #fff
    }

    /* ══════════════════════════════════════
        COL 2 & 3 — Links
    ══════════════════════════════════════ */
    .ft-col-title {
        font-weight: 500;
        font-size: clamp(.95rem, 1.5vw, 1.1rem);
        color: #ffffffb9;
        letter-spacing: .01em;
        margin-bottom: 1.4rem;
        position: relative;
        padding-bottom: .7rem;
    }

    .ft-col-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: rgba(255, 255, 255, .22);
        border-radius: 2px;
    }

    .ft-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .7rem;
    }

    .ft-links a {
        font-size: clamp(.8rem, 1.2vw, .88rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.59);
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        transition: color .2s, gap .2s;
    }

    .ft-links a::before {
        content: '';
        display: block;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, .5);
        transition: width .22s;
        flex-shrink: 0;
    }

    .ft-links a:hover {
        color: rgba(255, 255, 255, .9)
    }

    .ft-links a:hover::before {
        width: 12px
    }

    /* ══════════════════════════════════════
        COL 4 — Contact
    ══════════════════════════════════════ */
    .ft-contact-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
    }

    .ft-contact-item {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
    }

    .ft-ci-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: .1rem;
        transition: background .22s, border-color .22s;
    }

    .ft-contact-item:hover .ft-ci-icon {
        background: rgba(255, 255, 255, .13);
        border-color: rgba(255, 255, 255, .2);
    }

    .ft-ci-icon svg {
        width: 19px;
        height: 19px;
        stroke: rgba(255, 255, 255, .6);
        fill: none;
        stroke-width: 1;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .22s;
    }

    .ft-contact-item:hover .ft-ci-icon svg {
        stroke: #fff
    }


    .ft-ci-label {
        font-size: .62rem;
        font-weight: 500;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .28);
        display: block;
        margin-bottom: .18rem;
    }

    .ft-ci-val {
        font-size: clamp(.78rem, 1.1vw, .56rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.59);
        line-height: 1.55;
        transition: color .2s;
    }

    .ft-contact-item:hover .ft-ci-val {
        color: rgba(255, 255, 255, .9)
    }

    a.ft-contact-item {
        cursor: pointer
    }

    /* ══════════════════════════════════════
        FOOTER BOTTOM DIVIDER + COPYRIGHT
    ══════════════════════════════════════ */
    .footer-bottom {
        position: relative;
        z-index: 2;
        border-top: 1px solid rgba(255, 255, 255, .08);
        background: #111;
    }

    .footer-bottom-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 1.1rem clamp(1.2rem, 5vw, 4rem);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: .75rem;
    }

    .ft-copy {
        font-size: clamp(.72rem, 1.1vw, .8rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.44);
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .ft-copy strong {
        color: rgba(255, 255, 255, 0.74);
        font-weight: 600
    }

    .ft-bottom-links {
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
    }

    .ft-bottom-links a {
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .04em;
        color: rgba(255, 255, 255, 0.45);
        text-transform: uppercase;
        transition: color .2s;
    }

    .ft-bottom-links a:hover {
        color: rgba(255, 255, 255, .65)
    }


 /* =========================
   FOOTER RESPONSIVE CSS
   ========================= */

/* Large Tablet */
@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .ft-desc {
        max-width: 100%;
    }

    .footer-bottom-inner {
        gap: 1rem;
    }
}

/* Tablet */
@media (max-width: 768px) {

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .ft-brand,
    .ft-links-col,
    .ft-contact {
        width: 100%;
    }

    .ft-desc {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .ft-bottom-links {
        justify-content: center;
    }

    .ft-socials {
        justify-content: flex-start;
    }

    .footer-icon-grid {
        display: none;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .ft-brand {
        text-align: center;
    }

    .ft-logo {
        justify-content: center;
    }

    .ft-desc {
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }

    .ft-socials {
        justify-content: center;
    }

    .ft-col-title {
        margin-bottom: 1rem;
    }

    .ft-links {
        gap: .55rem;
    }

    .ft-links-col {
        text-align: center;
    }

    .ft-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ft-contact-list {
        gap: 1rem;
    }

    .ft-contact-item {
        align-items:center;
    }

    .footer-bottom-inner {
        padding: 1rem;
    }

    .ft-copy {
        text-align: center;
        line-height: 1.6;
    }

    .ft-bottom-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .ft-contact {
        width: 100%;
        display: flex;
        /* text-align: center; */
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 400px) {

    .footer-inner {
        padding: 1.8rem 0.9rem;
    }

    .ft-social {
        width: 36px;
        height: 36px;
    }

    .ft-social svg {
        width: 15px;
        height: 15px;
    }

    .ft-ci-icon {
        width: 36px;
        height: 36px;
    }

    .ft-ci-icon svg {
        width: 16px;
        height: 16px;
    }

    .ft-bottom-links {
        flex-direction: column;
        gap: .7rem;
    }

    .ft-copy {
        font-size: 0.68rem;
    }

    .ft-ci-val {
        word-break: break-word;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {

    .footer-inner {
        padding: 1.5rem 0.75rem;
    }

    .ft-contact-item {
        gap: .55rem;
    }

    .ft-socials {
        gap: .45rem;
    }

    .ft-social {
        width: 34px;
        height: 34px;
    }

    .ft-ci-icon {
        width: 34px;
        height: 34px;
    }
}