/* =========================================
   FOOTER
   ========================================= */
   .sereth-footer {
    background-color: #F8F6F2;
    padding-top: 50px;
    color: var(--text-grey);
    font-family: var(--font-sans);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-heading {
    font-family: var(--font-serif);
    color: var(--deep-blue);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.footer-contact-info p { margin-bottom: 10px; font-size: 0.95rem; }

.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 12px; }

.footer-list a {
    color: var(--text-grey);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--deep-blue);
    margin-right: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--deep-blue);
    border-color: var(--deep-blue);
    color: #fff;
    text-decoration: none;
}

.alert-link { color: #c0392b !important; font-weight: 600; }

.footer-bottom {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.8rem;
    color: #999;
}