/* ===== تنسيقات صفحة من نحن ===== */

/* إصلاح اتجاه الهيدر */
.header {
    right: 0;
    left: 0;
    direction: rtl;
    text-align: right;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.header .container {
    direction: rtl;
    text-align: right;
}

.main-nav {
    direction: rtl;
    position: relative;
}

.nav-links {
    direction: rtl;
}

.nav-links a {
    text-align: right;
}

.nav-links a::after {
    right: 0;
    left: auto;
}

/* تنسيق زر القائمة */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* إصلاح زر القائمة في الشاشات الصغيرة */
@media (max-width: 768px) {
    .header {
        position: fixed;
        width: 100%;
        right: 0;
        left: 0;
        top: 0;
        padding: 10px 0;
        background-color: var(--white-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    body {
    padding-top: 80px;
}

/* إضافة تنسيقات عامة للجسم */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
    
    .header .container {
        max-width: 100%;
        padding: 0 15px;
        position: relative;
    }
    
    .page-title {
        padding: 80px 0 60px;
    }
    
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .page-title p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* إخفاء زر الاستثمار في الشاشات الصغيرة */
    .header-actions {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }
    
    .header-actions .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .menu-toggle {
        display: block !important;
        left: 15px;
        right: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .menu-toggle span:nth-child(1) {
        top: 0;
    }
    
    .menu-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .menu-toggle span:nth-child(3) {
        bottom: 0;
    }
    
    /* حالة الزر عند فتح القائمة */
    body.menu-open .menu-toggle span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    body.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    body.menu-open .menu-toggle span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    .nav-links {
        right: -100%;
        left: auto;
        text-align: right;
        align-items: flex-start;
        padding-right: 30px;
        width: 80%;
        height: 100vh;
        position: fixed;
        top: 0;
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: center;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 50px 30px;
    }
    
    .nav-links.active {
        right: 0;
        left: auto;
    }
    
    .nav-links li {
        width: 100%;
        text-align: right;
        margin-bottom: 15px;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        text-align: right;
        font-size: 1.2rem;
        padding: 10px 0;
    }
}

/* قسم عنوان الصفحة - تصميم جديد */
.page-title {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #002b57 50%, #001a33 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about-company.svg'),
                      radial-gradient(circle at 20% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.15) 0%, transparent 50%);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    opacity: 0.15;
    animation: float-bg 12s infinite ease-in-out;
    filter: blur(3px);
}

@keyframes float-bg {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.03); }
}

.page-title h1 {
    margin-bottom: 15px;
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.page-title h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color, #b8860b);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

.page-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* قسم من نحن */
.about-section {
    padding: var(--section-padding);
    background-color: var(--white-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* تحسين عرض الصور في جميع الأحجام */
.about-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
}

.highlight-text {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(193, 154, 63, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
}

.title-underline:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    right: 90px;
    top: 0;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 31, 63, 0.03);
    border-radius: 8px;
    border-right: 4px solid var(--secondary-color);
}

.about-highlights h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.about-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-highlights li {
    margin-bottom: 12px;
    padding-right: 30px;
    position: relative;
    line-height: 1.6;
}

.about-highlights li i {
    color: var(--secondary-color);
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(193, 154, 63, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item:hover .stat-number {
    color: var(--white-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 8px solid #fff;
    outline: 1px solid rgba(193, 154, 63, 0.3);
}

.about-image:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.animated-image {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
    display: block;
}

.about-image:hover .animated-image {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 31, 63, 0.8);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    color: var(--white-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.overlay-content p {
    color: var(--white-color);
    font-size: 1rem;
}

/* قسم الرؤية والرسالة */
.vision-mission-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.vision-box, .mission-box {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(193, 154, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 30px;
    color: var(--secondary-color);
}

.vision-box h3, .mission-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vm-divider {
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-bottom: 20px;
}

.vision-box p, .mission-box p {
    line-height: 1.8;
}

.vm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 31, 63, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.vision-box:hover .vm-overlay, .mission-box:hover .vm-overlay {
    opacity: 1;
    transform: scale(1);
}

.vm-overlay-content {
    color: var(--white-color);
    text-align: center;
    padding: 20px;
}

.vm-overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.vm-overlay-content ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.vm-overlay-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}

.vm-overlay-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--secondary-color);
}

/* قسم القيم */
.values-section {
    padding: var(--section-padding);
    background-color: var(--white-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    transition: height 0.3s ease;
    z-index: -1;
}

.value-card:hover .value-hover-effect {
    height: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(193, 154, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 35px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--white-color);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-divider {
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card p {
    line-height: 1.8;
    transition: all 0.3s ease;
}

.value-card:hover .value-title,
.value-card:hover p {
    color: var(--white-color);
}

.value-card:hover .value-divider {
    background-color: var(--white-color);
}

/* قسم الفريق */
.team-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 31, 63, 0.8);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-member:hover .member-social {
    transform: translateY(0);
}

.member-social a {
    color: var(--white-color);
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--secondary-color);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    line-height: 1.8;
    font-size: 0.95rem;
}

/* قسم الدعوة للعمل */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.92), rgba(0, 70, 128, 0.85)), url('../images/hero-bg.jpg') center/cover no-repeat fixed;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 5px solid rgba(255, 255, 255, 0.1);
    border-bottom: 5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.cta-section:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-section:hover::before {
    animation-duration: 12s;
}

.cta-section:hover::after {
    opacity: 0.08;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 20%, transparent 100%);
    animation: pulse 15s infinite linear;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/map.svg') center/contain no-repeat;
    opacity: 0.05;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(10px) scale(1.05);
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 31, 63, 0) 0%, rgba(0, 31, 63, 0.4) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 1;
}

.cta-section .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 15px;
    height: 15px;
    animation: float-particle 20s infinite ease-in-out;
}

.cta-section .particle:nth-child(2) {
    top: 70%;
    left: 80%;
    width: 12px;
    height: 12px;
    animation: float-particle 15s infinite ease-in-out reverse;
}

.cta-section .particle:nth-child(3) {
    top: 40%;
    left: 90%;
    width: 8px;
    height: 8px;
    animation: float-particle 18s infinite ease-in-out 2s;
}

.cta-section .particle:nth-child(4) {
    top: 80%;
    left: 20%;
    width: 10px;
    height: 10px;
    animation: float-particle 22s infinite ease-in-out 1s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translate(50px, 25px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(0, 50px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translate(-50px, 25px) rotate(270deg);
        opacity: 0.5;
    }
}

.cta-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.cta-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-outline {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover:before {
    left: 0;
}

.cta-buttons .btn {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .about-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* تنسيقات إضافية لزر القائمة في وضع الموبايل */
    .menu-toggle {
        display: block;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }
    
    /* تنسيقات للقائمة في وضع الموبايل */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 50px 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* تنسيقات إضافية لصفحة من نحن في وضع الموبايل */
    .page-title {
        padding: 80px 0 50px;
    }
    
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .page-title p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-highlights {
        padding: 15px;
    }
}

/* تنسيقات للشاشات الصغيرة جدًا */
@media (max-width: 576px) {
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .page-title p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .about-image img {
        border-radius: 8px;
    }
    
    .about-highlights h4 {
        font-size: 1.1rem;
    }
    
    .about-highlights li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .title-underline {
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* تحسينات إضافية للموبايل */
    .container {
        padding: 0 15px;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .about-image {
        margin-bottom: 20px;
    }
    
    .about-highlights {
        margin-top: 20px;
    }
    
    /* تحسين عرض القائمة في الموبايل */
    .nav-links li {
        margin-bottom: 15px;
    }
    
    .nav-links a {
        padding: 8px 15px;
        display: block;
        width: 100%;
        text-align: center;
    }
}