/* FAQ Section */
.faq-section {
    padding: 20px 0 80px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1000px;
    /* Diğer bölümlerle uyumlu */
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Sol Taraf - Görsel */
.faq-image-container {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faq-image-container:hover img {
    transform: scale(1.05);
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/connected.png');
    /* Hexagon pattern benzeri */
    opacity: 0.3;
    pointer-events: none;
}

.faq-icon-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #E62020;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(230, 32, 32, 0.4);
    z-index: 2;
}

.faq-icon-badge i {
    color: white;
    font-size: 1.5rem;
}

/* Sağ Taraf - Accordion */
.faq-content {
    padding-top: 20px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9f9f9;
    color: #E62020;
}

.accordion-header.active {
    color: #E62020;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion-body-content {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-image-container {
        height: 300px;
        order: -1;
        /* Mobilde görsel üstte kalsın */
    }
}