/* Reviews Carousel Styles - Google Reviews Design */

.feedback-reviews-carousel-wrapper {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.feedback-reviews-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.feedback-reviews-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.feedback-carousel-arrow {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #5f6368;
    z-index: 10;
}

.feedback-carousel-arrow:hover {
    background: #f8f9fa;
    border-color: #4285F4;
    color: #4285F4;
    transform: scale(1.1);
}

.feedback-carousel-arrow:active {
    transform: scale(0.95);
}

.feedback-carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.feedback-reviews-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.feedback-reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.feedback-review-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.feedback-review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.feedback-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.feedback-review-avatar {
    flex-shrink: 0;
}

.feedback-review-avatar-initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.feedback-review-info {
    flex: 1;
    min-width: 0;
}

.feedback-review-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.feedback-review-name {
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    margin: 0;
    line-height: 1.4;
}

.feedback-review-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4285F4;
    font-size: 12px;
    font-weight: 500;
}

.feedback-review-verified svg {
    width: 16px;
    height: 16px;
}

.feedback-verified-text {
    line-height: 1;
}

.feedback-review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.feedback-review-rating .review-star {
    font-size: 16px;
    color: #ffa500;
    line-height: 1;
    opacity: 0.3;
}

.feedback-review-rating .review-star.filled {
    opacity: 1;
}

.feedback-review-google-icon {
    flex-shrink: 0;
    opacity: 0.6;
    margin-left: auto;
}

.feedback-review-google-icon svg {
    width: 24px;
    height: 24px;
}

.feedback-review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feedback-review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5f6368;
    margin: 0;
    flex: 1;
}

.feedback-review-date {
    font-size: 12px;
    color: #9aa0a6;
    margin-top: auto;
}

.feedback-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.feedback-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dadce0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.feedback-carousel-dot.active {
    background: #4285F4;
    width: 24px;
    border-radius: 4px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .feedback-reviews-carousel-wrapper {
        padding: 40px 15px;
    }
    
    .feedback-reviews-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .feedback-reviews-carousel-container {
        gap: 12px;
    }
    
    .feedback-carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .feedback-carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .feedback-reviews-track {
        gap: 16px;
    }
    
    .feedback-review-card {
        padding: 20px;
    }
    
    .feedback-review-avatar-initial {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feedback-review-name {
        font-size: 15px;
    }
    
    .feedback-review-text {
        font-size: 13px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Card width handled by JavaScript */
}

