:root {
    /* Hero Section Colors (ebhro11) */
    --ebhro11-color-primary: #00045F;
    --ebhro11-color-accent: #E83A15;
    --ebhro11-color-accent-hover: #c72c0e;
    --ebhro11-color-white: #ffffff;
    --ebhro11-color-black: #000000;
    --ebhro11-text-main: #ffffff;
    --ebhro11-bg-overlay: rgba(0, 0, 0, 0.342);
    --ebhro11-btn-whatsapp-bg: #E83A15;
    --ebhro11-btn-whatsapp-text: #ffffff;
}

/* ==========================================================================
           02. HERO SECTION (ebhro11) - MOBILE FIRST
           ========================================================================== */
.ebhro11-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../img/slide1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    /* يمنع اختفاء المحتوى خلف الهيدر الثابت */
    padding-bottom: 60px;
}

/* طبقة حماية داكنة لضمان مقروئية النص العالية */
.ebhro11-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ebhro11-bg-overlay);
    z-index: 1;
}

.ebhro11-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
}

/* العنوان الرئيسي العريض */
.ebhro11-title {
    color: var(--ebhro11-color-white);
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.8;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); */
}

/* حاوية تفاصيل العرض المحسن */
.ebhro11-details-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    width: 100%;
}

/* نص الوصف التوضيحي */
.ebhro11-description {
    color: var(--ebhro11-text-main);
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.6;
    max-width: 850px;
    /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); */
}

/* شريط التفاعل والأزرار */
.ebhro11-actions-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* أرقام التواصل والوسائط */
.ebhro11-phone-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--ebhro11-color-white);
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    font-weight: 700;
}

.ebhro11-phone-link {
    direction: ltr;
    display: inline-block;
    letter-spacing: 1px;
}

/* زر اتخاذ الإجراء المؤدي للواتساب */
.ebhro11-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ebhro11-btn-whatsapp-bg);
    color: var(--ebhro11-btn-whatsapp-text);
    padding: 14px 36px;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(232, 58, 21, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.ebhro11-cta-button:hover {
    background-color: var(--ebhro11-color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 58, 21, 0.6);
}

/* ==========================================================================
           03. DESKTOP MEDIA QUERIES (شاشات الحاسوب الكبيرة)
           ========================================================================== */
@media (min-width: 992px) {

    .ebhro11-actions-bar {
        flex-direction: row-reverse;
        justify-content: center;
        gap: 40px;
        margin-top: 15px;
    }
}