/* =================================
   FOOTER
================================= */

.footer {
    position: relative;
    padding: 50px 0 30px;

    color: #fff;

    background:
        radial-gradient(
            circle at top left,
            rgba(13, 110, 253, 0.45),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(25, 135, 84, 0.35),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #071426,
            #0b2230,
            #10261f
        );

    overflow: hidden;
}


/* =================================
   FOOTER GRID
================================= */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.9fr
        1.2fr;

    gap: 60px;

    padding-bottom: 70px;
}


/* =================================
   BRAND
================================= */

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    font-size: 1.5rem;

    font-weight: 800;

    text-decoration: none;

    margin-bottom: 25px;
}


.footer-logo i {
    color: #ffc107;

    font-size: 1.7rem;
}


.footer-brand p {
    max-width: 340px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.65);

    margin-bottom: 30px;
}


/* =================================
   SOCIAL LINKS
================================= */

.footer-socials {
    display: flex;

    gap: 12px;
}


.footer-socials a {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #fff;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.1);

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer-socials a:hover {
    transform: translateY(-5px);

    background: linear-gradient(
        135deg,
        #0d6efd,
        #198754
    );

    border-color: transparent;
}


/* =================================
   FOOTER LINKS
================================= */

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer h4 {
    font-size: 1.05rem;

    font-weight: 700;

    margin-bottom: 12px;

    color: #fff;
}


.footer-links a {
    width: fit-content;

    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer-links a:hover {
    color: #ffc107;

    transform: translateX(5px);
}


/* =================================
   NEWSLETTER
================================= */

.footer-newsletter p {
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.65);

    margin-bottom: 25px;
}


.newsletter-form {
    display: flex;

    align-items: center;

    padding: 6px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.1);
}


.newsletter-form input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    padding: 13px 15px;

    color: #fff;

    font-family: inherit;
}


.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}


.newsletter-form button {
    width: 48px;
    height: 48px;

    min-width: 48px;

    border: none;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #0d6efd,
        #198754
    );

    color: #fff;

    cursor: pointer;

    transition: all 0.3s ease;
}


.newsletter-form button:hover {
    transform: scale(1.05);
}


/* =================================
   FOOTER BOTTOM
================================= */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.9rem;
}


.footer-bottom-links {
    display: flex;

    gap: 25px;
}


.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 0.9rem;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom-links a:hover {
    color: #ffc107;
}

/* =================================
   FOOTER BOTTOM
================================= */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 30px;

    padding-top: 35px;
    margin-top: 40px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* LEFT */

.footer-copy {
    margin: 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.9rem;
}

/* CENTER - ZAMASHO SIGNATURE */

.zamasho-signature {
    margin: 0;

    text-align: center;

    white-space: nowrap;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.9rem;
}

.zamasho-signature i {
    color: #ffc107;

    margin: 0 4px;

    animation: heartbeat 1.5s infinite;
}

.zamasho-signature a {
    color: #ffc107;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.zamasho-signature a:hover {
    color: #fff;
}

/* RIGHT */

.footer-bottom-links {
    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);

    text-decoration: none;

    font-size: 0.9rem;

    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffc107;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

}