/**
 * Testimonials Page Styles
 *
 * @package Safari_Ranthambore
 */

/* Stats Row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); text-align: center; margin-bottom: var(--space-12); }
.stat-item { padding: var(--space-6); background: var(--color-surface); border-radius: var(--radius-xl); border: 1px solid var(--color-border); }
.stat-number { font-size: var(--text-4xl); font-weight: 800; color: var(--color-gold); line-height: 1; margin-bottom: var(--space-2); }
.stat-label { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Review Cards */
.review-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); transition: all 0.3s ease; position: relative; }
.review-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.review-card::before { content: '"'; position: absolute; top: var(--space-3); right: var(--space-5); font-size: 4rem; font-family: var(--font-serif); color: var(--color-gold); opacity: 0.15; line-height: 1; }
.review-header { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.review-avatar { width: 48px; height: 48px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--color-gold), #B8860B); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: var(--text-lg); flex-shrink: 0; }
.review-meta h4 { font-size: var(--text-base); margin-bottom: 2px; }
.review-meta p { font-size: var(--text-xs); color: var(--color-text-muted); }
.review-stars { color: var(--color-gold); font-size: var(--text-sm); margin-bottom: var(--space-3); }
.review-text { font-size: var(--text-sm); line-height: 1.7; color: var(--color-text-secondary); }
.review-safari { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--color-border); }

/* Featured Review */
.featured-review { background: linear-gradient(135deg, var(--color-primary), #2C1810); color: #fff; border: none; padding: var(--space-8); }
.featured-review::before { color: #fff; opacity: 0.1; }
.featured-review .review-text { color: rgba(255,255,255,0.9); font-size: var(--text-base); }
.featured-review .review-stars { color: #FFD700; }
.featured-review .review-meta p { color: rgba(255,255,255,0.7); }
.featured-review .review-safari { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }

@media (max-width: 768px) {
	.stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
