/* Yorumlar Sayfası Stilleri */

/* Reviews Hero Compact - Background Only */
.reviews-hero-compact {
    background: linear-gradient(135deg, rgba(30,30,30,0.6) 0%, rgba(60,0,0,0.6) 100%), url('../image/yorumlar-hero.jpg') center/cover no-repeat;
}

/* Reviews Stats Section */
.reviews-stats-section {
    background-color: #f8f9fa;
}

.reviews-stats {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: bold;
    color: #c8102e;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: #666;
    font-weight: 500;
}

/* Rating Breakdown */
.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.rating-bar span:first-child {
    min-width: 60px;
    color: #666;
}

.rating-bar span:last-child {
    min-width: 35px;
    color: #333;
    font-weight: 500;
}

.bar {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #c8102e, #c8102e);
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.badge i {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

/* Category Ratings */
.category-ratings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.category-stars {
    color: #dc3545;
    font-size: 1rem;
}

.category-score {
    font-size: 2rem;
    font-weight: bold;
    color: #c8102e;
}

/* Reviews List Section */
.reviews-list-section {
    background-color: #f8f9fa;
}

.reviews-disclaimer {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.reviews-disclaimer small {
    color: #6c757d;
    font-style: italic;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* No Reviews */
.no-reviews {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    font-size: 1.1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    grid-column: 1 / -1;
}

.no-reviews i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-reviews h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.no-reviews .btn {
    margin-top: 1rem;
}

/* Review Card Modern */
.review-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #c8102e;
}

.review-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.review-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c8102e, #c8102e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: center;
}

.customer-details .stars-display {
    color: #dc3545;
    font-size: 1rem;
    margin: 0.2rem 0;
    line-height: 1;
    text-align: left;
}

.customer-details .stars-display .fa-star,
.customer-details .stars-display .empty-stars {
    font-size: 0.9rem !important;
    margin-right: 2px;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.review-category {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

.rented-car {
    font-size: 0.85rem;
    color: #c8102e;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.rented-car i {
    margin-right: 0.3rem;
}

/* Rating Section */
.rating-section {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.stars-display {
    color: #dc3545;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stars-display .fa-star,
.stars-display .empty-stars {
    font-size: 0.95rem !important;
    margin-right: 2px;
}

.empty-stars {
    color: #e9ecef;
}

.rating-number {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Review Content */
.review-content {
    margin-bottom: 1.5rem;
}

.review-comment {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Review Footer */
.review-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.customer-location {
    font-size: 0.85rem;
    color: #666;
}

.customer-location i {
    margin-right: 0.3rem;
    color: #c8102e;
}

.verified-badge {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    background: #f8fff8;
    border: 1px solid #d4edda;
    border-radius: 15px;
}

.verified-badge i {
    margin-right: 0.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .rating-breakdown {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .rating-bar {
        display: none;
    }
    
    .trust-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .badge {
        padding: 0.8rem 0.5rem;
        min-width: 80px;
        font-size: 0.8rem;
    }
    
    .category-ratings {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .category-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-score {
        font-size: 1.5rem;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-header-modern {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .rating-section {
        text-align: center;
    }
    
    .customer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .review-footer-modern {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .reviews-stats {
        padding: 1.5rem 0.5rem;
    }
    
    .overall-rating {
        margin-bottom: 1rem;
    }
    
    .rating-score {
        font-size: 3rem;
    }
    
    .badge {
        padding: 0.6rem 0.3rem;
        min-width: 70px;
        font-size: 0.75rem;
    }
    
    .badge i {
        font-size: 1.2rem;
    }
    
    .category-ratings {
        grid-template-columns: 1fr;
    }
    
    .category-item {
        padding: 1rem;
    }
    
    .review-card-modern {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .customer-info {
        gap: 0.8rem;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .customer-name {
        font-size: 1rem;
    }
    
    .review-category,
    .rented-car {
        font-size: 0.8rem;
    }
}
