@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* { font-family: 'Inter', sans-serif; }

.hero-gradient {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.card-shadow {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.input-focus:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}

.result-card {
    background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
    border: 2px solid #2563eb;
}

.fade-in {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.step-badge {
    width: 32px; height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}

/* Wizard */
.step-dot {
    width: 28px; height: 28px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.step-dot.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
}
.step-dot.done {
    background: #16a34a;
    color: white;
}

/* Seçili butonlar */
.brand-btn.selected,
.model-btn.selected,
.year-btn.selected,
.km-quick.selected {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
}

.option-btn.selected,
.paint-btn.selected {
    border-color: #2563eb !important;
    background: #eff6ff;
    color: #1d4ed8;
}

.btn-next {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transition: all 0.2s;
}
.btn-next:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}
