/* تنسيقات عامة */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8F8F8;
    color: #333;
    /* سيتم تحديد الاتجاه الفعلي في JS بناءً على فئة lang-ar/lang-en */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* الألوان الأساسية */
:root {
    --primary-color: #000000;
    --secondary-color: #CDB79F;
    --background-color: #FDFBF8;
    --text-color: #333;
}

/* --- تنسيقات التبديل اللغوي --- */

/* تم حذف تنسيق زر تبديل اللغة (.lang-btn) ليعتمد على تنسيق .nav-links a */
/* إذا كنت تريد تمييزه بحد خفيف، يمكنك إضافة هذا التعديل: */
.lang-toggle-link {
    border: 1px solid white; /* إطار أبيض خفيف */
    padding: 2px 8px; /* مسافة داخلية بسيطة */
    border-radius: 4px;
}
.lang-toggle-link:hover {
    border-color: var(--secondary-color);
}

/* حالة اللغة العربية (افتراضية) */
.lang-ar {
    direction: rtl; 
    text-align: right;
}

/* حالة اللغة الإنجليزية (تنسيقات LTR) */
.lang-en {
    direction: ltr; /* تغيير اتجاه النص والصفحة إلى اليسار */
    text-align: left;
}

/* تعديلات الاتجاه عند الإنجليزية */
.lang-en .navbar { direction: ltr; }
.lang-en .nav-links { direction: ltr; }
.lang-en .section-title { text-align: left; }
.lang-en .about-us-section .about-text-content { text-align: left; }
.lang-en .service-box { text-align: left; }

/* عكس ترتيب أقسام "فريق العمل" و "الدورات" في الإنجليزية */
.lang-en .team-content-container,
.lang-en .training-container {
    flex-direction: row; 
}

/* عكس اتجاه الفوتر في الإنجليزية */
.lang-en .footer-section .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.lang-en .contact-details {
    margin-right: 30px; 
    margin-left: 0;
}
.lang-en .footer-logo-container {
    margin-left: 30px; 
    margin-right: 0;
}
/* نهاية تنسيقات التبديل اللغوي */

/* --- navbar --- */
.navbar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.nav-logo {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

/* زر الهامبرغر (يظهر على الهاتف فقط) */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}
.hamburger {
    width: 26px;
    height: 2px;
    background: white;
    display: block;
    position: relative;
}
.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: white;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.05em;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--secondary-color);
}

/* --- Hero --- */
.hero-section {
    position: relative;
    min-height: 420px;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-color: #222;
}
.header-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.45);
    z-index: 5;
}
.hero-image-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0.95;
}
.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.tagline {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 300;
}
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: 2px solid white;
    margin-top: 20px;
}
.btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

/* --- أقسام مشتركة --- */
section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; position: relative; }
.section-title h2 { font-size: 2em; font-weight: 600; color: var(--primary-color); margin-top: 10px; }
.section-icon { width: 60px; height: 60px; display: block; margin: 0 auto 10px auto; }

/* about */
.about-us-section { background-color: var(--background-color); }
.about-us-section .about-text-content { text-align: center; max-width: 900px; margin: 20px auto; }

/* services */
.services-section { background-color: var(--secondary-color); }
.service-box { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); max-width: 900px; margin: 0 auto; text-align: center; font-size: 1.05em; font-weight: 500; }

/* --- قسم النجاح --- */
.success-motto-section {
    background-color: white; 
    color: var(--primary-color);
    text-align: center;
    padding: 40px 0 20px; 
}

.motto-image-container {
    width: 90%; 
    max-width: 1200px;
    margin: 40px auto; 
    display: block;
}

.motto-image-container img {
    width: 100%; 
    height: auto; 
    display: block;
    border-radius: 5px; 
}

.motto-image-container {
    width: 90%; 
    max-width: 1200px;
    height: auto;
    margin: 20px auto; 
    background-image: url('images/motto-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.motto-img-fallback {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* profile / team */
.profile-section { background-color: var(--secondary-color); padding-bottom: 80px; }
.team-content-container { display: flex; gap: 30px; align-items: flex-start; }
.main-profile-card { flex: 1 1 35%; min-width: 280px; background-color: white; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); overflow: hidden; }
.profile-image-container { padding: 0; }
.profile-photo { width: 100%; height: 350px; object-fit: cover; display: block; }
.profile-details-main { padding: 20px; }
.profile-details-main h3 { color: var(--primary-color); margin-top: 0; }

/* qualification cards */
.qualification-cards-group { flex: 1 1 65%; display: flex; flex-direction: column; gap: 20px; }
.qualification-card { background-color: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06); }
.qualification-card h4 { color: var(--primary-color); border-bottom: 2px solid var(--secondary-color); padding-bottom: 5px; margin-top: 0; font-size: 1.1em; }
.qualification-card p { margin-bottom: 8px; font-size: 0.95em; }

/* additional training */
.additional-training-section { background-color: #fff; }
.training-container { display: flex; gap: 30px; align-items: flex-start; flex-direction: row-reverse; }
.training-image-container { flex: 1 1 35%; min-width: 220px; }
.training-photo { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); display: block; }
.courses-list-container { flex: 1 1 65%; padding: 20px 0; }
.courses-list-container p { margin-bottom: 15px; border-bottom: 1px dotted #eee; padding-bottom: 10px; }
.courses-list-container p:last-child { border-bottom: none; padding-bottom: 0; }

/* footer */
.footer-section { background-color: var(--primary-color); color: white; padding: 40px 0; }
.footer-section .container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
.contact-us h2 { font-size: 1.6em; margin-top: 0; color: var(--secondary-color); }
.contact-details { flex: 1; min-width: 260px; margin-left: 30px; /* للغة العربية */ 
    position: relative; /* لضمان أن z-index يعمل */
    z-index: 10;
}
.contact-details h3 { color: var(--secondary-color); margin-top: 20px; margin-bottom: 5px; font-size: 1.05em; }
.contact-details p { margin-bottom: 8px; }
.interactive-link { color: white; text-decoration: none; transition: color 0.3s; }
.interactive-link:hover { color: var(--secondary-color); text-decoration: underline; cursor: pointer; }

/* تنسيقات z-index لضمان الضغط على رابط الخرائط */
.map-link {
    position: relative;
    z-index: 15; /* قيمة أعلى من الأب والأي عناصر أخرى محتملة */
}

.footer-logo-container { text-align: center; flex-basis: 220px; margin-right: 30px; /* للغة العربية */ }
.footer-afaaq-logo { max-width: 100%; height: auto; display: block; margin: 0 auto 10px auto; }
.footer-logo-container p { line-height: 1.4; font-size: 0.9em; margin: 0; }

/* responsive images helper */
.responsive-img { max-width: 100%; height: auto; display: block; }

/* --- Media queries --- */
@media (max-width: 992px) {
    .team-content-container, .training-container {
        flex-direction: column;
    }
    .main-profile-card, .qualification-cards-group, .training-image-container, .courses-list-container {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .training-container {
        flex-direction: column-reverse;
    }
    /* عكس ترتيب الدورات في الإنجليزية على الجوال */
    .lang-en .training-container {
        flex-direction: column-reverse;
    }
    .motto-image-container { height: auto; }
    .profile-photo { height: 300px; }
}

@media (max-width: 768px) {
    .hero-section { height: 60vh; min-height: 380px; }
    .tagline { font-size: 1.15em; padding: 0 10px; }
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: var(--primary-color); 
        flex-direction: column; 
        gap: 0; 
        padding: 10px 0; 
        z-index: 1100; 
    }
    .nav-links li { 
        padding: 8px 16px; 
        border-top: 1px solid rgba(255,255,255,0.05); 
        text-align: center; 
    }
    /* التعديل هنا: تطبيق تنسيق الروابط على زر تبديل اللغة في وضع الهاتف */
    .nav-links a { display: block; padding: 8px 0; /* لضمان مساحة للضغط */ } 
    
    .nav-toggle { display: block; }
    .profile-photo { height: 250px; }
    .training-photo { height: 250px; }
    .footer-section .container { flex-direction: column; text-align: center; }
    .contact-us, .footer-logo-container { width: 100%; margin: 0 auto 20px auto; }
    .contact-details { text-align: center; margin-left: 0; }
    .motto-image-container { background-position: center; margin: 15px auto; }
    .motto-img-fallback { display: block; }

    /* تعديلات اتجاه الفوتر على الجوال في الإنجليزية */
    .lang-en .footer-section .container {
        flex-direction: column;
        text-align: center;
    }
    .lang-en .contact-details {
        margin-right: 0;
    }
    .lang-en .footer-logo-container {
        margin-left: 0;
    }
}

/* حالة تفعيل قائمة الهاتف */
.nav-links.open { display: flex; }