/* ============================================================
   styles/footer.css
   Layout:
     ROW 1 — Brand block (full width)
     ROW 2 — Contact (right) | Info (left)
     BOTTOM — copyright bar
   ============================================================ */

.footer {
    background: #0d0d0d;
    color: #555;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: clamp(24px, 4vw, 40px) 0 clamp(8px, 1.5vw, 14px);
}

/* ── ROW 1 — Brand (full width) ───────────────────────────── */
.footer__brand-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(6px, 1.2vw, 10px);
    margin-bottom: clamp(16px, 3vw, 28px);
}

.footer__brand-logo {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 10px);
}
.footer__brand-logo img {
    width: clamp(26px, 5vw, 38px);
    height: clamp(26px, 5vw, 38px);
    object-fit: contain;
}
.footer__brand-logo span {
    color: #fff;
    font-weight: 900;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    letter-spacing: -0.02em;
}

.footer__brand-desc {
    font-size: clamp(0.78rem, 1.5vw, 0.9rem);
    line-height: 1.75;
    color: #4a4a5a;
    max-width: 540px;
}

/* ── Divider ──────────────────────────────────────────────── */
.footer__divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: clamp(16px, 3vw, 28px);
}

/* ── ROW 2 — Contact (single, centered column) ────────────── */
.footer__cols-row {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(16px, 3vw, 28px);
    direction: rtl;
}

.footer__col { display: flex; flex-direction: column; }

/* ── Column titles ────────────────────────────────────────── */
.footer__col-title {
    color: rgba(255,255,255,0.85);
    font-weight: 800;
    font-size: clamp(0.88rem, 1.8vw, 1.05rem);
    margin-bottom: clamp(10px, 1.8vw, 16px);
    display: block;
}

/* ── Contact items ────────────────────────────────────────── */
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.2vw, 10px);
}
.footer__contact-item {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 10px);
    font-size: clamp(0.80rem, 1.5vw, 0.92rem);
    color: #5a5a6a;
    text-decoration: none;
    transition: color 0.18s;
    direction: rtl;
}
.footer__contact-item:hover { color: rgba(255,255,255,0.78); }
.footer__contact-icon {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Bottom bar ───────────────────────────────────────────── */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: clamp(10px, 1.8vw, 16px);
    text-align: center;
    font-size: clamp(0.72rem, 1.3vw, 0.82rem);
    color: #383848;
    font-weight: 700;
}

/* ── Mobile — keep cols side by side always ───────────────── */
.footer__cols-row {
    min-width: 0;
}
.footer__col {
    min-width: 0;
    word-break: break-word;
}