/* Category Page Enhancements - Dark Theme Compatible */
/* Tüm bölümler koyu arka plan üzerine tasarlandı */

/* ===== MODEL SHOWCASE GRID ===== */
.model-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 122, 26, 0.3);
}

.model-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(255, 92, 0, 0.4);
}

.model-content {
    padding: 25px;
}

.model-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff !important;
    font-weight: 700;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.model-features li i {
    color: #1ec28f;
    font-size: 0.8rem;
}

.btn-model-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: rgba(255, 122, 26, 0.15);
    color: #ff7a1a;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
    border: 1px solid rgba(255, 122, 26, 0.3);
}

.btn-model-detail:hover {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    color: #fff;
    border-color: transparent;
}

/* ===== SPECS GRID ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spec-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 122, 26, 0.3);
}

.spec-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 16px rgba(255, 92, 0, 0.3);
}

.spec-info h3 {
    font-size: 1.2rem;
    color: #fff !important;
    margin-bottom: 8px;
    font-weight: 700;
}

.spec-info p {
    color: #94a3b8 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== TIMELINE PROCESS ===== */
.cat-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.cat-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(255, 122, 26, 0.2);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .cat-timeline::before {
        display: block;
    }
}

.timeline-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 4px solid #ff7a1a;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff7a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    color: #fff;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff !important;
}

.step-content p {
    font-size: 0.95rem;
    color: #94a3b8 !important;
    line-height: 1.5;
}

/* ===== FAQ ACCORDION ===== */
.cat-faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 15px;
}

.cat-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cat-faq-item:hover {
    border-color: rgba(255, 122, 26, 0.3);
}

.cat-faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff !important;
    transition: all 0.3s ease;
}

.cat-faq-question:hover {
    color: #ff7a1a !important;
    background: rgba(255, 122, 26, 0.05);
}

.cat-faq-question i {
    transition: transform 0.3s ease;
    color: #ff7a1a;
}

.cat-faq-item.active .cat-faq-question {
    color: #ff7a1a !important;
    background: rgba(255, 122, 26, 0.08);
}

.cat-faq-item.active .cat-faq-question i {
    transform: rotate(180deg);
}

.cat-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.cat-faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #94a3b8 !important;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .model-showcase-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .cat-timeline {
        flex-direction: column;
    }

    .timeline-step {
        min-width: 100%;
    }
}
