/* ===== ENHANCED ABOUT BRIEF SECTION ===== */
.about-brief-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%,
        #ffffff 50%,
        #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.about-brief-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(11, 60, 93, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 10px, 
            rgba(11, 60, 93, 0.01) 10px, 
            rgba(11, 60, 93, 0.01) 20px);
    pointer-events: none;
}

/* Header Enhancement */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: transparent;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-light) 60%,
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    border-radius: 2px;
    opacity: 0.8;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    padding: 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-subtitle::before {
    right: 0;
}

.section-subtitle::after {
    left: 0;
}

/* Enhanced Content Layout */
.about-brief-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Enhanced Text Side */
.brief-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brief-header {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 30px;
}

.brief-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-light));
    border-radius: 1px;
}

.brief-header h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.brief-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Enhanced Points */
.brief-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.brief-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 60, 93, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brief-point::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, 
        var(--primary-color), 
        var(--secondary-color));
    transition: height 0.4s ease;
}

.brief-point:hover::before {
    height: 100%;
}

.brief-point:hover {
    transform: translateX(-8px);
    box-shadow: 0 10px 30px rgba(11, 60, 93, 0.1);
    border-color: rgba(11, 60, 93, 0.15);
}

.brief-point i {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brief-point:hover i {
    background: var(--secondary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.brief-point-content {
    flex: 1;
}

.brief-point h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.brief-point:hover h4 {
    color: var(--primary-light);
}

.brief-point p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Enhanced CTA Button */
.brief-cta {
    margin-top: 10px;
}

.brief-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--primary-light));
    border: none;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 60, 93, 0.2);
}

.brief-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.8s ease;
}

.brief-cta .btn-primary:hover::before {
    left: 100%;
}

.brief-cta .btn-primary:hover {
    transform: translateY(-5px) translateX(-8px);
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.3);
    gap: 18px;
    background: linear-gradient(135deg, 
        var(--primary-light), 
        var(--primary-color));
}

.brief-cta .btn-primary:active {
    transform: translateY(-2px);
}

.brief-cta .btn-primary i {
    transition: transform 0.3s ease;
}

.brief-cta .btn-primary:hover i {
    transform: translateX(-5px);
}

/* Enhanced Visual Card */
.brief-visual {
    position: relative;
    height: 100%;
}

.visual-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(248, 250, 252, 0.95));
    border-radius: var(--radius-xl);
    padding: 35px 40px; /* قلل الـ padding من فوق وتحت */
    height: auto; /* غير الـ height */
    min-height: 500px; /* حدد طول أدنى */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* وزع العناصر بطريقة أفضل */
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(11, 60, 93, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(11, 60, 93, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Year Badge Enhancement */
.year-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, 
        var(--secondary-color), 
        #E6B800);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(-5deg);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: rotate(-5deg) scale(1);
        box-shadow: 
            0 8px 20px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: rotate(-5deg) scale(1.05);
        box-shadow: 
            0 12px 30px rgba(212, 175, 55, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

.year-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.year-badge strong {
    font-size: 2.2rem;
    line-height: 1;
    margin-top: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Stats */
.brief-stats {
    display: flex;
    gap: 20px;
    margin: 50px 0 40px;
    padding: 30px 0;
    border-bottom: 2px solid rgba(11, 60, 93, 0.08);
    border-top: 2px solid rgba(11, 60, 93, 0.08);
}

.brief-stat {
    text-align: center;
    flex: 1;
    position: relative;
}

.brief-stat::after {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: -15px;
    width: 1px;
    background: rgba(11, 60, 93, 0.1);
}

.brief-stat:first-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(11, 60, 93, 0.1);
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: -5px;
    right: -15px;
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Mission Section */
.brief-mission {
    text-align: center;
    margin-top: 20px; /* هنا هتزود المسافة من فوق */
    padding-top: 20px;
    position: relative;
    transform: translateY(-10px); /* ممكن تضيف ده لتحريكه أكثر */
}

.brief-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    border-radius: 2px;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(11, 60, 93, 0.1), 
        rgba(29, 111, 165, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2.2rem;
    border: 2px solid rgba(11, 60, 93, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visual-card:hover .mission-icon {
    background: linear-gradient(135deg, 
        var(--primary-light), 
        var(--primary-color));
    color: white;
    transform: rotate(15deg) scale(1.1);
    border-color: var(--primary-light);
}

.visual-card:hover .mission-icon::before {
    opacity: 1;
}

.brief-mission h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.brief-mission p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    padding: 0 10px;
}

.brief-mission p::before,
.brief-mission p::after {
    content: '"';
    position: absolute;
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.brief-mission p::before {
    top: -10px;
    right: 0;
}

.brief-mission p::after {
    bottom: -20px;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-brief-content {
        gap: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-brief-section {
        padding: 90px 0;
    }
    
    .about-brief-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .brief-header {
        padding-bottom: 20px;
    }
    
    .brief-header::after {
        right: 50%;
        transform: translateX(50%);
        width: 100px;
    }
    
    .brief-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .brief-point:hover {
        transform: translateY(-5px);
    }
    
    .brief-point i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .brief-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .year-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 30px;
        align-self: center;
        transform: rotate(0);
    }
    
    @keyframes badgePulse {
        0%, 100% {
            transform: rotate(0) scale(1);
        }
        50% {
            transform: rotate(0) scale(1.05);
        }
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.15rem;
        padding: 15px;
    }
    
    .brief-header h3 {
        font-size: 1.9rem;
    }
    
    .brief-stats {
        flex-direction: column;
        gap: 25px;
        margin: 30px 0;
    }
    
    .brief-stat::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .visual-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .about-brief-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .brief-header h3 {
        font-size: 1.7rem;
    }
    
    .brief-point {
        padding: 20px 15px;
    }
    
    .brief-cta .btn-primary {
        padding: 16px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .year-badge {
        padding: 10px 20px;
    }
    
    .year-badge strong {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .brief-point,
    .brief-cta .btn-primary,
    .mission-icon,
    .year-badge {
        transition: none;
        animation: none;
    }
    
    .brief-point:hover {
        transform: none;
    }
    
    .brief-cta .btn-primary:hover {
        transform: none;
    }
}

#color-stat-number{
    color: red !important;
}
