/* Shared site footer — self-contained so it renders identically regardless of which
   frontend theme's stylesheet (mortqa or etquan/marketing) is loaded on the page. */
.site-footer {
    background: #0b1b17;
    color: #c9d3d1;
    padding: 64px 0 24px;
    font-family: inherit;
}

.site-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

.site-footer__logo img {
    max-width: 180px;
    height: auto;
}

.site-footer__tagline {
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #9fb0ac;
}

.site-footer__social {
    display: flex;
    gap: 10px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #c9d3d1;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-footer__social a:hover {
    background: #2f9e73;
    color: #fff;
}

.site-footer__heading {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.site-footer__list,
.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li,
.site-footer__contact li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__list a,
.site-footer__contact a {
    color: #c9d3d1;
    text-decoration: none;
}

.site-footer__list a:hover,
.site-footer__contact a:hover {
    color: #2f9e73;
}

.site-footer__newsletter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer__input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
}

.site-footer__input::placeholder {
    color: #7f918d;
}

.site-footer__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    border-radius: 6px;
    background: #2f9e73;
    color: #fff;
    cursor: pointer;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 24px;
    font-size: 13px;
    color: #9fb0ac;
}

.site-footer__copy {
    margin: 0;
}

.site-footer__lang {
    color: #c9d3d1;
    text-decoration: underline;
}
