/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

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

/*** Modern Footer Component ***/
.footer.modern-footer {
    background: #0fa37f;
    color: #fff;
    padding: 60px 0 20px;
}

.footer.modern-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 32px;
    width: min(1280px, 92%);
    margin: auto;
}

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

.footer.modern-footer .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: #ffffff;
}

.footer.modern-footer .footer-contact-list li i {
    margin-top: 4px;
    flex-shrink: 0;
    color: #ffffff;
}

.footer.modern-footer .footer-contact-list li a {
    color: #ffffff;
    text-decoration: none;
    word-break: break-word;
}

.footer.modern-footer .footer-contact-list li a:hover {
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .footer.modern-footer .footer-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer.modern-footer .footer-col {
    min-width: 0;
}

.footer.modern-footer .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer.modern-footer .footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff !important;
    margin: 0;
}

.footer.modern-footer .footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer.modern-footer .footer-logo-img {
    width: min(210px, 100%);
    height: auto;
    display: block;
}

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

.footer.modern-footer .footer-links li {
    margin-bottom: 10px;
}

.footer.modern-footer .footer-links a {
    color: #d9f3ec;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer.modern-footer .footer-links a:hover {
    color: #fff;
}

.footer.modern-footer .social-icons {
    margin-top: 15px;
}

.footer.modern-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer.modern-footer .social-icons a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.footer.modern-footer .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    width: min(1200px, 90%);
    margin-left: auto;
    margin-right: auto;
}

.footer.modern-footer .footer-bottom p {
    margin: 0;
    color: #fff !important;
}

.footer.modern-footer .footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer.modern-footer .footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer.modern-footer .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 575px) {
    .footer.modern-footer {
        padding-top: 44px;
    }

    .footer.modern-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer.modern-footer .footer-bottom {
        margin-top: 24px;
    }
}
