
/* لمنع عناصر AOS من تمديد عرض الصفحة */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}
/* 1. تنسيق السيكشن الرئيسي */
.curriculum-compact {
    position: relative;
    padding: 80px 8%;
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    direction: rtl;
    /* الحل هنا: نلغي الـ hidden من هنا عشان الـ sticky يشتغل */
    overflow: visible; 
}


/* 2. باترن الشوكولاتة العائم في الخلفية */
.bg-choco {
    position: absolute;
    z-index: 0;
    opacity: 0.05; /* شفافية خفيفة جداً */
    pointer-events: none;
    animation: floatChoco 8s ease-in-out infinite;
    max-width: 100%;
}

.choco-1 { top: 10%; left: 5%; width: 180px; }
.choco-2 { top: 60%; right: 5%; width: 150px; animation-delay: 2s; }
.choco-3 { top: 30%; left: 40%; width: 100px; opacity: 0.03; animation-delay: 4s; }

@keyframes floatChoco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* 3. منطقة الصور الثابتة (Sticky) */
.image-area {
    flex: 1;
    position: -webkit-sticky; /* لدعم متصفحات Safari */
    position: sticky;
    top: 100px; /* المسافة من أعلى الشاشة أثناء السكرول */
    z-index: 10;
}

.image-collage {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 5px solid #fff;
    transition: 0.5s ease;
}

.img-1 { width: 280px; height: 350px; z-index: 3; top: 0; right: 0; }
.img-2 { width: 240px; height: 300px; z-index: 2; bottom: -20px; left: -10px; transform: rotate(-5deg); }
.img-3 { width: 180px; height: 180px; z-index: 1; top: -30px; left: 20px; transform: rotate(10deg); }

.img-box img { width: 100%; height: 100%; object-fit: cover; }

/* 4. قائمة المحاور */
.curriculum-list {
    flex: 1.3;
    position: relative;
    z-index: 2;
}

.curriculum-list h2 {
    font-size: 2.8rem;
    color: #3d2b1f;
    margin-bottom: 40px;
    font-weight: 800;
}
h2 {
    font-size: 2.8rem;
    color: #3d2b1f;
    margin-bottom: 40px;
    font-weight: 800;
text-align: center;
}
.axis-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(253, 250, 247, 0.8);
    transition: 0.3s;
    border-right: 5px solid transparent;
}

.axis-item:hover {
    background: #f5ede4;
    transform: translateX(-8px);
    border-right-color: #d4a373;
}

.axis-number {
    background: #d4a373;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.axis-content h4 {
    color: #3d2b1f;
    font-size: 1rem;
    font-weight: 600;
}

/* 5. ريسبونسيف الموبايل */
.mobile-only-img { display: none; }

@media (max-width: 992px) {
    .curriculum-compact { flex-direction: column; padding: 60px 5%; }
    .image-area { position: relative; top: 0; width: 100%; margin-bottom: 30px; }
    .image-collage { display: none; }
    .mobile-only-img { display: block; width: 100%; height: 250px; object-fit: cover; border-radius: 15px; }
    .bg-choco { opacity: 0.03; }
    .curriculum-list h2 { font-size: 2rem; text-align: center; }
}

/* ظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظ */


.study-orbital-section {
    padding: 100px 5%;
    background: #fff;
    direction: rtl;
    overflow: hidden;
}

.orbital-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
}

/* الكارت المبتكر */
.orbital-card {
    background: #ffffff;
    border: 1px solid #f0e6dd;
    padding: 30px 20px;
    width: 160px;
    height: 160px;
    border-radius: 50%; /* شكل دائري بروفيشنال */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(61, 43, 31, 0.03);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
     transform: scale(1.1);
    border-color: #d4a373;
    box-shadow: 0 15px 30px rgba(212, 163, 115, 0.15);
    z-index: 10;
}

.orbital-card:hover {
    transform: scale(1.1);
    border-color: #d4a373;
    box-shadow: 0 15px 30px rgba(212, 163, 115, 0.15);
    z-index: 10;
}

/* الأيقونات بنمط خطي رفيع */
.orbital-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d4a373;
}

.orbital-card h4 {
    font-size: 1rem;
    color: #3d2b1f;
    margin-bottom: 5px;
    font-weight: 800;
}

.orbital-card p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

/* الخطوط الواصلة (تظهر في اللاب توب فقط) */
@media (min-width: 992px) {
    .orbital-container::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #d4a373, transparent);
        z-index: 0;
    }
}

/* ريسبونسيف الموبايل */
@media (max-width: 768px) {
    .orbital-card {
        width: 160px;
        height: 160px;
    }
}

/* ظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

.opay-premium-section {
    padding: 100px 8%;
    background-color: #fdfaf7;
    direction: rtl;
    font-family: 'Cairo', sans-serif; /* الفونت الجديد */
}

.opay-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 25px 50px rgba(61, 43, 31, 0.1);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    border: 1px solid #f0e6dd;
}

/* الجهة اليمنى: السعر والدفع */
.opay-main {
    padding: 50px;
    background: #3d2b1f;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.opay-main h2 { font-size: 1.8rem; margin-bottom: 10px; font-weight: 700; opacity: 0.9; }

.price-box { margin-bottom: 30px; }
.price-box .old-price { font-size: 1.4rem; text-decoration: line-through; opacity: 0.5; display: block; }
.price-box .new-price { font-size: 4rem; font-weight: 900; color: #d4a373; line-height: 1; }
.price-box .currency { font-size: 1.2rem; margin-right: 5px; }

.btn-opay-checkout {
    background: #d4a373;
    color: #fff;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.btn-opay-checkout:hover {
    transform: translateY(-5px);
    background: #c29262;
}

/* الجهة اليسرى: الخصم ووسائل الدفع */
.opay-details {
    padding: 50px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    background: #fdfaf7;
    border: 2px dashed #d4a373;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.promo-badge p { color: #3d2b1f; font-weight: 700; margin-bottom: 15px; }

.coupon-row {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coupon-code { flex: 1; padding: 12px; font-family: sans-serif; font-weight: 900; font-size: 1.4rem; color: #3d2b1f; text-align: center; }

.copy-button { background: #3d2b1f; color: #fff; border: none; padding: 0 25px; cursor: pointer; font-weight: 700; transition: 0.3s; }
.copy-button:hover { background: #d4a373; }

/* قسم أيقونات الدفع */
.payment-methods-grid {
    text-align: center;
}

.payment-methods-grid p { font-size: 0.9rem; color: #888; margin-bottom: 15px; }

.icons-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.icons-flex img {
    height: 35px; /* تكبير الأيقونات */
    object-fit: contain;
    filter: grayscale(0.2);
    transition: 0.3s;
}

.icons-flex img:hover { filter: grayscale(0); transform: scale(1.1); }

/* الموبايل */
@media (max-width: 992px) {
    .opay-card { grid-template-columns: 1fr; }
    .opay-main, .opay-details { padding: 40px 25px; }
    .new-price { font-size: 3rem; }
}




/* ظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظ */

/* سيكشن الأكاديمية والشهادات */
.academy-trust-section {
    padding: 100px 8%;
    background-color: #fff;
    direction: rtl;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

/* جهة المحتوى النصي */
.academy-info-box {
    flex: 1.2;
}

.academy-info-box .sub-title {
    color: #d4a373;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.academy-info-box h2 {
    color: #3d2b1f;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
}

.academy-info-box p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.academy-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.academy-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #3d2b1f;
}

.academy-features li i {
    color: #d4a373;
    font-size: 1.2rem;
}

/* زر الاشتراك */
.btn-academy-join {
    display: inline-block;
    background: #3d2b1f;
    color: #fff !important;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(61, 43, 31, 0.15);
}

.btn-academy-join:hover {
    background: #d4a373;
    transform: translateY(-5px);
}

/* جهة الشهادة والصورة */
.academy-visuals {
    flex: 1;
    position: relative;
}

.certificate-wrapper {
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
    transition: 0.5s;
}

.certificate-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.certificate-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 12px solid #fff;
}

/* زخرفة خلف الشهادة */
.visual-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, #f5ede4 0%, transparent 70%);
    z-index: 1;
}

/* ريسبونسيف الموبايل */
@media (max-width: 992px) {
    .academy-trust-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }
    .academy-info-box h2 { font-size: 2rem; }
    .academy-features li { justify-content: center; }
    .academy-visuals { width: 100%; margin-top: 40px; }
}




/* /////////////////////////////////////////////////////////// */






/* استيراد خط Cairo الاحترافي */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

.opay-final-section {
    padding: 80px 8%;
    background-color: #fdfaf7;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

.opay-card-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    box-shadow: 0 25px 50px rgba(61, 43, 31, 0.12);
    overflow: hidden;
    border: 1px solid #f0e6dd;
}

/* الجهة اليمنى: الاشتراك */
.opay-payment-side {
    padding: 60px 40px;
    background: #3d2b1f;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.opay-payment-side h2 { font-size: 1.6rem; color: white; font-weight: 700; }

.price-container { margin-bottom: 30px; }
.old-price-tag { font-size: 1.3rem; text-decoration: line-through; opacity: 0.5; display: block; margin-bottom: 5px; }
.new-price-tag { font-size: 3.8rem; font-weight: 900; color: #d4a373; line-height: 1; }
.currency-tag { font-size: 2rem; margin-right: 8px; color: #fff;  font-weight: 900; color: #d4a373; line-height: 1;}

.btn-checkout-now {
    background: #d4a373;
    color: #fff !important;
    padding: 18px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
}

.btn-checkout-now:hover {
    transform: translateY(-5px);
    background: #c29262;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* الجهة اليسرى: الخصم والشعارات */
.opay-logos-side {
    padding: 50px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discount-box {
    background: #fdfaf7;
    border: 2px dashed #d4a373;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 35px;
    text-align: center;
}

.coupon-flex {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-top: 15px;
}

.code-text { flex: 1; padding: 12px; font-weight: 900; font-size: 1.3rem; color: #3d2b1f; text-align: center; font-family: sans-serif; }
.copy-btn-action { background: #3d2b1f; color: #fff; border: none; padding: 0 20px; cursor: pointer; font-weight: 700; transition: 0.3s; }
.copy-btn-action:hover { background: #d4a373; }

/* شبكة الشعارات */
.methods-title { font-size: 0.95rem; color: #777; margin-bottom: 20px; text-align: center; font-weight: 700; }

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
    justify-items: center;
}


.methods-grid img {
    width: 100% !important;
    max-width: 50px !important;
    height: auto !important;
     filter: none !important; 
    transition: 0.3s;
}

.methods-grid img:hover { filter: grayscale(0); transform: scale(1.1); }

/* ريسبونسيف الموبايل */
@media (max-width: 992px) {
    .opay-card-container { grid-template-columns: 1fr; }
    .methods-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}



.new-price-tag {
    font-size: 3.8rem;
    font-weight: 900;
    color: #d4a373;
    line-height: 1;

    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
        -2px  0   0 #fff,
         2px  0   0 #fff,
         0   -2px 0 #fff,
         0    2px 0 #fff;
}















/* ظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظظ */
/* سيكشن الأكاديمية والشهادات */
.academy-trust-section {
    padding: 100px 8%;
    background-color: #fff;
    direction: rtl;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

/* جهة المحتوى النصي */
.academy-info-box { flex: 1.2; }

/* جهة الشهادة */
.academy-visuals { flex: 1; position: relative; }

.certificate-wrapper {
    position: relative;
    z-index: 2;
    transform: rotate(-3deg); /* مائلة في اللاب توب */
    transition: 0.5s;
}

.certificate-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 12px solid #fff;
}

/* ريسبونسيف الموبايل - التعديل السحري هنا */
@media (max-width: 992px) {
    .academy-trust-section {
        flex-direction: column-reverse; /* هذا السطر يرفع الصورة فوق الكلام */
        text-align: center;
        padding: 40px 5%;
        gap: 30px; /* تقليل المسافة بين الصورة والكلام */
    }

    .academy-visuals {
        width: 100%;
        margin-top: 0;
        margin-bottom: 20px; /* مسافة بسيطة تحت الصورة */
    }

    .certificate-wrapper {
        transform: rotate(0deg); /* جعل الصورة معدولة تماماً في الموبايل */
    }

    .academy-info-box h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .academy-features li {
        justify-content: center; /* توسيط الأيقونات في الموبايل */
        text-align: right;
    }
    
    .btn-academy-join {
        width: 100%; /* جعل الزر بعرض الشاشة في الموبايل لشكل أفضل */
        box-sizing: border-box;
    }
}




/* سيكشن عرض المحاضرات المبتكر */
.lectures-marquee-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden; /* ضروري جداً لمنع السكرول العرضي */
    direction: ltr; /* الصور تتحرك من اليسار لليمين والعكس */
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* حاوية الصف المتحرك */
.marquee-row {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll 60s linear infinite;
}

/* الصف الثاني يتحرك بالعكس */
.reverse {
    animation-direction: reverse;
}

.marquee-item {
    width: 250px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.marquee-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

/* التوقف عند الوقوف بالماوس */
.marquee-wrapper:hover .marquee-row {
    animation-play-state: paused;
}

/* أنيميشن الحركة */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-450px * 10 - 400px)); } /* تعدل حسب عدد الصور */
}

/* الموبايل */
@media (max-width: 768px) {
    .marquee-item {
        width: 180px;
        height: 250px;
    }
}





/* سيكشن الأسئلة الشائعة */
.faq-section {
    padding: 80px 8%;
    background-color: #fdfaf7;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-header h2 {
    color: #3d2b1f;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-header p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* حاوية الأسئلة */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(61, 43, 31, 0.05);
    overflow: hidden;
    border: 1px solid #f0e6dd;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #d4a373;
}

/* زر السؤال */
.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    outline: none;
}

.faq-question h4 {
    color: #3d2b1f;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.faq-icon {
    width: 25px;
    height: 25px;
    background: #fdfaf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a373;
    transition: 0.4s;
}

/* الإجابة */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: #777;
    line-height: 1.7;
    font-size: 1rem;
}

/* حالة الفتح */
.faq-item.active {
    border-color: #d4a373;
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #d4a373;
    color: #fff;
}

/* الموبايل */
@media (max-width: 768px) {
    .faq-header h2 { font-size: 1.8rem; }
    .faq-question h4 { font-size: 1rem; }
}





:root {
    --primary-chocolate: #4e342e;
    --gold-accent: #f59003;
    --text-light: #f5f5f5;
    --bg-card: rgba(255, 255, 255, 0.05);
}

.contact-premium {
    padding: 80px 5%;
    background-color: #b4703e; /* خلفية داكنة لتبرز الفخامة */
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.contact-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #612a03;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.contact-info-side {
    flex: 1;
    padding: 60px;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #bbb;
    margin-bottom: 40px;
}

.contact-details-container {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.contact-detail-item:hover {
    transform: translateX(-10px);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: #f59003;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-left: 20px;
}

.contact-text h4 {
    margin: 0;
    color: var(--gold-accent);
    font-size: 1.1rem;
}

.contact-text p {
    margin: 5px 0 0;
    color: #ccc;
    font-size: 0.95rem;
}

/* السوشيال ميديا */
.social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #f59003;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-accent);
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--gold-accent);
    color: #1a1a1a;
}

/* جانب الصورة */
.contact-image-side {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #2a2a2a96, transparent);
}

/* للموبايل */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column-reverse;
    }
    .contact-image-side {
        height: 300px;
        min-height: auto;
    }
    .overlay-gradient {
        background: linear-gradient(to top, #2a2a2a, transparent);
    }
}