/* ===========================
   BANNER SECTION
   =========================== */
.section-banner {
	background: var(--background);
}

.banner-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	padding: 72px 48px;
	text-align: center;
	background: var(--background-green);
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 24px rgba(24, 56, 50, 0.2);
}

.banner-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	opacity: 0.35;
}

.banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(24, 56, 50, 0.75) 0%, rgba(24, 56, 50, 0.55) 100%);
	z-index: 1;
}

.banner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	text-align: center;
	margin: 0 auto;
}

.banner-title {
	font-size: 38px;
	font-weight: 700;
	color: var(--background-header);
	line-height: 1.25;
	margin-bottom: 16px;
}

.banner-desc {
	font-size: 15px;
	color: var(--background);
	max-width: 500px;
	text-align: center;
	align-self: center;
	margin-bottom: 24px;
}
.banner-desc ul,
.banner-desc ol {
	margin-top: -10px !important;
	padding-left: 20px;
	text-align: left;
}
.banner-desc ul { list-style: disc; }
.banner-desc ol { list-style: decimal; }
.banner-desc li { margin-bottom: 4px; }

.banner-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-banner-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--background-header);
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 50px;
	padding: 13px 32px;
	font-size: 15px;
	text-decoration: none;
	transition: all .25s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.btn-banner-primary:hover {
	/* background: rgba(255, 255, 255, 0.15); */
	background: var(--background-brown-hover);
	border: 1px solid var(--background-brown-hover);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.btn-banner-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--background-header);
	border: 1.5px solid rgba(255, 255, 255, 0.75);
	border-radius: 50px;
	padding: 13px 32px;
	font-size: 15px;
	text-decoration: none;
	transition: all .25s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.btn-banner-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #ffffff;
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991.98px) {
	.banner-card  { padding: 56px 32px; }
	.banner-title { font-size: 30px; }
}

@media (max-width: 575.98px) {
	.section-banner { padding: 40px 0 60px; }
	.banner-card    { padding: 48px 20px; border-radius: 18px; }
	.banner-title   { font-size: 24px; }
	.banner-desc    { font-size: 14px; }

	.btn-banner-primary,
	.btn-banner-secondary { width: 100%; justify-content: center; }
}
