/* -----------------------------------------
   FOOTER SECTION
----------------------------------------- */
.footer-section {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

/* Top Row */
.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.2rem 0 1.8rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #bbb;
}

.footer-top-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
    .footer-top-item i,
    .footer-top-item svg {
        color: #fff;
        flex-shrink: 0;
        background: #f26c0c;
        width: clamp(20px, 3vw, 30px);
        height: clamp(20px, 3vw, 30px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.6rem;
    }

    .footer-top-item div {
        display: flex;
        flex-direction: column;
    }

    .footer-top-item span {
        font-size: 0.9rem;
        color: #777;
        margin-bottom: 0.25rem;
    }

    .footer-top-item a {
        font-size: 1.05rem;
        font-weight: 700;
        color: #333 !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-top-item a:hover {
            color: #f26c0c !important;
        }

.footer-divider {
    width: 1px;
    align-self: stretch;
    margin: 0 2rem;
    border: 1.5px solid #bbb;
}

/* Bottom Row */
.footer-bottom-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Col 1 */
.footer-logo {
    max-width: clamp(200px, 25vw, 360px);
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    max-width: 340px;
    margin-bottom: 2.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

    .footer-social a {
        width: clamp(38px, 4vw, 46px);
        height: clamp(38px, 4vw, 46px);
        border-radius: 50%;
        background: #f26c0c;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background: #de5f09;
            transform: translateY(-2px);
        }

/* Col 2 */
.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f26c0c;
    margin: 0 0 1.7rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.9rem;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: #f26c0c;
        border-radius: 2px;
    }

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

    .footer-col ul li {
        margin-bottom: 1.4rem;
    }

    .footer-col ul a {
        font-size: 0.98rem;
        font-weight: 400;
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

/* Col 3 */
.footer-cert {
    max-width: clamp(180px, 25vw, 340px);
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 991px) {
    .footer-divider {
        display: none;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-top-item {
        flex: none;
        justify-content: flex-start;
        width: clamp(220px, 50vw, 260px);
    }
}

@media (max-width: 768px) {
    .footer-bottom-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

        .footer-col p {
            max-width: 100%;
        }

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