.footer {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 60px 0 20px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* BRAND */
.footer-brand h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 14px;
}

/* LINKS */
.footer h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--white-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

/* CTA STRIP */
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(var(--white-color-rgb),0.08);
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.btn-footer {
    background: var(--white-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(var(--white-color-rgb),0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}