/* ─────────────────────────────────────────────
   Contact Section Widget
───────────────────────────────────────────── */

.cso-section {
	background: #ffffff;
	border-radius: 28px;
	overflow: hidden;
	padding: 70px 80px;
}

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

.cso-container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

/* ── Inner grid ───────────────────────────── */

.cso-inner {
	display: grid;
	grid-template-columns: 1fr 40px 370px;
	gap: 0 15px;
	align-items: center;
}

/* ── Left ─────────────────────────────────── */

.cso-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.cso-heading {
	font-size: 52px !important;
	font-weight: 600 !important;
	letter-spacing: -0.035em !important;
	line-height: 1.08 !important;
	color: #000000 !important;
	word-spacing: normal !important;
	margin: 0 !important;
	display: flex;
	gap: 3px;
	align-items: center;
}

.cso-sub {
	font-size: 16px;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.7;
	margin: 0;
	max-width: 400px;
}

.cso-btn {
	    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    border: none !important;
    background: #11B946 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 15px 26px 15px 20px !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.18s ease !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
}

.cso-btn:hover {
	background: #0ea33d !important;
	transform: translateY(-1px);
}

.cso-btn .cso-btn-icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cso-btn .cso-btn-icon svg {
	display: block;
}

/* ── Column divider ───────────────────────── */

.cso-col-divider {
	width: 1px;
	height: 100%;
	min-height: 200px;
	background: rgba(0, 0, 0, 0.1);
	align-self: stretch;
}

/* ── Right ────────────────────────────────── */

.cso-right {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ── Contact item ─────────────────────────── */

.cso-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 20px 20px 20px;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.cso-item:hover {
	background: rgba(0, 0, 0, 0.04) !important;
	border-color: rgba(0, 0, 0, 0.15);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.cso-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cso-icon--wa {
	background: #25d366;
	color: #ffffff;
}

.cso-icon--ig {
	background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #ffffff;
}

.cso-icon--em {
	background: rgba(0, 0, 0, 0.07);
	color: #000000;
}

.cso-item-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.cso-item-label {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: #000000;
	line-height: 1.4;
}

.cso-item-value {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
	line-height: 1.3;
	letter-spacing: 0.01em;
}

.cso-item-arrow {
	color: rgba(0, 0, 0, 0.25);
	flex-shrink: 0;
	line-height: 0;
	transition: color 0.2s;
}

.cso-item:hover .cso-item-arrow {
	color: rgba(0, 0, 0, 0.6);
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 1024px) {
	.cso-section {
		padding: 72px 56px;
	}

	.cso-heading {
		font-size: 42px !important;
	}

	.cso-inner {
		gap: 0 48px;
	}
}

@media (max-width: 768px) {
	.cso-section {
		padding: 36px 30px;
		border-radius: 20px;
	}

	.cso-inner {
		grid-template-columns: 1fr;
		gap: 30px 0;
	}

	.cso-col-divider {
		width: 100%;
		height: 1px;
		min-height: auto;
		align-self: auto;
		background: rgba(0, 0, 0, 0.1);
	}

	.cso-heading {
		font-size: 36px !important;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		gap: 20px;
	}

	.cso-sub {
		max-width: none;
	}
}
