/* Sanad POS — public footer */

.footer {
    background-color: #1F2A1D; /* warm near-black green, not neutral gray */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5C7358, #7A8F76);
}

.footer-blurb {
    color: rgba(255, 255, 255, .55);
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 20rem;
    margin: 0;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.footer-link {
    color: rgba(255, 255, 255, .6) !important;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff !important;
}

.social-icon {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.social-icon:hover {
    background-color: #5C7358;
}

.footer-hr {
    border-color: rgba(255, 255, 255, .12);
    opacity: 1;
}

.footer-copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
}

.lang-link {
    font-weight: 600;
    color: rgba(255, 255, 255, .55) !important;
    text-decoration: none;
}

.lang-link-active {
    color: #ffffff !important;
}

.lang-sep {
    color: rgba(255, 255, 255, .35);
}

@media (max-width: 767.98px) {
    .footer { text-align: center; }
    .social-links { justify-content: center; }
    .contact-info { justify-content: center; }
}
