/* OKYANUS PRO - Teklif Formu Stilleri */

.teklif-form-wrap {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 2rem;
}

/* ── Adım Göstergesi ── */
.teklif-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--c-gray-pale);
}
.teklif-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    flex: 1;
    max-width: 120px;
}
.teklif-step-line {
    flex: 1;
    height: 2px;
    background: var(--c-gray-pale);
    margin-bottom: 1.2rem;
    max-width: 60px;
    transition: background .3s;
}
.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-gray-pale);
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s;
    border: 2px solid var(--c-border);
}
.step-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-align: center;
    transition: color .3s;
}
.teklif-step.active .step-num {
    background: var(--c-anthracite);
    color: #fff;
    border-color: var(--c-anthracite);
    box-shadow: 0 2px 8px rgba(43,45,53,.25);
}
.teklif-step.active .step-label { color: var(--c-text-primary); font-weight: 700; }
.teklif-step.done .step-num {
    background: var(--c-green);
    color: #fff;
    border-color: var(--c-green);
}
.teklif-step.done .step-label { color: var(--c-green); }
.teklif-step.done + .teklif-step-line { background: var(--c-green); }

/* ── Panel ── */
.teklif-panel { display: none; }
.teklif-panel.active { display: block; }
.teklif-panel-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: .8rem;
    border-bottom: 2px solid var(--c-gray-pale);
    position: relative;
}
.teklif-panel-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 40px; height: 2px;
    background: var(--c-orange);
}

/* ── Kategori Grid ── */
.teklif-kat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: .7rem;
}
.teklif-kat-btn {
    display: grid;
    grid-template-rows: auto auto auto;
    justify-items: center;
    gap: .25rem;
    padding: 1rem .8rem;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    cursor: pointer;
    transition: var(--t-fast);
    text-align: center;
}
.teklif-kat-btn:hover {
    border-color: var(--c-anthracite);
    background: var(--c-gray-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.teklif-kat-btn.selected {
    border-color: var(--c-orange);
    background: var(--c-orange-pale);
    box-shadow: 0 0 0 3px rgba(232,101,10,.12);
}
.tkat-icon { font-size: 1.6rem; line-height: 1; }
.tkat-name { font-size: .82rem; font-weight: 700; color: var(--c-text-primary); }
.tkat-desc { font-size: .7rem; color: var(--c-text-muted); line-height: 1.3; }

/* ── Adet Butonları ── */
.teklif-adet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: .5rem;
    margin-bottom: .5rem;
}
.teklif-adet-btn {
    padding: .65rem .4rem;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    background: var(--c-white);
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-text-body);
    cursor: pointer;
    text-align: center;
    transition: var(--t-fast);
}
.teklif-adet-btn:hover { border-color: var(--c-anthracite); background: var(--c-gray-bg); }
.teklif-adet-btn.selected {
    background: var(--c-anthracite);
    border-color: var(--c-anthracite);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .teklif-kat-grid { grid-template-columns: repeat(3, 1fr); }
    .teklif-adet-grid { grid-template-columns: repeat(3, 1fr); }
    .teklif-form-wrap { padding: 1.2rem; }
}
