/* Reviews Section */
.reviews-section {
    background-color: #f4f1ea;
    padding: 100px 0;
    overflow: hidden;
    min-height: 600px;
}

.ratings-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    color: #001f3f;
    /* Navy blue like text */
}

.rating-icon {
    width: 28px;
    height: 28px;
}

.rating-platform {
    font-size: 1.3rem;
    font-weight: 400;
}

.rating-score {
    font-size: 1.3rem;
    font-weight: 600;
    color: #001f3f;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.reviews-subtitle {
    color: #c4704f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.2;
}

.reviews-track-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    /* Ensure track can flow */
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.review-card {
    background-color: white;
    width: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-serif);
    font-size: 80px;
    color: #f0f0f0;
    line-height: 1;
    z-index: 0;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c4704f;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c4704f;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar-initials {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #c4704f;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.review-author {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-dark);
    margin: 0;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0 80px 0;
        min-height: 500px;
    }
    
    .ratings-bar {
        gap: 25px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .rating-platform,
    .rating-score {
        font-size: 1.1rem;
    }
    
    .reviews-header {
        margin-bottom: 40px;
    }
    
    .reviews-title {
        font-size: 2.5rem;
    }
    
    .review-card {
        width: 320px;
        padding: 30px;
    }
    
    .review-quote-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0 60px 0;
        min-height: 450px;
    }
    
    .ratings-bar {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .rating-item {
        gap: 8px;
    }
    
    .rating-icon {
        width: 24px;
        height: 24px;
    }
    
    .rating-platform,
    .rating-score {
        font-size: 1rem;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .review-card {
        width: 280px;
        padding: 25px;
    }
    
    .review-avatar {
        width: 60px;
        height: 60px;
    }
    
    .review-author {
        font-size: 1.1rem;
    }
    
    .review-text {
        font-size: 14px;
    }
}