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

.footer {
    background: #1E2C2F;
    color: #ffffff;
    padding: 60px 22px 30px;
    font-family: "Poppins", sans-serif;
}

/* Container */
.footer-container {
    max-width: 1450px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* ---------------- About ---------------- */

.footer-about {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo img {
    height: 55px;
}

.footer-logo span {
    font-size: 22px;
    color: #00AE8E;
    font-weight: 700;
}

.footer-about p {
    margin-top: 12px;
    color: #ccc;
    line-height: 1.6;
}

/* ---------------- Links ---------------- */

.footer-links h4,
.footer-contact h4 {
    color: #00AE8E;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00AE8E;
}

/* ---------------- Contact ---------------- */

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    margin: 10px 0;
}

/* IMPORTANT: Remove blue color from email & phone */
.footer-contact a,
.footer a[href^="mailto"],
.footer a[href^="tel"] {
    color: #ddd !important;
    text-decoration: none !important;
}

.footer-contact a:hover {
    color: #00AE8E !important;
}

/* ---------------- Social Icons ---------------- */

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #00AE8E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #00846D;
}

/* ---------------- Bottom ---------------- */

.footer-bottom {
    text-align: center;
    color: #aaa;
    margin-top: 40px;
    font-size: 14px;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 950px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about {
        margin: auto;
    }

    .footer-links a,
    .footer-contact p {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}
