/* Konsinye Araç Alım Sayfası */

.header {
    background: #000 !important;
    box-shadow: none;
    border-bottom: 1px solid #1a1a1a;
}
.header .nav-link { color: #909090; }
.header .nav-link:hover,
.header .nav-link.active { color: #fff; }
.header .nav-link.active::after { background: #fff; }

.konsinye-hero {
    background: linear-gradient(135deg, #171717 0%, #0a0a0a 100%);
    color: white;
    padding: 120px 24px 72px;
    text-align: center;
}

.konsinye-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.konsinye-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.konsinye-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
}

.konsinye-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.konsinye-hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.konsinye-form-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.konsinye-form-intro {
    text-align: center;
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 1.25rem;
}

.konsinye-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.konsinye-form-grid .form-group-full {
    grid-column: 1 / -1;
}

.konsinye-form-card .form-group label {
    font-size: 0.85rem;
    color: #374151;
    display: block;
    margin-bottom: 0.35rem;
}

.konsinye-form-card .form-group input,
.konsinye-form-card .form-group select,
.konsinye-form-card .form-group textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
}

.konsinye-form-card .form-group input:focus,
.konsinye-form-card .form-group select:focus,
.konsinye-form-card .form-group textarea:focus {
    border-color: #171717;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.konsinye-form-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.konsinye-form-card .btn-primary {
    background: #171717;
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.konsinye-form-card .btn-primary:hover {
    background: #000;
}

.konsinye-form-card .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.konsinye-section {
    padding: 56px 24px;
}

.konsinye-section.alt {
    background: #f8fafc;
}

.konsinye-section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.konsinye-section-desc {
    text-align: center;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.konsinye-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.konsinye-benefit {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.konsinye-section.alt .konsinye-benefit {
    background: white;
}

.konsinye-benefit i {
    font-size: 1.75rem;
    color: #171717;
    margin-bottom: 0.75rem;
}

.konsinye-benefit h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.konsinye-benefit p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

.konsinye-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

.konsinye-step {
    flex: 1 1 0;
    min-width: 140px;
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.konsinye-section.alt .konsinye-step {
    background: white;
}

.konsinye-step-num {
    width: 36px;
    height: 36px;
    background: #171717;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 0.75rem;
}

.konsinye-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.konsinye-step p {
    font-size: 0.85rem;
    color: #64748b;
}

.konsinye-step-arrow {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.konsinye-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.konsinye-faq-item {
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #171717;
}

.konsinye-section.alt .konsinye-faq-item {
    background: white;
}

.konsinye-faq-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.konsinye-faq-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.konsinye-cta {
    padding: 48px 24px;
    background: #171717;
    text-align: center;
    color: white;
}

.konsinye-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.konsinye-cta p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.konsinye-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: white;
    color: #171717;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.required { color: #ef4444; }

body .footer,
body .footer .footer-bottom,
body .footer .footer-content,
body .footer .footer-section,
body .footer .footer-bottom-content {
    background: #050505 !important;
    border-color: #1a1a1a !important;
}
body .footer .footer-section p,
body .footer .footer-section ul li a,
body .footer .footer-bottom-content p {
    color: #a1a1aa !important;
}
body .footer .footer-section h4 {
    color: #fff !important;
}

@media (max-width: 900px) {
    .konsinye-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .konsinye-hero {
        padding: 110px 16px 56px;
    }
    .konsinye-hero-title {
        font-size: 1.75rem;
    }
    .konsinye-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    .konsinye-form-grid {
        grid-template-columns: 1fr;
    }
    .konsinye-steps {
        flex-direction: column;
    }
    .konsinye-step-arrow {
        transform: rotate(90deg);
    }
    .konsinye-faq-grid {
        grid-template-columns: 1fr;
    }
    .konsinye-benefits {
        grid-template-columns: 1fr;
    }
}
