/* Reviews Page Styles */
.reviews-page-section {
    background-color: #fafafa;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Header */
.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #e53935;
    margin-bottom: 16px;
}

.reviews-title {
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #2e2e2e;
    margin-bottom: 24px;
    line-height: 1.2;
}

.reviews-title span {
    color: #27368B;
    font-weight: 900;
}

.reviews-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

/* Stats */
.reviews-stats {
    text-align: center;
    margin-bottom: 48px;
}

.stats-rating {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.stats-rating .stars {
    color: #ffc107;
    margin-right: 8px;
}

.stats-count {
    font-size: 14px;
    color: #6b7280;
}

/* Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Card */
.review-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 24px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.reviewer-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.reviewer-stars {
    color: #ffc107;
}

.reviewer-country {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

.review-divider {
    border-top: 1px solid #f0f0f0;
    margin: 16px 0;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pagination-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    color: #2e3ea8;
}

.pagination-item.active {
    background: #2e3ea8;
    color: #fff;
}

/* Skyline Decoration */
.skyline-decoration {
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/step-background.png");
    background-size: contain;
    background-position: bottom center;
    background-repeat: repeat-x;
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1199px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-title {
        font-size: 36px;
    }
    .reviews-page-section {
        padding: 60px 0 100px;
    }
}
