/**
 * ==========================================================================
 * سامانه استرداد - استایل‌های اصلی
 * ==========================================================================
 */

@import "../fonts/font.css";

/* ==========================================================================
   1. متغیرها (Variables)
   ========================================================================== */

:root {
    /* رنگ‌های اصلی */
    --primary-dark: #1a365d;
    --primary: #2c5282;
    --primary-light: #3182ce;

    /* رنگ‌های تأکیدی */
    --accent: #c6a44a;
    --accent-light: #d4af37;

    /* رنگ‌های متن */
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;

    /* رنگ‌های پس‌زمینه */
    --bg-light: #f7fafc;
    --bg-cream: #fdfcf9;
    --white: #ffffff;

    /* رنگ‌های وضعیت */
    --success: #276749;
    --danger: #c53030;
    --border: #e2e8f0;

    /* سایه‌ها */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 6px 20px rgba(44, 82, 130, 0.35);

    /* انتقال‌ها */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.3s ease;

    /* فاصله‌ها */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;

    /* گردی */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;
}

/* ==========================================================================
   2. استایل‌های پایه (Base Styles)
   ========================================================================== */

body {
    font-family: kalamehRegular, Tahoma, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

::placeholder,
::-webkit-input-placeholder {
    font-family: inherit;
    color: var(--text-light);
}

a {
    text-decoration: none !important;
    color: inherit !important;
    transition: color var(--transition-fast);
}

/* ==========================================================================
   3. کلاس‌های کمکی (Utility Classes)
   ========================================================================== */

/* موقعیت‌دهی */
.text-center { text-align: center !important; }
.m-auto { margin: auto !important; }

.center-center,
#container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.v-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.h-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center {
    display: block;
    margin-inline: auto;
    width: 50%;
}

/* فونت‌ها */
.kalamehLight { font-family: kalamehLight, Tahoma, sans-serif; }
.kalamehRegular { font-family: kalamehRegular, Tahoma, sans-serif; }
.kalamehSemiBold { font-family: kalamehSemiBold, Tahoma, sans-serif; }
.kalamehBold { font-family: kalamehBold, Tahoma, sans-serif; }
.kalamehExtraBold { font-family: kalamehExtraBold, Tahoma, sans-serif; }

/* متن‌های الزامی */
.required::after {
    content: "*";
    padding-right: 2px;
    color: var(--danger);
    font-weight: 600;
}

/* متن هایلایت */
.highlight {
    background: linear-gradient(120deg, rgba(198, 164, 74, 0.2), rgba(198, 164, 74, 0.2));
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

/* ==========================================================================
   4. کامپوننت‌های مشترک (Shared Components)
   ========================================================================== */

/* --- هدر صفحات --- */
.page-header,
.form-header {
    background: var(--primary-dark);
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.page-header {
    padding: 50px 0 40px;
}

.form-header {
    padding: 35px 0;
    margin-bottom: var(--spacing-xl);
}

.page-header h1,
.form-header h1 {
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.form-header h1 {
    font-size: 1.8rem;
}

.page-header .subtitle {
    color: var(--accent-light);
    font-size: 1.15rem;
    font-weight: 600;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: var(--spacing-sm) 0 0;
    font-size: 0.95rem;
}

/* --- محتوای اصلی --- */
.main-content,
.form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.main-content {
    padding: var(--spacing-xl) var(--spacing-md) 60px;
}

/* --- کارت‌ها و باکس‌ها --- */
.intro-section,
.rules-section,
.cta-section,
.section-card,
.submit-section {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.intro-section {
    padding: var(--spacing-lg) 35px;
    margin-bottom: var(--spacing-lg);
    border-right: 4px solid var(--primary);
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 2.1;
    text-align: justify;
    margin: 0;
}

/* --- عنوان بخش‌ها --- */
.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent);
    border-radius: 2px;
}

/* ==========================================================================
   5. صفحه اصلی (Home Page)
   ========================================================================== */

/* --- لیست قوانین --- */
.rules-section {
    padding: var(--spacing-lg) 35px;
    margin-bottom: var(--spacing-lg);
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    position: relative;
    padding: 18px 45px 18px 10px;
    font-size: 1rem;
    line-height: 2;
    text-align: justify;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-fast);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li:hover {
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

/* نشانگر لیست */
.rules-list li::before,
.rules-list li::after {
    content: '';
    position: absolute;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.rules-list li::before {
    right: 0;
    top: 24px;
    width: 28px;
    height: 28px;
    background: var(--bg-light);
    border: 2px solid var(--primary);
}

.rules-list li::after {
    right: 10px;
    top: 34px;
    width: 8px;
    height: 8px;
    background: var(--primary);
}

.rules-list li:hover::before {
    border-color: var(--danger);
    margin-right: 5px;
}

.rules-list li:hover::after {
    background: var(--danger);
    margin-right: 5px;
}

.rules-list li.success-item::before { border-color: var(--success); }
.rules-list li.success-item::after { background: var(--success); }

/* --- بخش مراحل --- */
.steps-section {
    background: var(--primary-dark);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg) 35px;
    margin-bottom: var(--spacing-lg);
}

.steps-section .section-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
}

.steps-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-num {
    min-width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* --- بخش CTA --- */
.cta-section {
    background: rgba(255, 255, 255, 0.92);
    padding: var(--spacing-lg) 50px;
    text-align: center;
    border-top: 7px solid var(--accent);
}

.cta-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================================================
   6. دکمه‌ها (Buttons)
   ========================================================================== */

.btn-register,
.btn-submit,
.btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-register {
    background: var(--primary);
    color: var(--white) !important;
    font-size: 1rem;
    padding: 16px 50px;
    border: none;
    box-shadow: 3px 3px var(--accent);
}

.btn-register:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-register svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 50px;
    border: none;
    margin-left: 15px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 164, 74, 0.4);
}

.btn-cancel {
    background: transparent;
    color: var(--text-medium);
    font-size: 1rem;
    padding: 16px 35px;
    border: 2px solid var(--border);
}

.btn-cancel:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* ==========================================================================
   7. فرم‌ها (Forms)
   ========================================================================== */

.page-wrapper {
    background: var(--bg-light);
    min-height: 100vh;
    padding-bottom: 60px;
}

/* --- Progress Steps --- */
.progress-steps {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.step-circle {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1rem;
    transition: all var(--transition-slow);
}

.step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.completed .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    display: none;
}

.step.active .step-label {
    color: var(--primary-dark);
}

.step-line {
    width: 80px;
    height: 3px;
    background: var(--border);
    margin: 0 5px;
}

/* --- Alert --- */
.alert-errors {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-right: 4px solid var(--danger);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) 25px;
    margin-bottom: var(--spacing-lg);
}

.alert-errors ul {
    margin: 0;
    padding-right: var(--spacing-md);
}

.alert-errors li {
    color: var(--danger);
    margin-bottom: var(--spacing-xs);
    line-height: 1.8;
}

/* --- Section Card --- */
.section-card {
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.section-header h2 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.section-header span {
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: auto;
}

.section-body {
    padding: var(--spacing-lg);
}

/* --- Form Layout --- */
.form-row-custom {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group-custom label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

/* --- Inputs --- */
.input-custom {
    width: 100%;
    padding: 14px 18px !important;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: all var(--transition-fast);
}

.input-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(44, 82, 130, 0.1);
}

.input-custom.border-red { border-color: var(--danger); }
.input-custom.border-green { border-color: var(--success); }

textarea.input-custom {
    resize: vertical;
    min-height: 100px;
}

select.input-custom {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 40px;
}

/* --- Date Select --- */
.date-select-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-select-group select {
    flex: 1;
}

.date-select-group .separator {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 300;
}

/* --- Radio Buttons --- */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-group.inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.radio-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: 12px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    transition: all var(--transition-fast);
}

.radio-item:hover {
    border-color: var(--primary-light);
    background: var(--white);
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.radio-item.selected {
    border-color: var(--primary);
    background: rgba(44, 82, 130, 0.05);
}

.radio-group.inline .radio-item {
    padding: 10px 20px;
}

/* --- Question Box --- */
.question-box {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border);
}

.question-box:last-child {
    margin-bottom: 0;
}

.question-box .question-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.question-box .question-number {
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Submit Section --- */
.submit-section {
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    margin-top: var(--spacing-sm);
}

.submit-section p {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* --- Helper Text --- */
.helper-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* ==========================================================================
   8. Loading Overlay
   ========================================================================== */

#cover-spin {
    position: fixed;
    inset: 0;
    background-color: rgba(26, 54, 93, 0.9);
    z-index: 9999;
    display: none;
}

.loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loading-content img {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
}

.loading-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ==========================================================================
   9. Responsive
   ========================================================================== */

@media (min-width: 768px) {
    .step-label {
        display: block;
    }

    .step-line {
        width: 100px;
    }

    .form-row-custom {
        grid-template-columns: 1fr 1fr;
    }

    .form-row-custom.single {
        grid-template-columns: 1fr;
    }

    .form-row-custom.triple {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 35px 20px 30px;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .page-header .subtitle {
        font-size: 1rem;
    }

    .main-content {
        padding: 25px 15px 40px;
    }

    .intro-section,
    .rules-section,
    .steps-section,
    .cta-section {
        padding: 22px 20px;
    }

    .rules-list li {
        padding-right: 40px;
        font-size: 0.95rem;
    }

    .btn-register {
        width: 100%;
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .form-header h1 {
        font-size: 1.4rem;
    }

    .section-body {
        padding: var(--spacing-md);
    }

    .section-header {
        padding: 15px 20px;
    }

    .section-header h2 {
        font-size: 1rem;
    }

    .btn-submit,
    .btn-cancel {
        width: 100%;
        margin: 5px 0;
    }

    .submit-section {
        padding: 25px 20px;
    }
}

/* Decorative Circles */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Container */
.success-page .container {
    position: relative;
    z-index: 1;
}

/* Cards Base */
.card {
    border: none;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Success Card */
.success-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Success Icon */
.success-icon-wrapper {
    position: relative;
    display: inline-block;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c851, #007E33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.4);
}

.success-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 200, 81, 0.3);
    animation: ripple 2s ease-out infinite;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Tracking Box */
.tracking-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 16px;
    padding: 25px 20px;
    position: relative;
}

.tracking-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 4px 14px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
}

.tracking-code {
    font-size: 36px;
    letter-spacing: 6px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copy-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    color: #667eea;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

/* Offer Card */
.offer-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Ribbon */
.offer-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, #f5af19, #f12711);
    color: #fff;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 175, 25, 0.4);
}

.offer-icon {
    font-size: 50px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Feature Boxes */
.feature-box {
    padding: 20px 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-success {
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.1), rgba(0, 126, 51, 0.1));
    border: 1px solid rgba(0, 200, 81, 0.2);
}

.feature-success:hover {
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.2), rgba(0, 126, 51, 0.2));
    transform: scale(1.05);
}

.feature-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(0, 123, 255, 0.1));
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.feature-info:hover {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.2), rgba(0, 123, 255, 0.2));
    transform: scale(1.05);
}

.feature-box .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.feature-success .feature-icon {
    background: linear-gradient(135deg, #00c851, #007E33);
    color: #fff;
}

.feature-info .feature-icon {
    background: linear-gradient(135deg, #17a2b8, #007bff);
    color: #fff;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px dashed #dee2e6;
}

.divider span {
    padding: 0 15px;
    color: #6c757d;
    font-size: 13px;
}

/* Contact Buttons */
.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact .btn-icon {
    font-size: 24px;
}

.btn-contact .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.btn-contact .btn-text small {
    font-size: 11px;
    opacity: 0.8;
}

.btn-contact-secondary {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

.btn-contact-secondary:hover {
    background: #e9ecef;
    color: #212529;
    transform: translateY(-2px);
}

.btn-contact-primary {
    background: linear-gradient(135deg, #00c851, #007E33);
    border: none;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 200, 81, 0.3);
}

.btn-contact-primary:hover {
    background: linear-gradient(135deg, #00b848, #006e2c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.4);
}

/* Back Button */
.btn-back {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .tracking-code {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
    }

    .success-ripple {
        width: 70px;
        height: 70px;
    }

    .offer-icon {
        font-size: 40px;
    }

    .circle-1, .circle-2, .circle-3 {
        display: none;
    }
}


