/**
 * Section: Why Choose Us
 * Hiển thị lý do chọn chúng tôi
 * 
 * @package spawell-child
 * @since 1.0.0
 */

/* ========================================
   SECTION: WHY CHOOSE US
   ======================================== */
.mf-why-choose-us {
	padding: 80px 0;
	background: #fff;
}

.mf-why-choose-us .section-label {
	display: inline-block;
	font-size: 14px;
	color: var(--e-global-color-accent, #4a7c59);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	font-weight: 500;
}

.mf-why-choose-us .section-title {
	font-size: 36px;
	line-height: 1.3;
	margin: 0 0 20px;
	color: var(--e-global-color-primary, #333);
}

.mf-why-choose-us .why-content {
	padding-right: 50px;
}

.mf-why-choose-us .why-description {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	margin-bottom: 30px;
}

.mf-why-choose-us .why-features-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid #e5e5e5;
	margin-top: 30px;
}

.mf-why-choose-us .why-feature-item {
	display: flex;
	align-items: center;
	padding: 25px 0;
}

.mf-why-choose-us .feature-left {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 0 0 50%;
	padding-right: 25px;
	border-right: 1px solid #e5e5e5;
}

.mf-why-choose-us .feature-right {
	flex: 1;
	padding-left: 25px;
}

.mf-why-choose-us .feature-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--e-global-color-accent, #4a7c59);
	color: #fff;
	border-radius: 50%;
}

.mf-why-choose-us .feature-icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.mf-why-choose-us .feature-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	color: var(--e-global-color-accent, #4a7c59);
}

.mf-why-choose-us .feature-desc {
	font-size: 15px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* Why Image with Spinning Badge */
.mf-why-choose-us .why-image {
	position: relative;
}

.mf-why-choose-us .why-image img {
	border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF00;
    border-radius: 999px 999px 999px 999px;
}

/* Spinning Contact Badge */
.mf-why-choose-us .contact-badge {
	position: absolute;
    bottom: -5%;
    right: 50%;
    width: 150px;
    height: 150px;
    background: var(--e-global-color-accent, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	border: 3px solid #FFFF;
}

/* Badge spinner wrapper - xoay cả text và arrow */
.mf-why-choose-us .badge-spinner {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: spin 15s linear infinite;
}

.mf-why-choose-us .badge-text {
	position: absolute;
	width: 100%;
	height: 100%;
}

.mf-why-choose-us .badge-text text {
	fill: #fff;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	/* text-transform: uppercase; */
}

.mf-why-choose-us .badge-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	color: #fff;
	z-index: 2;
}

.mf-why-choose-us .badge-arrow svg {
	width: 100%;
	height: 100%;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
	.mf-why-choose-us {
		padding: 60px 0;
	}
	
	.mf-why-choose-us .why-content {
		padding-right: 0;
		margin-bottom: 40px;
	}
	
	.mf-why-choose-us .section-title {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.mf-why-choose-us {
		padding: 40px 0;
	}
	
	.mf-why-choose-us .section-title {
		font-size: 24px;
	}
	
	.mf-why-choose-us .why-feature-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.mf-why-choose-us .feature-left {
		flex: 1;
		border-right: none;
		padding-right: 0;
		padding-bottom: 15px;
		border-bottom: 1px solid #e5e5e5;
		width: 100%;
	}
	
	.mf-why-choose-us .feature-right {
		padding-left: 0;
	}
	
	.mf-why-choose-us .contact-badge {
		width: 90px;
		height: 90px;
		bottom: 15px;
		right: 15px;
	}
	
	.mf-why-choose-us .badge-arrow {
		width: 32px;
		height: 32px;
	}
}
