.site-footer {
    background-color: #fff;
    padding-top: 50px;
    font-family: 'Inter', sans-serif;
    color: #444;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col.col-about {
    flex: 2;
    padding-right: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    color: #00447c;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #666;
    font-weight: bold;
}

.footer-contact p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: var(--primary-color);
}

.footer-contact p i {
    width: 20px;
    font-size: 15px;
    margin-right: 5px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-socials a {
    color: #888;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-socials a img {
    height: 18px;
    width: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.footer-socials a:hover img {
    transform: scale(1.2);
}

.footer-socials a:hover {
    color: var(--primary-color);
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    /* color: #999; */
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #ebebeb;
    padding: 15px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-bottom-logo {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.footer-bottom-logo strong {
    font-weight: 900;
    font-size: 16px;
    font-style: italic;
    color: #000;
}

.footer-copy {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.footer-copy a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copy a:hover {
    color: var(--primary-color);
}

/* WhatsApp Icon styling */
.whatsapp-chat-icon {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

.whatsapp-chat-icon:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-chat-icon i {
    margin: 0;
}

@media (max-width: 992px) {
    .main-footer {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col.col-about {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 40px;
        text-align: center;
    }

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

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

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
}