/* Müşteri Yorumları Bölümü */
.reviews-section {
    padding: 4rem 0;
    background-color: var(--background-light);
    text-align: center;
    overflow: hidden;
}

.reviews-section h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.reviews-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 20px 0;
    will-change: transform;
}

.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
    opacity: 0.8;
}

.review-btn:hover {
    background-color: var(--accent-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.prev-review {
    left: 10px;
}

.next-review {
    right: 10px;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}
.review-content {
    text-align: center;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.review-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}


.rating {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.rating i {
    margin: 0 2px;
    font-size: 0.9rem;
}

@media screen and (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
    .reviews-section {
        padding: 2rem 0;
    }
    .reviews-section h2 {
        margin-bottom: 2.5rem;
        font-size: 2rem;
    }
}
@media screen and (max-width: 768px) {
    .reviews-section h2 {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
    .reviews-section {
        padding: 1.5rem 0;
    }
}


@media screen and (max-width: 576px) {
    .review-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }

    .reviews-slider {
        padding: 0 10px;
    }

    .review-btn {
        width: 35px;
        height: 35px;
    }
    .reviews-section {
        padding: 1rem 0;
    }
}

.reviews-section > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}