/* -------------------------------------- */
/* About Us Page Specific Styles (من نحن) */
/* -------------------------------------- */

.hero-about-header {
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid var(--vibrant-orange);
    /* خط برتقالي مميز في الأسفل */
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.hero-about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/خلفية.png");
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-about-header .section-title {
    color: var(--dark-blue);
}

.hero-about-header .section-subtitle {
    color: var(--text-color-light);
    line-height: 1.6;
}


.story-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.story-title {
    font-size: 3em;
    font-weight: 600;
    color: var(--background-light);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    display: block;
    width: 300px;
    height: 4px;
    background-color: var(--vibrant-orange);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.story-description {
    line-height: 1.5;
    color: var(--background-light);
    font-size: 1.1em;
    margin-bottom: 80px;
}

/* -------------------------------------- */
.mission-vision-section {
    padding: 50px 0 100px 0;
    background-color: var(--dark-blue);
    text-align: right;
}

.mv-section-title {
    font-size: 5em;
    font-weight: 900;
    color: var(--background-light);
    text-align: center;
    margin-bottom: 20px;
}

.mv-section-title .highlight-yellow {
    color: #ffc107;
}

.mv-section-title .highlight-navy {
    color: var(--background-light);
}

.mv-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    gap: 40px;
}

.vision-card,
.mission-card,
.value-card {
    flex: 1;
    background-color: var(--background-light);
    padding: 40px 30px;
    text-align: center;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-top: none;
    border-right: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-card {
    border-right: none;
}

.vision-card:hover,
.mission-card:hover,
.value-card:hover {
    transform: translateY(-8px);
    background-color: var(--vibrant-orange);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.vision-card .card-icon {
    color: blue;
    font-size: 5em;
    margin-bottom: 20px;
}

.mission-card .card-icon {
    color: var(--vibrant-orange);
    font-size: 5em;
    margin-bottom: 20px;
}

.value-card .card-icon {
    color: var(--sky-blue);
    font-size: 5em;
    margin-bottom: 20px;
}

.vision-card h3,
.mission-card h3,
.value-card h3 {
    color: var(--dark-blue);
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-card p,
.mission-card p,
.value-card p {
    color: var(--dark-blue);
    line-height: 1.7;
    font-size: 1.2em;
}

.vision-card:hover .card-icon {
    color: var(--dark-blue);
}

.mission-card:hover .card-icon {
    color: var(--dark-blue);
}

.value-card:hover .card-icon {
    color: var(--dark-blue);
}

.vision-card:hover h3,
.mission-card:hover h3,
.value-card:hover h3 {
    color: var(--dark-blue);
}

.stats-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-gray);
    color: var(--dark-navy);
}

.stats-section .section-title {
    color: var(--dark-navy);
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1 1 200px;
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--vibrant-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3.2em;
    font-weight: 900;
    color: var(--vibrant-orange);
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.05em;
    font-weight: 600;
    color: var(--text-color-light);
}

/*-----------------------------------------------------tablet-----------------------------------------------------------------*/
@media (max-width: 992px) {
    .mv-grid {
        flex-direction: column;
        border: none;
    }

    .vision-card,
    .mission-card,
    .value-card {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        text-align: right;
    }

    .value-card {
        border-bottom: none;
    }

    .card-icon {
        align-self: flex-start;
        margin-right: auto;
    }
}

/*------------------mobile-----------------*/
@media(max-width:768px) {
    .hero-about-header {
        padding: 50px 15px;
        height: 200px;
    }

    .hero-about-header .section-title {
        font-size: 1.2em;
    }

    .hero-about-header.section-subtitle {
        font-size: 0.8em;
    }

    .story-text {
        max-width: 700px;
    }

    .story-title {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .story-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .mv-grid {
        gap: 20px
    }

    .mission-vision-section {
        padding: 50px 0 50px 0;
        background-color: var(--dark-blue);
        text-align: right;
    }

    .mv-section-title {
        font-size: 1em;
        font-weight: 500;
        color: var(--background-light);
        text-align: center;
        margin-bottom: 10px;
    }

    .vision-card,
    .mission-card,
    .value-card {
        padding: 10px 10px;
    }

    .vision-card .card-icon {
        color: blue;
        font-size: 2em;
        margin-bottom: 10px;
    }

    .mission-card .card-icon {
        color: var(--vibrant-orange);
        font-size: 2em;
        margin-bottom: 10px;
    }

    .value-card .card-icon {
        color: var(--sky-blue);
        font-size: 2em;
        margin-bottom: 10px;

    }

    .vision-card h3,
    .mission-card h3,
    .value-card h3 {
        color: var(--dark-blue);
        font-size: 1em;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .vision-card p,
    .mission-card p,
    .value-card p {
        color: var(--dark-blue);
        line-height: 1.7;
        font-size: 0.9em;
    }

    .stats-section .section-title {
        font-size: 1.5em;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-number {
        font-size: 2em;
    }
}