/* ============================================================
   Immigence — Why Choose Us Widget  (why-choose-widget.css)
   Paste into assets/css/widgets-style.css
   ============================================================ */

.wcu-section {
	padding: 5rem 2rem;
	background: var(--cream, #FAFAF5);
}

.wcu-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 5rem;
	align-items: center;
}

/* Full width when no image */
.wcu-left:only-child {
	grid-column: 1 / -1;
	max-width: 680px;
}

/* ── LEFT: TEXT ──────────────────────────────────────────── */

/* Pill tag */
.wcu-tag {
	display: inline-block;
	background: var(--navy, #0B1D3A);
	color: var(--gold, #C8983C);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	padding: 0.32rem 0.9rem;
	border-radius: 100px;
	margin-bottom: 1rem;
}

.wcu-heading {
	font-family: var(--font-display, 'Libre Baskerville', Georgia, serif);
	font-size: 2.2rem;
	line-height: 1.3;
	color: var(--navy, #0B1D3A);
	margin-bottom: 1.75rem;
}

/* ── BULLET POINTS ───────────────────────────────────────── */

.wcu-points {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.wcu-point {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.wcu-point-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	background: var(--gold-pale, #F5ECD7);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wcu-point-icon svg {
	width: 20px;
	height: 20px;
	fill: var(--gold, #C8983C);
}

.wcu-point-body {
	font-size: 0.95rem;
	line-height: 1.65;
	padding-top: 0.5rem;
}

.wcu-point-title {
	font-weight: 700;
	color: var(--navy, #0B1D3A);
}

.wcu-point-text {
	color: var(--slate, #4A5568);
}

/* ── CTA BUTTON ──────────────────────────────────────────── */

.wcu-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gold, #C8983C);
	color: var(--navy, #0B1D3A);
	border: 2px solid var(--gold, #C8983C);
	padding: 0.85rem 2rem;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: all 0.3s ease;
}

.wcu-cta:hover {
	background: transparent;
	color: var(--gold, #C8983C);
}

/* ── RIGHT: IMAGE ────────────────────────────────────────── */

.wcu-right {
	position: relative;
}

.wcu-image-wrap {
	position: relative;
}

/* Gold accent border behind image */
.wcu-image-wrap::before {
	content: '';
	position: absolute;
	top: 14px;
	left: -14px;
	right: 14px;
	bottom: -14px;
	border: 2px solid rgba(200, 152, 60, 0.2);
	border-radius: 10px;
	z-index: 0;
	pointer-events: none;
}

.wcu-image {
	position: relative;
	z-index: 1;
	width: 100%;
	display: block;
	border-radius: 8px;
	border: 3px solid rgba(200, 152, 60, 0.35);
	box-shadow: 0 24px 56px rgba(11, 29, 58, 0.14);
	object-fit: cover;
}

/* Floating badge — bottom left of image */
.wcu-float-badge {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: -20px;
	background: #fff;
	border-left: 4px solid var(--gold, #C8983C);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(11, 29, 58, 0.14);
	padding: 0.7rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	min-width: 180px;
}

.wcu-float-badge svg {
	width: 20px;
	height: 20px;
	fill: var(--gold, #C8983C);
	flex-shrink: 0;
}

.wcu-float-badge-main {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--navy, #0B1D3A);
	line-height: 1.3;
}

.wcu-float-badge-sub {
	font-size: 0.7rem;
	color: var(--slate-light, #718096);
	margin-top: 0.1rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 960px) {
	.wcu-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.wcu-right {
		max-width: 420px;
		margin: 0 auto;
	}

	.wcu-heading {
		font-size: 1.8rem;
	}
}

@media (max-width: 500px) {
	.wcu-heading {
		font-size: 1.5rem;
	}
}