.reviews-section {
    padding: var(--section-padding);
    background-color: #000;
    overflow: hidden;
}

/* Header Styles */
.reviews-header-top {
    margin-bottom: 3rem;
}

.reviews-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 1.5rem;
}

.reviews-section .section-title {
    margin-bottom: 0;
}

.reviews-section .section-description {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .reviews-title-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

/* Marquee Wrapper */
.marquee-w {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 1rem 0;
    /* Boşluk azaltıldı */
}

/* Faded Edges Gradient */
.marquee-w::before,
.marquee-w::after {
    content: "";
    position: absolute;
    top: 1rem;
    /* Padding offset */
    bottom: 1rem;
    /* Padding offset */
    width: 250px;
    z-index: 2;
    pointer-events: none;
}

.marquee-w::before {
    left: 0;
    background: linear-gradient(to right, var(--section-bg, #000) 0%, transparent 100%);
}

.marquee-w::after {
    right: 0;
    background: linear-gradient(to left, var(--section-bg, #000) 0%, transparent 100%);
}

/* Marquee Content */
.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    padding-left: 2rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* Marquee Durdurma (Hover) */
.marquee-content:hover {
    animation-play-state: paused;
}


/* Review Card Styles */
.review-item {
    flex-shrink: 0;
    width: 380px;
    background: var(--card-bg, #161616);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.review-quote {
    font-size: 1.5rem;
    color: var(--primary-color, #667eea);
    opacity: 0.5;
}

.review-text {
    color: #aaa;
    line-height: 1.7;
    font-size: 1.05rem;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-color, #667eea);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.review-title {
    color: #666;
    font-size: 0.85rem;
}

/* Actions */
.reviews-actions {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.add-review-btn {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-review-btn:hover {
    border-color: var(--primary-color);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .review-item {
        width: 300px;
        padding: 1.5rem;
    }

    .marquee-w::before,
    .marquee-w::after {
        width: 100px;
    }

    .reviews-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .review-name {
        font-size: 0.9rem;
    }
}