/* --- استایل‌های صفحه ضمانت بازگشت (آنیل) --- */

/* 1. متغیرهای رنگی (جهت یادآوری) */
:root {
    --anil-color: #4A5A8D;
    --anil-dark: #21417C;
    --anil-soft: #eef1f8;
    --gray-soft: #f8f9fa;
    --warning-bg: #fff4ed;
    --warning-text: #f56614;
}

/* 2. المان‌های هدر */
.hero-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 50%;
    background-color: var(--anil-soft);
    color: var(--anil-color);
    font-size: 3.5rem;
}

.hero-separator {
    width: 70px;
    height: 4px;
    background-color: var(--anil-color);
    margin: 0 auto 20px;
    border-radius: 10px;
}

/* 3. کارت‌های بازگشت */
.return-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background-color: var(--anil-soft);
    color: var(--anil-color);
}

.hover-lift-anil:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 90, 141, 0.15) !important;
    border: 1px solid var(--anil-color) !important; /* افزودن بوردر رنگی در هاور */
}

.hover-lift-anil:hover .card-icon-circle {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--anil-color);
    color: #fff;
}

/* بج هشدار (Warning Badge) */
.warning-badge {
    display: inline-block;
    background-color: var(--warning-bg);
    color: var(--warning-text);
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid #ffeeba;
}

/* 4. باکس تماس (CTA) */
.cta-box-anil {
    border: 2px dashed var(--anil-color);
}

.cta-box-anil .bg-icon {
    position: absolute;
    color: var(--anil-color);
    opacity: 0.1;
    font-size: 12rem;
    right: -30px;
    bottom: -40px;
    pointer-events: none;
}

/* 5. دکمه‌ها */
.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);
}

/* 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. تنظیمات عمومی */
.bg-blue-soft { background-color: var(--anil-soft) !important; }
.bg-gray-soft { background-color: var(--gray-soft) !important; }
.text-anil { color: var(--anil-color) !important; }
.rounded-5 { border-radius: 2rem !important; }
.lh-lg { line-height: 2.2 !important; }
.text-justify { text-align: justify; }
.z-1 { z-index: 1; }

/* --- استایل‌های تکمیلی صفحه بازگشت --- */

/* سایز دایره‌های مراحل */
.width-80 { width: 80px; }
.height-80 { height: 80px; }

/* استایل هشدار داخل کارت */
.bg-warning { background-color: #ffc107 !important; }
.bg-opacity-10 { --bs-bg-opacity: 0.1; }

/* (سایر استایل‌ها مشابه فایل‌های قبلی است و اگر اضافه کردید نیازی به تکرار نیست) */