/**
 * Why Choose Us — Elementor Widget Styles
 * File: assets/css/why-choose-us-widget.css
 */

/* -------------------------------------------------
 * Section wrapper
 * ------------------------------------------------- */
.wcu-section {
	background-color: #ffffff;
	width: 100%;
	box-sizing: border-box;
}

.wcu-section * {
	box-sizing: border-box;
}

.wcu-container {
	max-width: 1140px;
	margin: 0 auto;
}

/* -------------------------------------------------
 * Header (subtitle / heading / description)
 * ------------------------------------------------- */
.wcu-header {
	text-align: center;
	margin-bottom: 56px;
}

.wcu-subtitle {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #0f6cbd;
	margin-bottom: 10px;
}

.wcu-heading {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.25;
	color: #222222;
	margin: 0 0 18px;
}

.wcu-heading-divider {
	display: block;
	width: 60px;
	height: 3px;
	background-color: #0f6cbd;
	margin: 0 auto 22px;
}

.wcu-description {
	font-size: 17px;
	line-height: 1.7;
	color: #666666;
	max-width: 760px;
	margin: 0 auto;
}

/* -------------------------------------------------
 * Feature grid — 3 / 2 / 1 columns
 * ------------------------------------------------- */
.wcu-features-grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	column-gap: 40px;
	row-gap: 60px;
	align-items: start;
}

.wcu-feature {
	text-align: center;
}

/* -------------------------------------------------
 * Hexagon icon container
 * ------------------------------------------------- */
.wcu-icon-wrap {
	position: relative;
	width: 120px;
	height: 104px;
	margin: 0 auto 28px;
}

.wcu-icon-border,
.wcu-icon-bg {
	position: absolute;
	inset: 0;
	-webkit-clip-path: polygon( 25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50% );
	clip-path: polygon( 25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50% );
}

.wcu-icon-border {
	background-color: #0f6cbd;
}

.wcu-icon-bg {
	inset: 2px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-icon-bg i {
	font-size: 36px;
	color: #0f6cbd;
	line-height: 1;
	transition: color 0.3s ease;
}

.wcu-icon-bg svg {
	width: 36px;
	height: 36px;
	fill: #0f6cbd;
	transition: fill 0.3s ease;
}

/* Hover effect: lift + subtle scale */
.wcu-feature:hover .wcu-icon-bg {
	transform: translateY( -6px ) scale( 1.05 );
}

/* -------------------------------------------------
 * Feature title / divider / description
 * ------------------------------------------------- */
.wcu-feature-title {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #222222;
	margin: 0 0 14px;
}

.wcu-divider {
	display: block;
	width: 40px;
	height: 3px;
	background-color: #0f6cbd;
	margin: 0 auto 20px;
}

.wcu-feature-description {
	font-size: 16px;
	line-height: 1.7;
	color: #666666;
	margin: 0;
}

/* -------------------------------------------------
 * Responsive breakpoints
 * (aligned with Elementor's default tablet / mobile widths)
 * ------------------------------------------------- */
@media ( max-width: 1024px ) {
	.wcu-features-grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( max-width: 767px ) {
	.wcu-features-grid {
		grid-template-columns: 1fr;
	}

	.wcu-heading {
		font-size: 30px;
	}

	.wcu-header {
		margin-bottom: 40px;
	}
}
