/* ====== FOOTER ====== */
.footer {
    background: #1d1e24;
    padding: 60px 0 20px;
    color: #fff;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


/* ====== COLUMNS ====== */
.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

.footer-col h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #7b014c;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 5px 0;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col a {
    color: #fff;
}


/* ====== OFFICE WRAPPER ====== */
.footer-offices-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    gap: 0;
}

.footer-offices-wrapper .footer-col {
    flex: 1;
    min-width: 180px;
}


/* ====== FOLLOW US ====== */
.footer-follow-center {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-follow-center h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: inherit;
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}


/* ====== COPYRIGHT ====== */
.footer .copyright {
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}


/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .footer-col {
        width: 100%;
    }
}