/* Reviews Carousel Styles */
.reviews-carousel-section {
    padding: 120px 0;
    background: var(--reviews-slider-bg, #000);
    overflow: hidden;
}
.reviews-carousel-section h2.reviews-title {
    color: var(--reviews-title-color, #fff);
    font-size: 2.5rem;
    text-transform: uppercase;
}

.reviews-carousel-outer {
    width: 100%;
    cursor: grab;
    overflow: hidden;          /* hides extra cards */
    position: relative;
}
.reviews-carousel-inner {
    display: flex;
    gap: 50px;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}
.review-card {
    flex: 0 0 calc(50% - 10px);  /* makes each card take full width minus 80px for margins */
    max-width: 850px;
    margin: 0 auto;               /* left/right margin for spacing */
    background: #1c1c1c00;
    padding: 60px;
    border: 1px solid #111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    height: auto;
    min-height: 300px;
}
.review-card:hover {
    background: var(--reviews-card-hover-bg, #2e2e2e);
    border-color: var(--reviews-card-hover-border, #eb6609);
    transform: translateY(-10px);
}
.review-card-content {
    font-size: var(--review-text-font-size, 1.2rem);
    font-family: var(--review-text-font-family, inherit);
    line-height: 1.8;
    font-style: italic;
    color: var(--reviews-text-color, #ccc);
    overflow-wrap: break-word;
}
.review-card-meta {
    margin-top: 40px;
}
.review-user {
    font-weight: 700;
    display: block;
    color: var(--review-user-color, #fff);
    font-size: var(--review-user-font-size, 1.2rem);
    font-family: var(--review-user-font-family, inherit);
    margin-bottom: 8px;
}
.review-social {
    display: block;
    font-size: var(--review-social-font-size, 0.9rem);
    font-family: var(--review-social-font-family, inherit);
    color: var(--review-social-color, #eb6609);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}
.review-social a {
    color: inherit;
    text-decoration: none;
}
.review-social a:hover {
    color: var(--review-social-hover-color, #ffaa33);
}
.review-stars {
    color: var(--reviews-star-color, #eb6609);
    margin-bottom: 15px;
    display: block;
    font-size: 1.1rem;
}
.review-platform {
    font-size: var(--review-platform-font-size, 0.8rem);
    font-family: var(--review-platform-font-family, inherit);
    color: var(--review-platform-color, #555);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.reviews-nav .nav-btn {
    width: 60px;
    height: 60px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    background: var(--reviews-nav-bg, rgba(255,255,255,0.05));
}
.reviews-nav .nav-btn:hover {
    background: var(--reviews-nav-hover-bg, #eb6609);
    border-color: var(--reviews-nav-hover-bg, #eb6609);
    color: #000;
}


.reviews-carousel-inner {
    cursor: grab;
}
.reviews-carousel-inner:active {
    cursor: grabbing;
}
.reviews-carousel-outer {
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Reviewer Avatar */
.reviewer-avatar {
    margin-bottom: 20px;
    text-align: center;
}
.avatar-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.avatar-img.avatar-circle {
    border-radius: 50%;
}

/* Platform Icon */
.platform-icon {
    margin-bottom: 15px;
    text-align: center;
}
.platform-icon-img {
    max-height: 40px;
    width: auto;
}

@media (max-width: 1024px) {
    .review-card {
        min-width: 300px;
        padding: 40px;
    }
}