/* Custom Footer Section */
.custom-footer-section {
    background: linear-gradient(90deg, #138936 0%, #0d264e 100%);
    padding: 60px 0 30px 0;
}

.custom-footer-pill {
    background: #fff;
    border-radius: 100px;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.custom-footer-col {
    display: flex;
    align-items: center;
}

/* Logo Column */
.custom-footer-logo img {
    max-height: 120px;
}

/* Divider */
.custom-footer-divider {
    width: 1px;
    height: 70px;
    background: #0A2540;
    opacity: 0.3;
}

/* Address Column */
.custom-footer-address {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-footer-address .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ab04c;
}

.custom-footer-address .icon svg {
    width: 40px;
    height: auto;
}

.custom-footer-address .text {
    color: #666;
    font-size: 16px;
    line-height: 1.4;
    max-width: 180px;
}

/* Social Column */
.custom-footer-social {
    display: flex;
    gap: 12px;
}

.custom-footer-social a {
    width: 45px;
    height: 45px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.custom-footer-social a:nth-child(1) { background: #8ac741; }
.custom-footer-social a:nth-child(2) { background: #73b342; }
.custom-footer-social a:nth-child(3) { background: #5a9e46; }
.custom-footer-social a:nth-child(4) { background: #3d8e62; }

.custom-footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Bottom Links */
.custom-footer-bottom {
    text-align: right;
    padding-right: 40px;
}

.custom-footer-bottom a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.custom-footer-bottom a:hover {
    opacity: 0.8;
}

.custom-footer-bottom .separator {
    color: #fff;
    margin: 0 10px;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .custom-footer-pill {
        flex-direction: column;
        border-radius: 30px;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
    }
    .custom-footer-divider {
        width: 70px;
        height: 1px;
    }
    .custom-footer-address {
        flex-direction: column;
        text-align: center;
    }
    .custom-footer-bottom {
        text-align: center;
        padding-right: 0;
    }
}

