.hci-hero-slider {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	color: #ffffff;
}

.hci-hero-track {
	display: flex;
	transition: transform 0.6s ease;
	will-change: transform;
}

.hci-hero-slide {
	position: relative;
	min-height: 500px;
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--clr-primary, #0D3B66) 0%, var(--clr-secondary, #7A001C) 100%);
}

.hci-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hci-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hci-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(135deg, rgba(13, 59, 102, 0.85) 0%, rgba(122, 0, 28, 0.82) 100%);
}

.hci-hero-content {
	position: relative;
	z-index: 5;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.hci-hero-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.025em;
}

.hci-hero-slogan {
	font-size: clamp(1.125rem, 2vw, 1.6rem);
	font-weight: 400;
	margin-bottom: 1.25rem;
	color: #FFD166;
	font-style: italic;
	font-family: 'Lora', Georgia, serif;
}

.hci-hero-description {
	max-width: 720px;
	margin: 0 auto 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #f1f5f9;
}

.hci-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	position: relative;
	z-index: 6;
}

.hci-btn-hero {
	padding: 0.85rem 1.75rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 10px;
	transition: all 0.3s ease;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	position: relative;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hci-hero-ctas .hci-btn-primary {
	background-color: #FFD166;
	color: #222222;
	border: none;
	box-shadow: 0 12px 32px rgba(255, 209, 102, 0.45);
}

.hci-hero-ctas .hci-btn-primary:hover,
.hci-hero-ctas .hci-btn-primary:focus {
	background-color: #ffc233;
	color: #111111;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 209, 102, 0.45);
}

.hci-hero-ctas .hci-btn-secondary {
	border: 2px solid #FFFFFF;
	color: #FFFFFF;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(3px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.hci-hero-ctas .hci-btn-secondary:hover,
.hci-hero-ctas .hci-btn-secondary:focus {
	background-color: #FFFFFF;
	color: #0D3B66;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}

.hci-hero-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 4;
}

.hci-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: none;
	background: rgba(255, 255, 255, 0.6);
	padding: 0;
	cursor: pointer;
	transition: all 0.2s ease;
}

.hci-hero-dot.is-active {
	width: 24px;
	background: #FFD166;
}

.hci-hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: rgba(13, 59, 102, 0.6);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.hci-hero-nav:hover,
.hci-hero-nav:focus {
	background: rgba(255, 209, 102, 0.9);
	color: #0D3B66;
	border-color: transparent;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.hci-hero-prev {
	left: 24px;
}

.hci-hero-next {
	right: 24px;
}

/* Section helpers */
.hci-section {
	position: relative;
}

.hci-section .hci-col {
	margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
	.hci-hero-slider {
		min-height: 420px;
	}

	.hci-hero-slide {
		min-height: 420px;
	}

	.hci-hero-content {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}
}
