/* Customer Review - Minimal Style */
.customer-review {
    text-align: center;
    padding: var(--space-10) 0;
    position: relative;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
}

.review-stars svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    filter: drop-shadow(0 2px 4px rgba(0, 220, 130, 0.3));
    animation: star-glow 2s ease-in-out infinite;
}

.review-stars svg:nth-child(1) { animation-delay: 0s; }
.review-stars svg:nth-child(2) { animation-delay: 0.2s; }
.review-stars svg:nth-child(3) { animation-delay: 0.4s; }
.review-stars svg:nth-child(4) { animation-delay: 0.6s; }
.review-stars svg:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-glow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.review-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto var(--space-6);
    font-style: italic;
    position: relative;
}

.review-text::before,
.review-text::after {
    content: '"';
    font-size: var(--text-4xl);
    color: var(--accent-primary);
    opacity: 0.3;
    position: absolute;
}

.review-text::before {
    top: -10px;
    left: -30px;
}

.review-text::after {
    bottom: -30px;
    right: -30px;
}

.review-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.author-name {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.author-business {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .customer-review {
        padding: var(--space-8) 0;
    }
    
    .review-text {
        font-size: var(--text-base);
    }
    
    .review-text::before,
    .review-text::after {
        font-size: var(--text-3xl);
    }
    
    .review-text::before {
        left: -20px;
    }
    
    .review-text::after {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .customer-review {
        padding: var(--space-6) 0;
    }
    
    .review-stars svg {
        width: 20px;
        height: 20px;
    }
    
    .review-text {
        font-size: var(--text-sm);
    }
} 