.akra-footer {
    position: relative;
    padding: 140px 0 50px;

    background:
        linear-gradient(180deg,
            #05010d 0%,
            #030108 100%);
}

/* =========================================================
   GRID BG
========================================================= */
.akra-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .35;
}

/* =========================================================
   GLOW
========================================================= */
.footer-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(123, 97, 255, .16),
            transparent 70%);
    filter: blur(140px);
    top: -250px;
    right: -200px;
    pointer-events: none;
}

/* =========================================================
   TOP
========================================================= */
.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        1.1fr .9fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* =========================================================
   BRAND
========================================================= */
.footer-brand {
    max-width: 520px;
}

.footer-logo {
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 28px;
}

.footer-logo span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 8px;
    font-weight: 500;
    opacity: .8;
}

.footer-brand p {
    font-size: 18px;
    line-height: 1.9;
    color:
        rgba(255, 255, 255, .65);
    margin-bottom: 36px;
}

/* =========================================================
   SOCIALS
========================================================= */
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-socials a {
    padding: 14px 22px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .05);
    border:
        1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
}

.footer-socials a:hover {
    transform:
        translateY(-4px);
    border-color:
        rgba(123, 97, 255, .4);
    box-shadow:
        0 0 30px rgba(123, 97, 255, .18);
}

/* =========================================================
   LINKS
========================================================= */
.footer-links {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 26px;
}

.footer-column a {
    display: block;
    margin-bottom: 16px;
    color:
        rgba(255, 255, 255, .62);
    transition: .3s;
}

.footer-column a:hover {
    color: #fff;
}

/* =========================================================
   MAP
========================================================= */
.footer-map {
    position: relative;
    height: 420px;
    border-radius: 36px;

    margin-bottom: 40px;
    border:
        1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 40px rgba(123, 97, 255, .08);
}

/* =========================================================
   MAP
========================================================= */
.footer-map {
    position: relative;
    height: 420px;
    border-radius: 36px;

    margin-bottom: 40px;
    border:
        1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 40px rgba(123, 97, 255, .08);
}

/* IFRAME */
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: .82;
}

/* OVERLAY */
.footer-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(5, 1, 13, .12),
            rgba(5, 1, 13, .35));
    pointer-events: none;
}

/* =========================================================
   BOTTOM
========================================================= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 30px;
    border-top:
        1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p,
.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color:
        rgba(255, 255, 255, .5);
}

/* =========================================================
   CONTACT ITEM
========================================================= */
.footer-contact-item {
    display: flex !important;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

/* ICON */
.footer-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background:
        rgba(123, 97, 255, .12);
    border:
        1px solid rgba(123, 97, 255, .22);
    color: #fff;
    transition: .35s;
}

/* HOVER */
.footer-contact-item:hover .footer-contact-icon {
    transform:
        translateY(-3px);
    background:
        rgba(123, 97, 255, .22);
    box-shadow:
        0 0 20px rgba(123, 97, 255, .18);
}

/* =========================================================
   TABLET
========================================================= */
@media(max-width:992px) {
    .akra-footer {
        padding: 100px 0 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media(max-width:768px) {
    .footer-logo {
        font-size: 42px;
    }

    .footer-brand p {
        font-size: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-map {
        height: 320px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media(max-width:576px) {
    .akra-footer {
        padding: 80px 0 30px;
    }

    .footer-logo {
        font-size: 36px;
    }
}
