/* ملف ستايلات صفحة الشراكات - تصميم جديد */

:root {
    /* ألوان أساسية */
    --primary-color: #001f3f; /* كحلي */
    --primary-rgb: 0, 31, 63;
    --accent-color: #b8860b; /* ذهبي غامق */
    --accent-rgb: 184, 134, 11;
    --text-color: #333;
    --light-text-color: #666;
    --white-color: #fff;
    --light-bg-color: #f9f9f9;
    --dark-bg-color: #001f3f;
    
    /* تدرجات لونية */
    --partnership-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --card-bg-gradient: linear-gradient(to bottom, #ffffff, #f8f6f0);
    
    /* خلفيات */
    --card-bg: #fff;
    --card-bg-hover: #fff;
    
    /* حدود */
    --border-color: #e0e0e0;
    --border-hover: rgba(184, 134, 11, 0.3);
    --card-border: 1px solid rgba(0, 31, 63, 0.08);
    
    /* ظلال */
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-icon: 0 4px 10px rgba(184, 134, 11, 0.2);
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);
    --text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    
    /* نصف قطر الزوايا */
    --border-radius-small: 6px;
    --border-radius-medium: 12px;
    --border-radius-large: 20px;
    --card-border-radius: 12px;
    
    /* انتقالات */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.4s ease;
    --card-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* تحويلات */
    --card-hover-transform: translateY(-10px) scale(1.01);
    
    /* تباعدات */
    --section-spacing: 100px;
    --highlight-color: #FFD700;
}

/* قسم عنوان الصفحة - تصميم جديد */
.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);
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/partnerships.svg'),
                      radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(var(--accent-rgb), 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: var(--text-shadow);
    position: relative;
    display: inline-block;
}

.page-title h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.page-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    text-shadow: var(--text-shadow);
    line-height: 1.5;
}

/* قسم مقدمة الشراكات - تصميم جديد */
.partnerships-intro {
    padding: calc(var(--section-spacing) * 0.8) 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 50%, #f8faff 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 8px 25px rgba(0, 0, 0, 0.03), inset 0 -8px 25px rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(var(--primary-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.05);
}

.partnerships-intro::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 70%);
    opacity: 0.07;
    z-index: 0;
    filter: blur(20px);
}

.partnerships-intro::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 70%);
    opacity: 0.07;
    z-index: 0;
    filter: blur(15px);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    font-weight: 700;
}

.intro-text h2::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.intro-text p {
    margin-bottom: 14px;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.intro-text p:last-child {
    padding-bottom: 8px;
    border-bottom: 2px dashed rgba(var(--primary-rgb), 0.1);
}

.intro-image {
    position: relative;
    text-align: center;
    perspective: 800px;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--card-border-radius);
    z-index: -1;
    opacity: 0.2;
    transform: translateZ(-30px);
    transition: var(--card-transition);
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--card-transition);
    transform: translateZ(0);
    filter: saturate(1.05);
}

.intro-image:hover img {
    transform: translateY(-10px) translateZ(20px) rotateY(3deg);
    box-shadow: var(--card-shadow-hover);
}

.intro-image:hover::before {
    transform: translateY(10px) translateZ(-20px) rotateY(-3deg);
    opacity: 0.3;
}

/* قسم نماذج الشراكة - تصميم جديد */
.partnership-models {
    padding: calc(var(--section-spacing) * 0.8) 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 50%, #f8faff 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 8px 25px rgba(0, 0, 0, 0.03), inset 0 -8px 25px rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(var(--primary-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.05);
}

.partnership-models::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%),
                      radial-gradient(circle at 90% 90%, rgba(var(--accent-rgb), 0.05) 0%, transparent 60%),
                      radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.02) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.9;
    filter: blur(15px);
}

/* زر الدعوة للعمل - تصميم جديد */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--card-transition);
    margin-top: 20px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(var(--accent-rgb), 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* رأس القسم - تصميم جديد */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    color: var(--light-text-color);
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.4;
}

/* شبكة النماذج - تصميم جديد */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* بطاقة النموذج - تصميم جديد */
.model-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: var(--card-border-radius);
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: var(--card-transition);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(var(--accent-rgb), 0.2);
}

.model-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.model-card:hover::before {
    transform: scale(1);
}

/* أيقونة النموذج - تصميم جديد */
.model-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--card-transition);
    position: relative;
    overflow: hidden;
}

.model-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.model-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: var(--card-transition);
    position: relative;
    z-index: 1;
}

.model-card:hover .model-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 15px rgba(var(--accent-rgb), 0.15);
}

.model-card:hover .model-icon::before {
    opacity: 1;
}

.model-card:hover .model-icon i {
    color: var(--white-color);
    animation: iconPulse 1.2s infinite alternate;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* عنوان النموذج - تصميم جديد */
.model-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--card-transition);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.model-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.model-card:hover h3 {
    color: var(--accent-color);
}

.model-card:hover h3::after {
    width: 60px;
}

.model-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* ميزات النموذج - تصميم جديد */
.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

.model-features li {
    padding: 4px 0 4px 22px;
    position: relative;
    color: var(--light-text-color);
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.model-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent-color);
    opacity: 0.7;
    transition: var(--transition-fast);
    background: rgba(var(--accent-rgb), 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.model-card:hover .model-features li {
    color: var(--text-color);
    transform: translateX(3px);
}

.model-card:hover .model-features li:before {
    opacity: 1;
    background: var(--accent-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.model-card .btn {
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
    padding: 10px 20px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
    transform: translateY(-2px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--accent-rgb),0.1), rgba(var(--accent-rgb),0.2), rgba(var(--accent-rgb),0.1));
    z-index: -1;
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.pulse {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

/* قسم عملية الشراكة - تصميم جديد */
.partnership-process {
    padding: calc(var(--section-spacing) * 0.8) 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f5f8ff 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.03), inset 0 -5px 20px rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(var(--primary-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.05);
}

.partnership-process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--accent-rgb), 0.02) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(20px);
}

.partnership-process::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 180px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* خطوات العملية - تصميم جديد */
.process-steps.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* تأثيرات الظهور عند التمرير */
.staggered-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.staggered-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* خطوة العملية - تصميم جديد */
.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg-gradient);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--card-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: var(--card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.step:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.step:hover::before {
    transform: scale(1);
}

/* رقم الخطوة - تصميم جديد */
.step-number {
    width: 50px;
    height: 50px;
    background: var(--partnership-gradient);
    color: var(--white-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: var(--card-transition);
    position: relative;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 23px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.step:hover .step-number::before {
    opacity: 1;
    animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* محتوى الخطوة - تصميم جديد */
.step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--card-transition);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.step:hover .step-content h3 {
    color: var(--accent-color);
}

.step:hover .step-content h3::after {
    width: 60px;
}

.step-content p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 0;
}

/* قسم عرض الشراكة التفاعلي - تصميم جديد */
.partnership-showcase {
    padding: calc(var(--section-spacing) * 0.5) 0;
    background: linear-gradient(135deg, var(--dark-bg-color) 0%, #1a2035 70%, #0a1025 100%);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.partnership-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 1;
}

/* خلفية الجسيمات - تصميم جديد */
.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 1;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

.particle:nth-child(even) {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--accent-rgb), 0.2));
    width: 6px;
    height: 6px;
    animation-duration: 18s;
    animation-delay: 1s;
}

.particle:nth-child(3n) {
    background-color: rgba(var(--accent-rgb), 0.2);
    width: 3px;
    height: 3px;
    animation-duration: 12s;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(0) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(-30px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* محتوى العرض - تصميم جديد */
.showcase-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* العنصر المرئي - تصميم جديد */
.showcase-visual {
    position: relative;
    min-height: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.visual-element {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), inset 0 2px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    animation: fadeIn 1.2s forwards;
    opacity: 0;
    width: 160px;
    height: 160px;
    overflow: hidden;
}

.visual-element:nth-child(1) {
    animation-delay: 0.2s;
}

.visual-element:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(var(--accent-rgb), 0.3);
    border-color: rgba(var(--accent-rgb), 0.5);
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0.2) 100%);
}

.visual-element i {
    font-size: 36px;
    color: var(--accent-color);
    background: rgba(var(--accent-rgb), 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s ease;
    margin-bottom: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.visual-element:hover i {
    transform: rotate(360deg) scale(1.1);
    background: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.visual-text {
    font-size: 0.9rem;
    text-align: center;
    color: var(--white-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.visual-text strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ميزات العرض - تصميم جديد */
.showcase-features {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 20px 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
    border-color: rgba(var(--accent-rgb), 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3) 0%, rgba(var(--accent-rgb), 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--partnership-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-icon i {
    font-size: 28px;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-item:hover .feature-icon i {
    color: var(--white-color);
    transform: rotate(360deg);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.feature-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--partnership-gradient);
    transition: width 0.3s ease;
}

.feature-item:hover .feature-content h4::after {
    width: 50px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}

/* قسم نموذج الشراكة - تصميم جديد */
.partnership-form {
    padding: calc(var(--section-spacing) * 0.5) 0;
    background: linear-gradient(to bottom, #ffffff, #f8f6f0);
    position: relative;
    overflow: hidden;
}

.partnership-form::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.02) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.partnership-form::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.02) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* حاوية النموذج - تصميم جديد */
.form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg-gradient);
    padding: 30px 40px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--partnership-gradient);
    z-index: 2;
}

/* رأس النموذج - تصميم جديد */
.form-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--partnership-gradient);
    border-radius: 2px;
}

.form-header p {
    color: var(--light-text-color);
    font-size: 0.9rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.4;
}

/* نموذج الاتصال - تصميم جديد */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group.full-width {
    grid-column: span 3;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--partnership-gradient);
    transition: width 0.3s ease;
}

.form-group:hover label {
    color: var(--accent-color);
}

.form-group:hover label::after {
    width: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 10px;
    background-color: rgba(var(--primary-rgb), 0.02);
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(var(--accent-rgb), 0.5);
    outline: none;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.1);
    background-color: rgba(var(--primary-rgb), 0.01);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}

.form-group .btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 250px;
}

.form-message {
    grid-column: span 2;
    padding: 15px;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
    display: block;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
    display: block;
}

/* قسم الأسئلة الشائعة - تصميم جديد */
.faq-section {
    padding: calc(var(--section-spacing) * 0.5) 0;
    background: linear-gradient(to bottom, #f8f9ff, #ffffff);
    position: relative;
    overflow: hidden;
}

.partnership-faq::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.partnership-faq::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* حاوية الأسئلة الشائعة - تصميم جديد */
.faq-list {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* عنصر السؤال - تصميم جديد */
.faq-item {
    margin-bottom: 8px;
    border: var(--card-border);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    background: var(--card-bg-gradient);
    transition: var(--card-transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(var(--accent-rgb), 0.2);
    transform: translateY(-3px);
}

/* سؤال - تصميم جديد */
.faq-question {
    padding: 8px 12px;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--card-transition);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(var(--primary-rgb), 0.02);
    color: var(--accent-color);
}

.faq-question:hover::before,
.faq-question.active::before {
    opacity: 1;
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(var(--accent-rgb), 0.1);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 0.7rem;
}

.faq-question.active {
    color: var(--accent-color);
    background-color: rgba(var(--primary-rgb), 0.02);
}

.faq-question.active i {
    transform: rotate(180deg);
    background: var(--accent-color);
    color: var(--white-color);
}

/* إجابة السؤال - تصميم جديد */
.faq-answer {
    padding: 10px 15px;
    background-color: var(--white-color);
    border-top: 1px solid rgba(var(--primary-rgb), 0.05);
    font-size: 0.8rem;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* تأثيرات الحركة */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* قسم التذييل - تصميم جديد */
.partnership-footer {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--dark-bg-color) 0%, #0a2a4d 100%);
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern-dot.svg');
    background-size: 20px;
    opacity: 0.05;
    z-index: 1;
}

/* محتوى التذييل - تصميم جديد */
.footer-content {
    position: relative;
    z-index: 2;
}

.footer-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #a3c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    text-shadow: var(--text-shadow);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* أزرار الدعوة للعمل في التذييل - تصميم جديد */
.footer-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-cta .cta-button {
    margin-top: 0;
    min-width: 200px;
}

.footer-cta .cta-button.secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-cta .cta-button.secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* تصميم متجاوب */
@media (max-width: 1200px) {
    :root {
        --section-spacing: 80px;
    }
    
    .models-grid,
    .process-steps.features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-spacing: 70px;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .showcase-visual {
        order: -1;
        margin-bottom: 30px;
    }
    
    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .section-header h2,
    .form-header h2,
    .footer-content h2 {
        font-size: 2.2rem;
    }
    
    .models-grid,
    .process-steps.features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-spacing: 50px;
    }
    
    .page-title {
        padding: 100px 0 50px;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2,
    .form-header h2,
    .footer-content h2 {
        font-size: 1.8rem;
    }
    
    .model-card,
    .step,
    .feature-item {
        padding: 25px 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}