/* هذا هو ملف التصميم المنفصل */
:root {
    --primary-blue: #0b4a8d;
    --accent-blue: #1565c0;
    --silver: #f5f5f5;
    --white: #ffffff;
    --dark: #222;
}

* { box-sizing: border-box; transition: all 0.3s ease; }
html { scroll-behavior: smooth; }
body { 
    /* استخدام خط Cairo كخط أساسي */
    font-family: 'Cairo', sans-serif; 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
    color: var(--dark); 
}
/* --- تنسيق الناف بار الفخم (Luxury Navbar) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%; /* مسافات متوازنة */
    background-color: #ffffff; /* خلفية بيضاء نقية */
    
    /* تثبيت الناف بار في الأعلى عند السكرول */
    position: sticky;
    top: 0;
    z-index: 1000; /* لضمان ظهوره فوق كل شيء */
    
    /* ظل ناعم جداً من الأسفل */
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    
    /* خط ذهبي رفيع في أسفل الناف بار لزيادة الفخامة */
    border-bottom: 3px solid #d4af37;
}

/* تنسيق اللوجو في الناف بار */
.logo-img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    object-fit: cover;
    /* إطار ذهبي حول اللوجو */
    border: 2px solid #d4af37;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: rotate(10deg); /* حركة بسيطة عند الماوس */
}

/* تنسيق القائمة */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* مسافة بين الروابط */
    margin: 0;
    padding: 0;
}

/* تنسيق الروابط (الرئيسية - من نحن...) */
nav ul li a {
    text-decoration: none;
    color: var(--primary-blue); /* اللون الأزرق الأساسي */
    font-weight: 700; /* خط عريض */
    font-size: 1.1rem;
    position: relative; /* ضروري لعمل الخط الذهبي المتحرك */
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* --- السحر هنا: الخط الذهبي المتحرك تحت الروابط --- */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%; /* يبدأ مخفياً (عرض صفر) */
    height: 2px;
    background: #d4af37; /* لون ذهبي */
    bottom: 0;
    right: 0; /* يبدأ الرسم من اليمين لليسار (عربي) */
    transition: width 0.3s ease; /* نعومة الحركة */
}

/* عند تمرير الماوس */
nav ul li a:hover {
    color: #d4af37; /* يتحول النص للذهبي */
}

nav ul li a:hover::after {
    width: 100%; /* يكتمل الخط ليصبح 100% */
}

/* --- تعديلات الموبايل (مهم جداً حتى لا يخرب الشكل) --- */
@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
        flex-direction: row-reverse; /* لعكس الترتيب في الموبايل إذا لزم الأمر */
    }
    
    .logo-img {
        height: 45px;
        width: 45px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
}
/* Hero Section */
/* Hero Section - النسخة الحيوية */
.hero {
    /* ملاحظة: الصورة واللون موجودان في ملف HTML كما اتفقنا */

    background-size: cover;       
    background-position: center;  
    background-attachment: fixed; /* هذا ممتاز للكمبيوتر فقط */
    background-repeat: no-repeat; 
    
    color: var(--white); 
    
    /* غيرنا height إلى min-height لتجنب مشاكل القص في الشاشات الطويلة */
    min-height: 100vh; 
    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; 
    padding: 0 20px;
    position: relative;
}
/* تنسيق العنوان الكبير */
.hero h1 { 
    font-size: 3.5rem;       /* تكبير الخط */
    font-weight: 900;        /* جعله عريضاً جداً */
    margin-bottom: 20px; 
    letter-spacing: 1px;     /* مسافة بسيطة بين الحروف */
    text-shadow: 0 4px 15px rgba(0,0,0,0.3); /* ظل للنص ليبرز عن الخلفية */
    
    /* حركة ظهور بسيطة */
    animation: fadeInDown 1s ease-out;
}

/* تنسيق الوصف */
.hero p { 
    font-size: 1.4rem; 
    max-width: 700px; 
    margin-bottom: 40px; 
    opacity: 0.9;
    font-weight: 400;
    
    /* حركة ظهور */
    animation: fadeInUp 1s ease-out 0.5s backwards; /* التأخير 0.5 ثانية */
}

/* تنسيق الزر ليكون أكثر جاذبية */
.cta-button { 
    background: var(--white); 
    color: var(--primary-blue); 
    padding: 15px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* حركة ظهور */
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.cta-button:hover { 
    transform: translateY(-3px); /* يرتفع قليلاً عند الماوس */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* تعريف الحركات (Animations) */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* تعديل للموبايل */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
}
/* --- تنسيق قسم من نحن (Style Update) --- */
/* --- تنسيق قسم من نحن (تعديل الخلفية لتصبح بيضاء) --- */
.about-container {
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background-color: #ffffff; /* جعل الخلفية بيضاء تماماً */
}

/* تنسيق النصوص */
.about-content {
    flex: 1;
    text-align: right;
}

.about-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* خط تزييني تحت العنوان */
.about-content h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #d4af37; /* لون ذهبي */
    bottom: -10px;
    right: 0;
}

.about-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-content .lead-text {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 25px;
}

/* قائمة المميزات */
.features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: #d4af37; /* الأيقونات باللون الذهبي */
}

/* تنسيق شبكة الصور */
.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* عمودين */
    gap: 15px; /* مسافة بين الصور */
}

.about-images img {
    width: 100%;
    height: 200px; /* ارتفاع ثابت لتوحيد الشكل */
    object-fit: cover;
    border-radius: 15px; /* زوايا دائرية */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #fff; /* إطار أبيض يضيف نظافة للصورة */
}

/* تأثير الهوفر الذي طلبته سابقاً (التكبير) */
.about-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 2;
    border-color: #d4af37; /* يتحول الإطار لذهبي عند اللمس */
}

/* تعديل للموبايل */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* الصور تنزل تحت النص */
        text-align: center;
        padding: 50px 20px;
    }
    
    .about-content h2::after { right: 25%; } /* توسيط الخط الذهبي */
    .features-list li { justify-content: center; }
}
/* ========================================= */
/* سكشن تواصل معنا (خلفية بيضاء) */
/* ========================================= */

.contact-container { 
    padding: 80px 10%; 
    background: #ffffff; /* الخلفية أصبحت بيضاء الآن بدلاً من الفضي */
    text-align: center; 
}

/* --- تنسيق العنوان --- */
.contact-container h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.contact-container h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #d4af37; /* الخط الذهبي */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* --- تنسيق شبكة الكروت --- */
.contact-info { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-bottom: 40px; 
}

/* تعديل البطاقات لتبرز على الخلفية البيضاء */
/* ========================================= */
/* تصميم كروت التواصل (مع حركة التكبير Zoom) */
/* ========================================= */

.info-card { 
    background: #ffffff; 
    padding: 35px 25px; 
    border-radius: 15px; 
    text-align: center;
    
    /* ظل مبدئي ناعم ليفصل الكرت عن الخلفية البيضاء */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06); 
    border: 1px solid rgba(0,0,0,0.02); 
    
    /* جعل الحركة ناعمة جداً */
    transition: all 0.4s ease; 
    cursor: pointer; /* يظهر شكل اليد عند الماوس */
}

/* الأيقونة داخل الكرت */
.info-card i { 
    font-size: 2.5rem; /* حجم الأيقونة */
    color: var(--primary-blue); 
    margin-bottom: 15px;
    transition: 0.4s;
    display: inline-block;
}

/* --- هنا السحر: التأثير عند وضع الماوس --- */
.info-card:hover {
    /* تكبير حجم الكرت بنسبة 10% + رفعه للأعلى قليلاً */
    transform: scale(1.1) translateY(-10px);
    
    /* زيادة الظل ليصبح الكرت وكأنه طار من الشاشة */
    box-shadow: 0 20px 40px rgba(11, 74, 141, 0.15);
    
    /* تغيير لون الحدود للذهبي */
    border-color: #d4af37;
    z-index: 10; /* لضمان ظهور الكرت فوق أي شيء بجانبه */
}

/* حركة إضافية: الأيقونة تهتز أو تكبر أيضاً */
.info-card:hover i {
    color: #d4af37; /* تتحول للذهبي */
    transform: scale(1.1); /* تكبر قليلاً مع الكرت */
}

.info-card h3 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: var(--primary-blue);
}

.info-card p {
    color: #666;
    font-size: 1rem;
}

.map-frame { 
    width: 100%; 
    height: 400px; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border: none;
}
/* ========================================= */
/* تصميم الفوتر "VIP" (عميق + نقشة + ذهبي) */
/* ========================================= */
/* ========================================= */
/* 1. سكشن خدماتنا (تم توحيد الألوان والخطوط) */
/* ========================================= */

.services-section {
    padding: 80px 0;
    background-color: #f8fbfd; /* خلفية فاتحة جداً متناسقة */
    /* حذفنا تحديد الخط ليرث خط Cairo من الموقع */
    direction: rtl;
}

/* --- تنسيق العنوان --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem; /* نفس حجم عناوين باقي الموقع */
    color: var(--primary-blue); /* استخدام أزرق الموقع الأصلي */
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

/* الخط الذهبي تحت العنوان */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d4af37; /* الذهبي الأصلي للموقع */
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* --- تنسيق البطاقات --- */
.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    top: 0;
}

.service-card:hover {
    top: -10px;
    border-top-color: #d4af37; /* الذهبي الأصلي */
    box-shadow: 0 15px 30px rgba(11, 74, 141, 0.1); /* ظل أزرق خفيف من لون الموقع */
}

/* --- الأيقونات --- */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #eef5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.icon-box i {
    font-size: 32px;
    color: var(--primary-blue); /* الأزرق الأصلي */
    transition: 0.4s;
}

.service-card:hover .icon-box {
    background: var(--primary-blue); 
}

.service-card:hover .icon-box i {
    color: #d4af37; /* الذهبي الأصلي */
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #777;
}

/* ========================================= */
/* 2. الفوتر المتناسق (بنفس روح الهيرو والناف بار) */
/* ========================================= */

.footer {
    /* تدرج لوني مشتق من لون الموقع الأصلي */
    /* يبدأ من الأزرق الأصلي وينتهي بدرجة أغمق قليلاً للفخامة */
    background: linear-gradient(135deg, var(--primary-blue) 0%, #062a5c 100%);
    color: var(--white);
    padding: 70px 0 0;
    /* حذفنا نوع الخط Tajawal ليرث Cairo */
    direction: rtl;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

/* الخط الذهبي في الفوتر */
.footer-col h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #d4af37; /* الذهبي الأصلي */
    border-radius: 10px;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: #d4af37; /* الذهبي الأصلي */
    padding-right: 8px;
}

/* أيقونات التواصل */
.social-links {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    transition: 0.4s;
}

.social-links a:hover {
    background: #d4af37; /* الذهبي الأصلي */
    color: var(--primary-blue); /* الأيقونة تصبح زرقاء */
    border-color: #d4af37;
    transform: translateY(-5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* الموبايل */
@media screen and (max-width: 768px) {
    .services-grid, .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .service-card { width: 100%; }
    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .social-links { justify-content: center; }
}

/* الموبايل */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .social-links {
        justify-content: center;
    }
}

/* --- تأثيرات الهوفر (Hover Effects) --- */

/* 1. تكبير صور "نبذة عنا" عند مرور الماوس */
.about-images img:hover {
    transform: scale(1.1); /* تكبير الصورة بنسبة 10% */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* زيادة الظل لإعطاء عمق */
    z-index: 2; /* التأكد أن الصورة تظهر فوق الصور الأخرى */
    cursor: pointer; /* تغيير شكل المؤشر ليد */
}

/* 2. تكبير بطاقات "تواصل معنا" عند مرور الماوس */
.info-card:hover {
    transform: scale(1.05); /* تكبير البطاقة قليلاً */
    background: var(--white); /* التأكد من بقاء الخلفية بيضاء */
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* ظل أكبر وأعمق */
    cursor: pointer;
}

/* تنسيق رقم الهاتف القابل للنقر */
.phone-link {
    text-decoration: none; /* إزالة الخط الموجود تحت الرابط */
    color: var(--dark);    /* جعله بنفس لون النصوص */
    font-weight: bold;     /* تعريض الخط ليكون واضحاً */
    font-size: 1.2rem;     /* تكبير الخط قليلاً لسهولة الضغط عليه */
    display: block;        /* لجعله يأخذ مساحة السطر كاملاً */
    direction: ltr;        /* لضمان ظهور الرقم من اليسار لليمين بشكل صحيح */
}

.phone-link:hover {
    color: var(--primary-blue); /* تغيير لونه للأزرق عند تمرير الماوس */
}
/* --- تعديلات الموبايل (Responsive) - كود موحد --- */
@media (max-width: 768px) {
    /* 1. تعديل الناف بار */
    nav { 
        padding: 10px 15px; 
    }

    /* 2. إصلاح اللوجو ليبقى دائرياً وواضحاً */
    /* السر هنا: نجعل العرض يساوي الارتفاع تماماً */
    .logo-img { 
        height: 45px; 
        width: 45px; 
    } 

    /* 3. تصغير مسافات وخطوط القائمة */
    nav ul { 
        gap: 10px; 
    }
    nav ul li a { 
        font-size: 0.85rem; 
    }
    
    /* 4. تصغير عنوان الترحيب الكبير */
    .hero h1 { 
        font-size: 1.8rem; 
    }
}
/* --- تنسيق رابط الموقع (Location Card) --- */
.location-link {
    text-decoration: none; /* إزالة الخط من تحت الرابط */
    color: var(--dark);    /* نفس لون النصوص العادية */
    display: flex;         /* لضمان توسط العناصر */
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* تنسيق النص داخل رابط الموقع ليطابق رقم الهاتف */
.location-link p {
    font-size: 1.1rem;      /* نفس حجم خط الهاتف */
    font-weight: bold;      /* خط عريض للوضوح */
    line-height: 1.6;       /* تباعد مريح بين السطرين */
    margin-top: 10px;
    text-align: center;
}

/* تأثير عند مرور الماوس على الموقع */
.location-link:hover p,
.location-link:hover i {
    color: var(--primary-blue); /* يتحول للأزرق عند اللمس */
}
/* الحالة الأولى: العنصر مختفي ومنزح للأسفل قليلاً */
.reveal {
    opacity: 0;
    transform: translateY(50px); /* ينزل لتحت 50 بيكسل */
    transition: all 1s ease; /* سرعة ونعومة الحركة */
}

/* الحالة الثانية: عندما يظهر العنصر (يضاف له هذا الكلاس بالجافاسكريبت) */
.reveal.active {
    opacity: 1;
    transform: translateY(0); /* يرجع لمكانه الطبيعي */
}
@media screen and (max-width: 768px) {
    .hero {
        /* إجبار الصورة على التحرك مع الصفحة في الموبايل */
        /* هذا يمنع الزوم الزائد ويظهر الصورة كاملة */
        background-attachment: scroll !important;
        
        /* ضمان توسيط الصورة بشكل أفضل في الشاشات الطويلة */
        background-position: center center !important;
    }
}
/* ========================================= */
/* سكشن خدماتنا (بتصميم متناسق مع هوية الموقع) */
/* ========================================= */


/* الموبايل */
@media screen and (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }
    .service-card {
        width: 100%;
    }
}
/* إجبار الأيقونة داخل الرابط على التلون بالذهبي */
.info-card:hover a i {
    color: #d4af37 !important;
    transform: scale(1.1);
}

/* إزالة الخط الأزرق من الرابط في كرت الموقع */
.location-link {
    text-decoration: none;
    color: inherit; /* يأخذ لون النص الطبيعي */
    display: block; /* يملأ مساحة الكرت */
}
/* ========================================= */
/* تمييز الرابط النشط في الناف بار */
/* ========================================= */

/* عندما يكون الرابط نشطاً (Active) يأخذ نفس خصائص الهوفر */
nav ul li a.active {
    color: var(--primary-blue); /* اللون الأزرق */
    font-weight: 700; /* خط عريض */
}

/* إضافة الخط الذهبي تحت الرابط النشط */
nav ul li a.active::after {
    content: '';
    display: block;
    width: 100%; /* الخط يملأ العرض */
    height: 3px;
    background-color: #d4af37; /* اللون الذهبي */
    margin-top: 5px;
    border-radius: 2px;
}
/* ========================================= */
/* تصميم نموذج الاتصال (Contact Form) */
/* ========================================= */

.form-container {
    background: #ffffff;
    max-width: 700px; /* عرض مناسب للفورم */
    margin: 50px auto; /* توسيط الفورم */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* نفس ظل الكروت */
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.form-container h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* تنسيق الحقول */
.input-group {
    margin-bottom: 20px;
    text-align: right; /* الكتابة من اليمين */
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    background: #fdfdfd;
    outline: none;
    transition: 0.3s;
}

/* عند الضغط داخل الحقل */
.input-group input:focus, 
.input-group textarea:focus {
    border-color: #d4af37; /* يتحول الإطار للذهبي */
    background: #fff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* زر الإرسال */
.send-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 74, 141, 0.3);
}

.send-btn i {
    font-size: 0.9rem;
}
/* ========================================= */
/* إعدادات اللغة وزر التحويل */
/* ========================================= */

/* تنسيق زر تغيير اللغة */
.lang-switch {
    border: 1px solid var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch:hover {
    background-color: var(--primary-blue);
    color: #fff !important;
    border-color: var(--primary-blue);
}

/* إلغاء الخط الذهبي السفلي لزر اللغة فقط */
.lang-switch::after {
    display: none !important;
}

/* الكود السحري للغة الإنجليزية:
   عندما يكون الموقع LTR (يسار ليمين)، اقلب النصوص تلقائياً
*/
html[dir="ltr"] body,
html[dir="ltr"] .input-group, 
html[dir="ltr"] .footer-col {
    text-align: left;
}

/* عكس أيقونة "صح" في القائمة الإنجليزية */
html[dir="ltr"] .features-list li i {
    margin-left: 0;
    margin-right: 10px;
}