.syn-footer-dark {
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    color: #bbb;
    font-family: "Open Sans", sans-serif;
}

/* CONTAINER */
.footer-container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

/* LOGO */
.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}
footer .footer-logo {
    margin-top: -15px !important;
    margin-bottom: 0 !important;
}

/* TEXT */
.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #aaa;
    padding-bottom: 0;
}

/* ICONS */
.footer-contact i {
    color: #ed9725;
    margin-right: 10px;
}

/* TITLES */
.footer-col h4 {
    color: #ed9725;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 15px 0;
}

.footer-bottom-inner {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

/* SOCIAL */
.footer-social a {
    color: #888;
    margin-left: 15px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ed9725;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
    }
    .footer-logo img {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}
