.ms-footer {
    --ft-navy: #0f2b3c;
    --ft-teal: #125875;
    --ft-deep: #091e2a;
    --ft-sky: #1eb4e9;
    --ft-gold: #d4a932;
    --ft-muted: rgba(255,255,255,0.75);
    --ft-border: rgba(255,255,255,0.12);
    --ft-radius: 14px;
}

.ms-footer { background: var(--ft-deep); color: #fff; }

.ft-cta {
    background: linear-gradient(135deg, var(--ft-teal) 0%, var(--ft-navy) 100%);
    border-bottom: 1px solid var(--ft-border);
    padding: 20px 0;
}
.ft-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.ft-cta-title { margin: 0; font-weight: 800; font-size: clamp(15px,1.5vw,20px); }
.ft-cta-sub { margin: 4px 0 0; color: var(--ft-muted); font-weight: 600; font-size: 0.9rem; }
.ft-cta-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ft-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: var(--ft-radius);
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff; font-weight: 700; text-decoration: none;
    transition: transform 0.15s, background 0.15s;
    white-space: nowrap; font-size: 0.9rem;
}
.ft-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.14); color: #fff; }

.ft-main {
    padding: 48px 0 28px;
    background: linear-gradient(180deg, var(--ft-deep) 0%, #061520 100%);
}
.ft-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 992px) {
    .ft-grid { grid-template-columns: 1.2fr 1fr 1fr 1.1fr; }
}

.ft-col h3 {
    margin: 0 0 14px; font-weight: 800; font-size: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
    color: #fff;
}
.ft-col h3 i { color: var(--ft-sky); font-size: 0.9rem; }
.ft-about {
    color: var(--ft-muted); line-height: 1.85;
    text-align: justify; text-justify: inter-word;
    margin: 0; font-size: 0.92rem;
}
.ft-social {
    margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;
}
.ft-social a {
    width: 38px; height: 38px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff; text-decoration: none;
    transition: transform 0.15s, background 0.15s;
}
.ft-social a:hover { transform: translateY(-2px); background: rgba(255,255,255,0.12); }

.ft-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.ft-list a {
    color: rgba(255,255,255,0.82); text-decoration: none;
    font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: transform 0.15s, color 0.15s; font-size: 0.92rem;
}
.ft-list a:hover { transform: translateX(2px); color: #fff; }
[dir="rtl"] .ft-list a:hover { transform: translateX(-2px); }
.ft-list i { color: var(--ft-sky); font-size: 0.8rem; }

.ft-contact {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.ft-contact li {
    display: flex; gap: 10px; align-items: flex-start;
    color: rgba(255,255,255,0.82); font-weight: 600; line-height: 1.7; font-size: 0.92rem;
}
.ft-contact i { color: var(--ft-sky); margin-top: 3px; }
.ft-contact a { color: #fff; font-weight: 700; text-decoration: none; }
.ft-contact a:hover { text-decoration: underline; }
.ft-contact .ft-muted { color: var(--ft-muted); font-weight: 600; font-size: 0.85rem; }

.ft-bottom {
    border-top: 1px solid var(--ft-border);
    background: #040e16; padding: 14px 0;
}
.ft-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
}
.ft-logo img { height: 34px; width: auto; filter: grayscale(100%); opacity: 0.85; }
.ft-copy { color: rgba(255,255,255,0.6); font-weight: 600; font-size: 0.85rem; }
