/* Trust Signals Section Styles */

.trust-signals {
	padding: 60px 20px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	text-align: center;
}

/* Metrics Row */
.metrics-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.metric {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.metric strong {
	display: block;
	font-size: 28px;
	color: var(--gano-blue, #166c96);
	margin-bottom: 8px;
	font-weight: 700;
}

.metric span {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
	margin: 60px 0;
}

.testimonials-section h2 {
	font-size: 32px;
	color: #222;
	margin-bottom: 40px;
	font-weight: 700;
}

.testimonials-carousel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

/* Testimonial Card */
.testimonial-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: left;
	transition: all 0.3s ease;
	border-left: 4px solid var(--gano-blue, #166c96);
}

.testimonial-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.testimonial-card .rating {
	margin-bottom: 15px;
	display: flex;
	gap: 4px;
}

.star {
	color: #ddd;
	font-size: 18px;
	transition: color 0.2s ease;
}

.star.filled {
	color: #ffc107;
}

.testimonial-card blockquote {
	margin: 15px 0;
	font-style: italic;
	color: #444;
	border-left: none;
	padding: 0;
	font-size: 15px;
	line-height: 1.6;
}

.testimonial-card footer {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.testimonial-card strong {
	display: block;
	color: #222;
	font-weight: 600;
	margin-bottom: 4px;
}

.testimonial-card small {
	color: #888;
	font-size: 13px;
	font-weight: 500;
}

/* Certifications Section */
.certifications-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #ddd;
}

.certifications-section h3 {
	font-size: 24px;
	color: #222;
	margin-bottom: 30px;
	font-weight: 600;
}

.cert-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 20px;
	margin-top: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cert-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	min-height: 140px;
}

.cert-badge:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
	transform: scale(1.05);
}

.cert-badge img,
.cert-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	object-fit: contain;
}

.cert-badge span {
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	color: #333;
	line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
	.trust-signals {
		padding: 40px 15px;
	}

	.metrics-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		margin-bottom: 40px;
	}

	.metric {
		padding: 20px;
	}

	.metric strong {
		font-size: 22px;
	}

	.metric span {
		font-size: 12px;
	}

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

	.testimonials-section h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.testimonial-card {
		padding: 20px;
	}

	.cert-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.cert-badge {
		min-height: 120px;
		padding: 15px;
	}

	.cert-badge img,
	.cert-icon {
		width: 50px;
		height: 50px;
	}

	.cert-badge span {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.trust-signals {
		padding: 30px 10px;
	}

	.metrics-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.metric {
		padding: 15px;
	}

	.metric strong {
		font-size: 20px;
	}

	.testimonials-section h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.testimonial-card {
		padding: 15px;
		border-left-width: 3px;
	}

	.star {
		font-size: 16px;
	}

	.testimonial-card blockquote {
		font-size: 14px;
	}

	.cert-grid {
		grid-template-columns: 1fr;
	}
}

/* Animation for entrance */
.trust-signals {
	animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Accessibility */
.metric,
.testimonial-card,
.cert-badge {
	focus-visible: outline 2px solid var(--gano-blue, #166c96);
	outline-offset: 2px;
}

.testimonial-card blockquote::before {
	content: '"';
	font-size: 40px;
	color: var(--gano-blue, #166c96);
	opacity: 0.2;
	position: absolute;
	margin-left: -10px;
	margin-top: -10px;
}
