/* --- استایل‌های صفحه خرید چکی (آنیل) --- */

/* 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; }
.text-light-gray { color: #e9ecef !important; } /* برای شماره پس‌زمینه */
.border-anil { border-color: var(--anil-color) !important; }

/* 2. کارت‌های مراحل (Step Cards) */
.step-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: #f3f3f3; /* رنگ خاکستری خیلی روشن برای عدد */
    z-index: 0;
    opacity: 0.6;
    line-height: 1;
    font-family: sans-serif;
}

/* 3. افکت‌های هاور */
.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;
}

.hover-lift-anil:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--anil-color) !important;
    color: #fff !important;
}

/* 4. آیکون‌ها */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* 5. دکمه‌ها */
.btn-light {
    background-color: #fff;
    color: var(--anil-color);
    border: 1px solid transparent;
    transition: all 0.3s;
}
.btn-light:hover {
    background-color: var(--anil-soft);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline-light {
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    transition: all 0.3s;
}
.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* 6. انیمیشن‌ها */
.pulse-anil {
    animation: pulse-blue 2s infinite;
}
@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(74, 90, 141, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(74, 90, 141, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 90, 141, 0); }
}

/* 7. تنظیمات عمومی */
.lh-lg { line-height: 2.2 !important; }
.text-justify { text-align: justify; }
.rounded-5 { border-radius: 2rem !important; }
.rounded-4 { border-radius: 1.5rem !important; }
.fs-7 { font-size: 0.9rem; }
.z-1 { z-index: 1; }
.opacity-10 { opacity: 0.1; }