/* ===== FIX PAGE ===== */

/* Reminder Card */
.fix-reminder {
    padding: 4rem 0 2rem;
}

.reminder-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    padding: 2rem 2.5rem;
}

.reminder-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.reminder-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.reminder-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Fix Services Main Section */
.fix-services-main {
    padding: 4rem 0;
}

.fix-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.fix-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fix-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Side by side layout */
.fix-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Cards */
.fix-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fix-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.refund-card::before {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.ofm-card::before {
    background: linear-gradient(90deg, #fb923c, #f59e0b);
}

.fix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.refund-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
}

.ofm-card:hover {
    border-color: rgba(251, 146, 60, 0.3);
}

/* Badge */
.fix-card-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.fix-card-badge.refund {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #22c55e;
}

.fix-card-badge.ofm {
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
}

/* Card Header */
.fix-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.fix-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.refund-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.ofm-icon {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.fix-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.fix-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Specs Grid */
.fix-specs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.fix-spec {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    font-size: 0.92rem;
    color: #e2e8f0;
}

.fix-spec:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.fix-spec i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.refund-card .fix-spec i {
    color: rgba(34, 197, 94, 0.6);
}

.ofm-card .fix-spec i {
    color: rgba(251, 146, 60, 0.6);
}

.fix-spec strong {
    color: #fff;
}

.fix-spec.denied {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.12);
}

.fix-spec.denied i {
    color: rgba(239, 68, 68, 0.6);
}

/* Commission Block */
.fix-commission {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.refund-commission {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.ofm-commission {
    background: rgba(251, 146, 60, 0.06);
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.commission-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.commission-value {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.refund-commission .commission-value {
    color: #22c55e;
}

.ofm-commission .commission-value {
    color: #fb923c;
}

/* Note & Warning */
.fix-card-note,
.fix-card-warning {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border-radius: 10px;
}

.fix-card-note {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.12);
}

.fix-card-note i {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 0.15rem;
}

.fix-card-note p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.fix-card-warning {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.fix-card-warning i {
    color: #ef4444;
    font-size: 0.95rem;
    margin-top: 0.15rem;
}

.fix-card-warning p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA */
.fix-cta {
    padding: 4rem 0 6rem;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 4rem;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .reminder-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .fix-header h2 {
        font-size: 1.8rem;
    }

    .fix-duo {
        grid-template-columns: 1fr;
    }

    .fix-card {
        padding: 1.5rem;
    }

    .commission-value {
        font-size: 1.4rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}
