/* Contact CTA Widget styles */

.ccw-wrapper {
	width: 100%;
}

.ccw-box {
	background-color: #F3F6FE;
	border-radius: 18px;
	padding: 32px 40px;
	box-sizing: border-box;
}

/* Top content row: icon + text + button */
.ccw-content {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.ccw-icon-circle {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #2A4CF4;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ccw-icon-circle i {
	font-size: 26px;
	color: #FFFFFF;
	line-height: 1;
}

.ccw-icon-circle svg {
	width: 26px;
	height: 26px;
	fill: #FFFFFF;
}

.ccw-text {
	flex: 1 1 320px;
	min-width: 220px;
}

.ccw-heading {
	font-size: 24px;
	font-weight: 700;
	color: #12153D;
	margin: 0 0 6px;
	line-height: 1.3;
}

.ccw-description {
	font-size: 15px;
	color: #5C6178;
	line-height: 1.6;
	margin: 0;
}

.ccw-button-wrap {
	flex: 0 0 auto;
	margin-left: auto;
}

.ccw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #2A4CF4;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(42, 76, 244, 0.25);
	transition: background-color 0.2s ease, transform 0.15s ease;
	white-space: nowrap;
}

.ccw-button:hover {
	background-color: #1936C9;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.ccw-button-icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.ccw-button-icon i,
.ccw-button-icon svg {
	font-size: 14px;
	width: 14px;
	height: 14px;
	fill:#ffffff;
}

/* Feature row */
.ccw-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #E3E6F0;
}

.ccw-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1 1 0;
	min-width: 180px;
	padding: 0 12px;
}

.ccw-feature-item:first-child {
	padding-left: 0;
}

.ccw-feature-item:last-child {
	padding-right: 0;
}

.ccw-feature-item:not(:last-child) {
	border-right: 1px solid #E3E6F0;
}

.ccw-feature-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ccw-feature-icon i {
	font-size: 22px;
	color: #2A4CF4;
	line-height: 1;
}

.ccw-feature-icon svg {
	width: 22px;
	height: 22px;
	fill: #2A4CF4;
}

.ccw-feature-copy {
	display: flex;
	flex-direction: column;
}

.ccw-feature-title {
	font-size: 15px;
	font-weight: 600;
	color: #12153D;
	line-height: 1.3;
}

.ccw-feature-text {
	font-size: 13px;
	color: #8A8FA3;
	line-height: 1.4;
	margin-top: 2px;
}

/* Responsive */
@media (max-width: 767px) {
	.ccw-box {
		padding: 24px;
	}

	.ccw-content {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.ccw-button-wrap {
		margin-left: 0;
		width: 100%;
	}

	.ccw-button {
		width: 100%;
	}

	.ccw-features {
		flex-direction: column;
		gap: 16px;
	}

	.ccw-feature-item {
		border-right: none !important;
		padding: 0 !important;
		width: 100%;
	}

	.ccw-feature-item:not(:last-child) {
		padding-bottom: 16px !important;
		border-bottom: 1px solid #E3E6F0 !important;
	}
}
