/**
 * Trusted By Section - Statistics + Dual Logo Sliders
 *
 * @package Hello_Elementor_Child
 */

.yakda-trusted-by {
	position: relative;
	z-index: 2;
	padding: 80px 0;
	background: #fff;
}

/* Statistics Row */
.yakda-trusted-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-bottom: 56px;
	text-align: center;
}

.yakda-trusted-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.yakda-trusted-stat__number {
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	font-weight: 700;
	color: #1f2b4d;
	line-height: 1.1;
}

.yakda-trusted-stat__plus {
	color: #9bcd2c;
}

.yakda-trusted-stat__label {
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.yakda-trusted-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		margin-bottom: 40px;
	}
}

@media (max-width: 479px) {
	.yakda-trusted-stats {
		grid-template-columns: 1fr;
	}
}

/* Center Heading */
.yakda-trusted-heading {
	margin: 0 0 56px;
	text-align: center;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: #1f2b4d;
	line-height: 1.4;
}

.yakda-trusted-highlight {
	color: #2b6cff;
}

/* Dual Logo Sliders */
.yakda-trusted-sliders {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.yakda-trusted-slider-block {
	position: relative;
}

.yakda-trusted-slider-label {
	position: absolute;
	top: -24px;
	left: 0;
	margin: 0;
	font-size: 0.8125rem;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.yakda-trusted-slider {
	overflow: hidden;
	width: 100%;
	padding: 24px 0;
}

.yakda-trusted-slider__inner {
	display: flex;
	width: max-content;
	animation: yakda-slider-suppliers 40s linear infinite;
}

.yakda-trusted-slider--clients .yakda-trusted-slider__inner {
	animation: yakda-slider-clients 40s linear infinite;
}

.yakda-trusted-slider:hover .yakda-trusted-slider__inner {
	animation-play-state: paused;
}

.yakda-trusted-slider__track {
	display: flex;
	gap: 60px;
	flex-shrink: 0;
}

@keyframes yakda-slider-suppliers {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes yakda-slider-clients {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.yakda-trusted-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-shrink: 0;
	min-width: 120px;
}

.yakda-trusted-logo img {
	max-height: 50px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.yakda-trusted-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

.yakda-trusted-logo__label {
	font-size: 0.75rem;
	color: #9ca3af;
}
