/* ======================================================
   FOOTER STYLES
   ====================================================== */

.footer {
    background: #1b120f;
    color: #f4f4f4;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about img {
    width: 70px;
    margin-bottom: 20px;
}

.footer-about h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.footer-about p {
    color: #cfcfcf;
    line-height: 2;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #fff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #cfcfcf;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 8px;
}

.footer-contact p {
    color: #cfcfcf;
    margin-bottom: 12px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: var(--transition-speed);
}

.socials a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}
