/* ─── Global Page Hero Banner (Unified Theme) ─── */
.global-page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.global-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(247,148,30,0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0,174,239,0.15) 0%, transparent 40%);
    z-index: 1;
}

.global-page-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.global-page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
    font-family: 'Tajawal', sans-serif;
}

.global-page-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.25;
    font-family: 'Tajawal', sans-serif;
}

.global-page-hero h1 span {
    color: var(--primary);
}

.global-page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.global-page-hero .hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.global-page-hero .hero-stat {
    text-align: center;
    color: #fff;
}

.global-page-hero .hero-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    font-family: 'Tajawal', sans-serif;
}

.global-page-hero .hero-stat-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}
