.site-footer {
    background-color: #bc2c5c;
    color: white;
    padding: 40px 180px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-sizing: border-box;
}


/* .footer-logo {
width: 120px;
height: 20px;
} */


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;

}

.footer-column {
    flex: 1 1 300px;
    min-width: 300px;
    text-align: left;
    /* Align text to the left */
}

.footer-logo {
    width: 250px;
    padding-top: 20px;
    padding-left: 30px;
}

.footer .contact p span {
    text-align: justify;
    display: inline-block;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    padding-top: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-column p {
    line-height: 28px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.5px;
    padding-top: 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-column i {
    margin-right: 10px;
}

.footer .contact p {
    display: flex;
    align-items: flex-start;
    /* icon aligns with first line */
    gap: 10px;
    margin: 8px 0;
    font-size: 14px;
    color: white;
    line-height: 1.6;
}

.footer .contact p i {
    flex-shrink: 0;
    /* icon does not shrink */
    width: 24px;
    /* fixed width for all icons */
    text-align: center;
    color: #f0a500;
}

.footer .contact p span {
    display: block;
    /* block so justify works */
    text-align: justify;
    width: 100%;

}

/* Specifically target the second column (Services) */
.footer-column:nth-of-type(2) p {
    line-height: 1.2 !important;
    /* Adjust line height to your preference */
    margin-bottom: 5px;
    /* Reduce space between paragraphs */
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;

}

.footer-social .social-icon {
    font-size: 30px;

    color: white;
    transition: color 0.3s;
}

.footer-social .social-icon:hover {
    color: #bc2c5c;

}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #CA5C84EB;
    color: #ffffff;
    font-size: 16px;
    min-height: 80px;
    width: 100%;
    padding: 0 150px;
    box-sizing: border-box;

}

.footer-bottom .right a {
    color: #ffffff !important;
    text-decoration: none;
    /* optional */
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .trophy {
    color: white;
    margin-right: 6px;
    font-size: 20px;
}

.iframe {
    padding-top: 40px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
    .site-footer {
        padding: 40px 40px;
    }

    .footer-bottom {
        padding: 15px 40px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-logo {
        display: block;
        /* REQUIRED */
        margin: 0 auto 30px;
        /* centers horizontally */
        max-width: 100%;
    }


    .footer-column.contact p {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 15px 20px;
    }

    .map-container iframe {
        width: 100%;
        height: 220px;
        border-radius: 6px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column p {
        font-size: 13px;
    }

    .footer-social .social-icon {
        font-size: 24px;
    }
}