/* Main Footer Styles */
.site_footer {
    background: #fff;
}

/* Footer Main Section */
.footer_main {
    background: #f8f8f8;
    padding: 50px 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footer_logo {
    margin-bottom: 10px;
}

.footer_logo img {
    max-width: 180px;
    height: auto;
}

.footer_content {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px; */
}

/* Common Footer Headings */
.site_footer h2 {
    font-size: 19px;
    font-weight: 800;
    color: #333;
    margin-bottom: 24px;
}

/* Contact Section */

.phone_link {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone_link:hover {
    color: #4054b2;
}

.hours {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 24px;
}

/* Resources Section */
.resources_grid {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; */
}

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

.footer_links li {
    margin-bottom: 16px;
}

.footer_links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.footer_links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4054b2;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer_links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer Bottom */
.footer_bottom {
    background: white;
    padding: 14px 60px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
}


.footer_bottom span ,
.footer_bottom a{
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.bottom_links {
    display: flex;
    gap: 40px;
}

.bottom_links a {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom_links a:hover {
    color: #4054b2;
}

/* Floating Elements */
.floating_social {
    position: fixed;
    left: 7px;
    top: 62%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}

.float_icon {
    width: 40px;
    height: 40px;
    background: white;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 20px;
    text-decoration: none;
    color: white !important;
}

/* .float_icon {
    transform: translateY(-2px);
} */

.float_icon.linkedin {
    background-color: rgb(0 123 181);
}

.float_icon.instagram {
    background-color: #8a3ab9;
}

.float_icon.email {
    /* background-color: rgb(136 137 144); */
    background-color: #D44638;
    /* background-color: #1E88E5;
    background-color: #5A6B7A; */
}

.float_icon.whatsapp{
    background-color: #25D366;
}

.float_icon.call{
    /* background-color: #0A7C55;
    background-color: #1E90FF; */
    background-color: rgb(136 137 144);
}

.float_icon:hover {
    filter: brightness(0.8);
}

/* Back to Top Button */
.back_to_top {
    display: inline-block;
    background-color: #5d5c5c;
    border-radius: 4px;
    position: fixed;
    bottom: 47px;
    right: 15px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    font-size: 20px;
    color: white;
    padding: 7px 11px;
    cursor: pointer;
}

.back_to_top.visible {
    opacity: 1;
    visibility: visible;
}


/* WhatsApp Float */
.whatsapp_float {
    position: fixed;
    bottom: 24px;
    right: 80px;
    z-index: 100;
}

.whatsapp_float img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.whatsapp_float:hover img {
    transform: scale(1.1);
}


@media (max-width: 620px) {
    .footer_main {
        flex-direction: column;
    }
}

/*
@media (max-width: 992px) {
    .footer_content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .resources_grid {
        justify-content: center;
    }

    .form_row {
        grid-template-columns: 1fr;
    }

    .bottom_content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .bottom_links {
        flex-direction: column;
        gap: 16px;
    }

    .floating_social {
        display: none;
    }
} */
