/**
 * Naenae Testimonials Component Styles
 * Elegant gradient-based testimonial cards
 */

.naenae-testimonials-section {
	background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #B22222 100%);
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

.naenae-testimonials-section * {
	box-sizing: border-box;
}

.naenae-testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(220, 20, 60, 0.3) 0%, transparent 50%),
	radial-gradient(circle at 70% 80%, rgba(139, 0, 0, 0.3) 0%, transparent 50%);
	pointer-events: none;
}

.naenae-container {
	max-width: 1200px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3),
	0 0 0 1px rgba(255, 255, 255, 0.1),
	inset 0 1px 0 rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	position: relative;
	z-index: 2;
}

.naenae-header {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.naenae-header::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #8B0000, transparent);
}

.naenae-header h1 {
	font-size: 2.8rem;
	color: #1a1a1a;
	margin: 0 0 15px 0;
	font-weight: 700;
	letter-spacing: -2px;
	line-height: 1.1;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.naenae-subtitle {
	font-size: 1.1rem;
	color: #8B0000;
	font-weight: 300;
	margin-bottom: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.naenae-tagline {
	font-size: 0.95rem;
	color: #666;
	font-style: italic;
	font-weight: 300;
	line-height: 1.5;
	max-width: 500px;
	margin: 0 auto;
}

.naenae-source {
	text-align: center;
	margin-bottom: 30px;
	padding: 12px 20px;
	background: rgba(139, 0, 0, 0.05);
	border-radius: 8px;
	border-left: 3px solid #8B0000;
}

.naenae-source a {
	color: #8B0000;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
}

.naenae-source a:hover {
	text-decoration: underline;
}

.naenae-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.naenae-testimonial {
	background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
	border-radius: 12px;
	padding: 25px 20px;
	box-shadow: 0 15px 40px rgba(139, 0, 0, 0.08),
	0 5px 20px rgba(0, 0, 0, 0.04),
	inset 0 1px 0 rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(139, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.naenae-testimonial::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #8B0000, #DC143C, #B22222);
}

.naenae-testimonial::after {
	content: '"';
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 4rem;
	color: rgba(139, 0, 0, 0.06);
	line-height: 1;
	pointer-events: none;
}

.naenae-testimonial:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(139, 0, 0, 0.12),
	0 8px 25px rgba(0, 0, 0, 0.06);
}

.naenae-testimonial-content {
	font-size: 1rem;
	line-height: 1.5;
	color: #2c2c2c;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
	font-weight: 400;
	letter-spacing: 0.1px;
}

.naenae-testimonial-author {
	display: flex;
	align-items: center;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.naenae-author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #8B0000, #DC143C);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
	margin-right: 12px;
	box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.9);
	flex-shrink: 0;
}

.naenae-author-info h4 {
	color: #1a1a1a;
	font-size: 0.95rem;
	margin: 0;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.naenae-compact {
	padding: 20px 15px;
}

.naenae-compact .naenae-testimonial-content {
	font-size: 0.95rem;
	margin-bottom: 15px;
}

.naenae-cta {
	text-align: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(139, 0, 0, 0.2);
	position: relative;
}

.naenae-cta::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #8B0000, transparent);
}

.naenae-cta-button {
	background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #B22222 100%);
	color: white;
	padding: 12px 35px;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	display: inline-block;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3),
	0 3px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.naenae-cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.naenae-cta-button:hover::before {
	left: 100%;
}

.naenae-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(139, 0, 0, 0.4),
	0 6px 15px rgba(0, 0, 0, 0.15);
}

.naenae-footer-quote {
	margin-top: 20px;
	font-size: 1rem;
	color: #8B0000;
	font-style: italic;
	font-weight: 400;
}

@media (max-width: 768px) {
	.naenae-container {
		padding: 30px 20px;
	}

	.naenae-header h1 {
		font-size: 2.2rem;
	}

	.naenae-testimonials-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.naenae-testimonial {
		padding: 20px 15px;
	}
}
