/* Shared site footer. */
.sas-footer {
    position: relative;
    padding: 60px 0 0;
    background-color: #f9f3e5;
    font-family: "Montserrat", sans-serif;
}

.sas-footer::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 90%;
    background: url("../../images/line-art1.webp") right bottom / contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.sas-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
}

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

.logo-wrapper {
    width: 110px !important;
}

.logo-wrapper img {
    display: block;
    width: 100%;
}

.sas-footer h3 {
    margin-bottom: 20px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.sas-footer .contact-links p,
.sas-footer .quick-links li {
    color: var(--text-grey);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
}

.sas-footer .desc {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
}

.sas-footer .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.sas-footer .social-icons a {
    color: #888;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.sas-footer .social-icons a:hover {
    color: var(--blue);
}

.sas-footer a {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.sas-footer a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.5s linear;
}

.sas-footer a:hover::after {
    width: 100%;
}

.sas-footer .social-icons a::after {
    display: none;
}

.sas-footer .quick-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.sas-footer .contact-links i {
    width: 15px;
    margin-right: 10px;
    color: var(--blue);
}

.site-footer-bottom {
    border-top: 1px dashed #dcdcdc;
}

@media (max-width: 767px) {
    .footer-container {
        gap: 34px;
    }

    .footer-col {
        min-width: 100%;
    }
    .sas-footer > .container{
        padding: 0 20px;
    }
}
