/* --- استایل‌های صفحه همکاری (آنیل) --- */

/* متغیرهای رنگی */
:root {
    --anil-color: #4A5A8D;
    --anil-dark: #21417C;
    --anil-soft: #eef1f8;
    --gray-soft: #f8f9fa;
}

/* کلاس‌های کمکی رنگ */
.text-anil { color: var(--anil-color) !important; }
.bg-anil { background-color: var(--anil-color) !important; }
.bg-blue-soft { background-color: var(--anil-soft) !important; }
.bg-gray-soft { background-color: var(--gray-soft) !important; }

/* جداکننده خطی */
.separator-line {
    width: 60px;
    height: 4px;
    background: var(--anil-color);
    border-radius: 10px;
}

/* کارت مزایا */
.benefit-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift-anil:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 90, 141, 0.15) !important;
    border-color: var(--anil-color) !important;
}

/* کارت نوع همکاری */
.collab-type-card {
    transition: all 0.3s ease;
    border-color: #eee;
}
.hover-scale:hover {
    transform: scale(1.02);
    border-color: var(--anil-color) !important;
    box-shadow: 0 10px 25px rgba(74, 90, 141, 0.1);
}

/* آیکون دایره‌ای و مربعی */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* دکمه‌ها */
.btn-anil {
    background-color: var(--anil-color);
    color: #fff;
    border: none;
    transition: all 0.3s;
}
.btn-anil:hover {
    background-color: var(--anil-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 90, 141, 0.3);
}

.btn-outline-anil {
    color: var(--anil-color);
    border: 2px solid var(--anil-color);
    background: transparent;
    transition: all 0.3s;
}
.btn-outline-anil:hover {
    background-color: var(--anil-color);
    color: #fff;
}

/* انیمیشن‌ها */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* عمومی */
.lh-lg { line-height: 2.2 !important; }
.text-justify { text-align: justify; }
.font-en { font-family: sans-serif; direction: ltr; }
.opacity-10 { opacity: 0.1; }
.z-1 { z-index: 1; }
.rounded-5 { border-radius: 2rem !important; }

/* --- استایل‌های تکمیلی صفحه همکاری --- */

/* استایل کارت‌های مراحل */
.step-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: #e9ecef; /* رنگ خاکستری خیلی روشن برای عدد پس‌زمینه */
    z-index: 0;
    opacity: 0.6;
    line-height: 1;
}

/* رنگ متن خاکستری روشن */
.text-light-gray { color: #e9ecef !important; }

/* سایر استایل‌های کارت و هاور */
.hover-lift-anil:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 90, 141, 0.15) !important;
    border-color: var(--anil-color) !important;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.z-1 { z-index: 1; }

/* استایل‌های قبلی آنیل */
:root {
    --anil-color: #4A5A8D;
    --anil-dark: #21417C;
    --anil-soft: #eef1f8;
    --gray-soft: #f8f9fa;
}
.text-anil { color: var(--anil-color) !important; }
.bg-anil { background-color: var(--anil-color) !important; }
.bg-blue-soft { background-color: var(--anil-soft) !important; }
.bg-gray-soft { background-color: var(--gray-soft) !important; }
.btn-anil { background-color: var(--anil-color); color: #fff; border: none; transition: all 0.3s; }
.btn-anil:hover { background-color: var(--anil-dark); color: #fff; transform: translateY(-3px); }
.btn-outline-anil { color: var(--anil-color); border: 2px solid var(--anil-color); background: transparent; transition: all 0.3s; }
.btn-outline-anil:hover { background-color: var(--anil-color); color: #fff; }
.rounded-5 { border-radius: 2rem !important; }
.lh-lg { line-height: 2.2 !important; }
.text-justify { text-align: justify; }