.faq-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* 2 kolon düzeni */
    gap: 4rem;
    align-items: start;
}

.faq-header {
    text-align: left;
    position: sticky;
    /* Kaydırırken solda kalsın */
    top: 100px;
}

.faq-header .section-description {
    margin-bottom: 2.5rem;
}

/* Compact Contact Form */
.faq-contact-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 0.75rem;
}

.message-group {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.faq-contact-form input,
.faq-contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    /* 12px -> 8px */
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    color: var(--text-color);
}

.faq-contact-form textarea {
    padding-right: 50px;
    /* Buton için yer ayır */
    resize: none;
    min-height: 100px;
    /* Yükseklik biraz artırıldı */
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.faq-contact-form textarea::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.faq-contact-form input:focus,
.faq-contact-form textarea:focus {
    border-color: #ddd;
    background: #fff;
}

.btn-submit-inline {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    /* 10px -> 8px */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-inline:hover {
    transform: scale(1.05);
    background: #222;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
    }
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    /* 12px -> 8px */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e0e0e0;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #999;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Active State */
.faq-item.active {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Tahmini maksimum yükseklik */
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-header {
        position: static;
        text-align: left;
    }

    .faq-header .section-description {
        margin: 0 0 2rem 0;
    }

    .form-title {
        text-align: left;
    }
}

@media (max-width: 768px) {

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question span {
        font-size: 1rem;
    }
}