/* --- Main Footer Container --- */
.hr-footer-custom {
    background-color: #2d3f37; /* Dark Sage background */
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif; /* Update to your site's font */
    color: #d1dcd7; /* Light sage text */
}

/* --- Brand & Text --- */
.footer-logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-about-text p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #d1dcd7;
}

/* --- Social Icons --- */
.footer-socials .social-circle1 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #5c8272;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1dcd7;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative; /* For admin edit button positioning */
}

.footer-socials .social-circle:hover {
    background-color: #5c8272;
    color: #ffffff;
    border-color: #5c8272;
}
.footer-socials .social-circle1 i{
	color: #d1dcd7!important;
}
/* --- Footer Menus --- */
.footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu-list li a {
    color: #d1dcd7;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-menu-list li a:hover {
    color: #ffffff;
}

/* --- Bottom Bar --- */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(209, 220, 215, 0.2); /* Subtle light line */
}
.footer-bottom p{
	color: #d1dcd7;
}
.copyright-text {
    font-size: 0.95rem;
    color: #d1dcd7;
}
.copyright-text a{
    font-size: 0.95rem;
    color: #d1dcd7;
}
.footer-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: #ffffff;
}

/* --- Scroll To Top Button --- */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #5c8272;
    color: #ffffff;
    border: none;
    font-size: 1.25rem;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
    z-index: 99;
}

#scrollToTopBtn:hover {
    background-color: #4a6b5e;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .hr-footer-custom {
        padding-top: 4rem;
    }
    .footer-bottom {
        margin-top: 3rem;
    }
}