

/* ================================= */
/* ── Footer General ─────────────────────────────────────────────────── */
.footer {
    background-color: var(--ink);;
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ── Logo & About ───────────────────────────────────────────────────── */
.footer .footer-about p {
    line-height: 1.8;
    max-width: 300px;
}

/* ── Headings ───────────────────────────────────────────────────────── */
.footer h6 {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--second);
    border-radius: 2px;
}

/* RTL */
[dir="rtl"] .footer h6::after {
    left: auto;
    right: 0;
}

/* ── Nav Menus ──────────────────────────────────────────────────────── */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s, padding-inline-start 0.2s;
    display: inline-block;
}

.footer ul li a:hover {
    color: #fff;
    padding-inline-start: 4px;
}

/* ── Contact List ───────────────────────────────────────────────────── */
.footer .contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.footer .contact-list li i {
    color: #4f6ef7;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer .contact-list li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer .contact-list li a:hover {
    color: #fff;
}

/* ── Social Icons ───────────────────────────────────────────────────── */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    font-size: 0.85rem;
}

.footer-social-link:hover {
    background: #4f6ef7;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-link.disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* ── Phone ──────────────────────────────────────────────────────────── */
.footer-phone {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-phone:hover {
    color: #fff;
}

.footer-phone i {
    color: #4f6ef7;
}

/* ── Divider ────────────────────────────────────────────────────────── */
.footer hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 48px 0 24px;
}

/* ── Footer Bottom ──────────────────────────────────────────────────── */
.footer .footer-bottom {
    padding-bottom: 28px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer .footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}