/* ========================================== */
/* قسم البانر */
/* ========================================== */

.hero-banner {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    direction: rtl;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(180, 47, 76, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 750px;
    padding: 60px 20px;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.banner-title {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-highlight {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    text-shadow: none;
}

.banner-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    max-width: 650px;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fff;
    color: #b42f4c;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #b42f4c;
    transform: translateY(-3px);
}

.banner-stats {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

/* ========================================== */
/* الموبايل والآيباد */
/* ========================================== */

@media (max-width: 992px) {
    .hero-banner {
        min-height: 550px;
        background-attachment: scroll;
    }

    .banner-title {
        font-size: 42px;
    }

    .banner-description {
        font-size: 18px;
    }

    .banner-stats {
        gap: 25px;
        padding: 25px 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }

    .banner-content {
        padding: 40px 20px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .banner-buttons {
        gap: 15px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .banner-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 25px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }

    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 600px;
    }

    .banner-title {
        font-size: 30px;
    }

    .banner-description {
        font-size: 15px;
    }

    .banner-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    .banner-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
    }
}
