﻿/* Hero Theme Override - Purple/Violet for Parmak İzi */
.kamera-hero-bg {
    background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(139, 92, 246, 0.15), transparent 50%), linear-gradient(180deg, #0f172a 0%, #4c1d95 50%, #0f172a 100%);
}

    .kamera-hero-bg::before {
        background-image: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 1px, transparent 1px), radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.08) 1px, transparent 1px);
    }

.kamera-hero-badge {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
}

.kamera-hero-title .title-gradient {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kamera-hero .breadcrumb a:hover,
.kamera-hero .breadcrumb .current {
    color: #a78bfa;
}

.kamera-cta {
    background: linear-gradient(135deg, #4c1d95 0%, #0f172a 100%);
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

    .faq-accordion .faq-item {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .faq-accordion .faq-item:hover {
            border-color: #8b5cf6;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
        }

        .faq-accordion .faq-item.active {
            border-color: #8b5cf6;
            background: #fff;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
        }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
}

    .faq-question:hover {
        color: #8b5cf6;
    }

    .faq-question span {
        flex: 1;
    }

.faq-icon {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
}

    .brand-item:hover {
        border-color: #8b5cf6;
        background: #f5f3ff;
        color: #7c3aed;
    }
