/* =============================================
   🟦 سكشن الهيدر الرئيسي لمساهم الدولية القابضة
============================================= */

.msahem-header {
    position: relative;
    padding: 120px 0 80px; /* ينزل المحتوى تحت الشريط */
    background: radial-gradient(circle at top, #070b19 0, #050815 40%, #020308 100%);
    color: #f9fafb;
    overflow: hidden;
    margin: 0;
}

/* طبقة شفافة لإضافة عمق */
.msahem-header-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.15) 0, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0, transparent 60%);
    pointer-events: none;
}

.msahem-header-inner {
    position: relative;
    z-index: 1;
}

/* ==================================================
   🔵 الشريط العلوي — مثبت بالأعلى + في المنتصف
================================================== */

.msahem-header-nav {
    position: fixed;             /* ثابت دائماً */
    top: 25px;                   /* نزوله قليل من الرأس */
    left: 50%;                   /* المنتصف */
    transform: translateX(-50%); /* تصحيح المنتصف */
    z-index: 2000;

    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;

    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

/* روابط الشريط */
.msahem-header-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #e5e7eb;
    white-space: nowrap;
    transition: 0.18s ease-in-out;
}

.msahem-header-nav a.active {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: #0f172a;
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.9),
        0 18px 32px rgba(15, 23, 42, 0.75);
}

.msahem-header-nav a:not(.active):hover {
    background: rgba(148, 163, 184, 0.20);
    color: #ffffff;
}

/* ==================================================
   🔶 محتوى الهيدر
================================================== */

.msahem-header-content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.msahem-header-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.55);

    font-size: 12px;
    color: #e5e7eb;
    margin-bottom: 18px;
}

.msahem-header-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #f9fafb;
}

.msahem-header-subtitle {
    font-size: 15px;
    line-height: 1.9;
    max-width: 520px;
    color: #cbd5f5;
}

/* ==================================================
   🔘 الأزرار
================================================== */

.msahem-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.msahem-header-btn {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: 0.18s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.msahem-header-btn-primary {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: #0b1020;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.msahem-header-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.msahem-header-btn-outline {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
}

.msahem-header-btn-outline:hover {
    background: rgba(15, 23, 42, 0.8);
}

/* ==================================================
   🟩 الجانب البصري – بطاقات الدول الثلاث
================================================== */

.msahem-header-visual {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* الشبكة: 3 بطاقات */
.msahem-regions {
    margin-top: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.region-card {
    position: relative;
    padding: 22px 20px 26px;
    border-radius: 22px;

    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow:
        0 14px 32px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.05);

    color: #e5e7eb;
    transition: 0.25s ease;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

.region-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #f9fafb;
}

.region-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #cbd5f5;
    margin: 0;
}

/* نقطة الحالة */
.status-dot {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.green {
    background: #22c55e;
}

.status-dot.red {
    background: #ef4444;
}

/* النص السفلي أسفل البطاقات */
.region-footer {
    margin-top: 14px;
    font-size: 13.5px;
    color: #cbd5f5;
    text-align: center;
}

/* ==================================================
   📱 موبايل
================================================== */

@media (max-width: 992px) {
    .msahem-header {
        padding: 110px 0 60px;
    }

    .msahem-header-content {
        grid-template-columns: 1fr;
    }

    .msahem-header-visual {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .msahem-header-title {
        font-size: 28px;
    }

    .msahem-header-subtitle {
        font-size: 14px;
    }

    .msahem-regions {
        grid-template-columns: 1fr; /* بطاقة تحت الثانية في الموبايل */
    }
}
