/* ==============================================================
   تنسيقات صفحة من نحن (About Us)
   ============================================================== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(6, 97, 101, 0.05) 0%, rgba(6, 97, 101, 0.1) 100%);
    border-radius: 20px;
    padding: 60px 30px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-teal));
}

.about-logo {
    max-height: 120px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.about-title {
    color: var(--primary-teal);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-editor-content {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Titles */
.about-section-title {
    position: relative;
    color: var(--primary-teal-dark);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

/* Vision & Mission Cards */
.v-m-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 97, 101, 0.08);
}

.v-m-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 97, 101, 0.08);
}

.v-m-icon {
    font-size: 40px;
    color: var(--primary-teal);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(6, 97, 101, 0.05);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
}

.v-m-card h3 {
    color: var(--primary-teal-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.v-m-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Objectives, Values, Axes Lists */
.about-list-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-right: 4px solid var(--accent-gold);
}

.about-list-box ul, .about-list-box ol {
    padding-right: 20px;
    margin-bottom: 0;
}

.about-list-box li {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
}

.about-list-box li:last-child {
    margin-bottom: 0;
}

/* Content Formatting inside WYSIWYG */
.about-content-area ul {
    list-style: none;
    padding-right: 0;
}

.about-content-area ul li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 12px;
}

.about-content-area ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 3px;
    color: var(--accent-green, #38a169);
    font-size: 14px;
}

/* Contact Strip */
.about-contact-strip {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    border-radius: 15px;
    padding: 40px;
    color: white;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.about-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--accent-gold);
}

.about-contact-text h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.about-contact-text p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    direction: ltr;
}

.about-contact-text a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.about-contact-text a:hover {
    color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
