/* Artistic CTA Banner — base */
.acb-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	gap: 32px;
	max-width: 1140px;
	margin: 0 auto;
	overflow: hidden;
}

.acb-width-full.acb-wrap { max-width: 100% !important; }

.acb-content { flex: 1 1 55%; min-width: 0; z-index: 2; }
.acb-visual { flex: 1 1 40%; position: relative; display: flex; align-items: center; justify-content: center; z-index: 1; }

.acb-heading {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.3;
	font-weight: 700;
}

.acb-desc {
	margin: 0 0 22px;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.85;
}

.acb-buttons { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.acb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 26px;
	border-radius: 10px;
	border: 2px solid transparent;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s ease;
	line-height: 1;
}

.acb-btn--primary { background-color: #F4A81D; color: #12234E; }
.acb-btn--primary:hover { filter: brightness(0.95); transform: translateY(-2px); }

.acb-btn--secondary { background-color: transparent; border-color: #ffffff; color: #ffffff; }
.acb-btn--secondary:hover { background-color: rgba(255,255,255,0.1); transform: translateY(-2px); }

.acb-btn__icon { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.acb-btn__icon svg { width: 1em; height: 1em; fill: currentColor; }

/* ---- Image ---- */
.acb-image { position: relative; max-width: 100%; }
.acb-image img { display: block; max-width: 100%; height: auto; }

/* ---- Layout: Light (Brochure Download) ---- */
.acb-layout-light.acb-wrap {
	background-color: #FBF1E7;
	padding: 48px 56px;
	border-radius: 24px;
}
.acb-layout-light .acb-heading { color: #12234E; }
.acb-layout-light .acb-desc { color: #3A3F52; }
.acb-layout-light .acb-visual { justify-content: flex-end; }
.acb-layout-light .acb-icon-box-floating {
	position: absolute;
	top: -10px;
	right: 10px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

/* ---- Layout: Dark (Dual CTA) ---- */
.acb-layout-dark.acb-wrap {
	background-color: #12234E;
	background-image: linear-gradient(135deg, #12234E 0%, #1B3170 100%);
	padding: 48px 56px;
	border-radius: 20px;
}
.acb-layout-dark .acb-heading { color: #ffffff; }
.acb-layout-dark .acb-desc { color: rgba(255,255,255,0.85); }
.acb-icon-box-inline {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}
.acb-icon-box-inline .acb-icon-box-label { text-align: left; }
.acb-layout-dark .acb-visual { justify-content: flex-end; }

/* ---- Icon Box (badge) ---- */
.acb-icon-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.15);
	overflow: hidden;
}
.acb-icon-box i, .acb-icon-box svg { position: relative; z-index: 2; }

.acb-icon-box-label {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
}

/* Glossy effect: diagonal sheen overlay */
.acb-icon-glossy-yes .acb-icon-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0) 60%);
	pointer-events: none;
	z-index: 1;
}
.acb-icon-glossy-yes .acb-icon-box::after {
	content: "";
	position: absolute;
	top: 6%;
	left: 10%;
	width: 35%;
	height: 20%;
	background: rgba(255,255,255,0.6);
	border-radius: 50%;
	filter: blur(4px);
	transform: rotate(-25deg);
	pointer-events: none;
	z-index: 1;
}

/* Blur / glow effect: soft glowing halo behind the icon box */
.acb-icon-blur-yes .acb-icon-box {
	box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset;
}
.acb-icon-blur-yes.acb-layout-dark .acb-icon-box,
.acb-icon-blur-yes.acb-layout-light .acb-icon-box {
	position: relative;
}
.acb-icon-blur-yes .acb-icon-box {
	background-clip: padding-box;
}
.acb-icon-blur-yes .acb-visual::before {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(244,168,29,0.45) 0%, rgba(244,168,29,0) 70%);
	filter: blur(20px);
	z-index: 0;
	pointer-events: none;
}

/* Background wrap glossy / blur (section-level) */
.acb-bg-glossy-yes.acb-wrap {
	position: relative;
}
.acb-bg-glossy-yes.acb-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 45%);
	pointer-events: none;
	z-index: 0;
}
.acb-bg-blur-yes.acb-wrap {
	background-color: rgba(255,255,255,0.08);
}

/* Ensure content sits above decorative pseudo-elements */
.acb-wrap > .acb-content,
.acb-wrap > .acb-visual { position: relative; z-index: 2; }

/* =========================================================
   Responsive — Tablet
   =======================================================*/
@media (max-width: 1024px) {
	.acb-layout-light.acb-wrap,
	.acb-layout-dark.acb-wrap {
		padding: 36px 32px;
	}
	.acb-heading { font-size: 24px; }
}

/* =========================================================
   Responsive — Mobile
   =======================================================*/
/* =========================================================
   Premium Animations & Hover Effects
   =======================================================*/

/* ---- Scroll reveal ---- */
.acb-reveal-yes.acb-wrap {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity var(--acb-reveal-duration, 800ms) cubic-bezier(0.16, 1, 0.3, 1),
		transform var(--acb-reveal-duration, 800ms) cubic-bezier(0.16, 1, 0.3, 1);
}
.acb-reveal-yes.acb-wrap.acb-reveal-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---- Card hover lift ---- */
.acb-hover-lift-yes.acb-wrap {
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.acb-hover-lift-yes.acb-wrap:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(18, 35, 78, 0.18);
}

/* ---- Hover border glow ---- */
.acb-hover-glow-yes.acb-wrap {
	--acb-glow-color: #F4A81D;
	transition: box-shadow 0.35s ease;
}
.acb-hover-glow-yes.acb-wrap:hover {
	box-shadow: 0 0 0 2px var(--acb-glow-color), 0 0 30px rgba(244, 168, 29, 0.45);
}

/* ---- Button shine sweep ---- */
.acb-btn-shine-yes .acb-btn { position: relative; overflow: hidden; }
.acb-btn-shine-yes .acb-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-20deg);
	transition: left 0.65s ease;
	pointer-events: none;
	z-index: 1;
}
.acb-btn-shine-yes .acb-btn:hover::before { left: 125%; }
.acb-btn-shine-yes .acb-btn__text,
.acb-btn-shine-yes .acb-btn__icon { position: relative; z-index: 2; }

/* ---- Button icon pulse on hover ---- */
.acb-btn-pulse-yes .acb-btn__icon { transition: transform 0.3s ease; }
.acb-btn-pulse-yes .acb-btn:hover .acb-btn__icon { animation: acb-icon-pulse 0.6s ease; }
@keyframes acb-icon-pulse {
	0% { transform: scale(1); }
	40% { transform: scale(1.3); }
	100% { transform: scale(1); }
}

/* ---- Image hover zoom ---- */
.acb-img-zoom-yes .acb-image { overflow: hidden; border-radius: inherit; }
.acb-img-zoom-yes .acb-image img { transition: transform 0.5s ease; }
.acb-img-zoom-yes .acb-wrap:hover .acb-image img { transform: scale(1.06); }

/* ---- Image gentle float ---- */
.acb-img-float-yes .acb-image { animation: acb-float 4s ease-in-out infinite; }
@keyframes acb-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* ---- Icon box pulse / glow ring ---- */
.acb-iconbox-pulse-yes .acb-icon-box { position: relative; }
.acb-iconbox-pulse-yes .acb-icon-box::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 0 0 rgba(244, 168, 29, 0.55);
	animation: acb-ring-pulse 2.2s ease-out infinite;
	pointer-events: none;
	z-index: 0;
}
@keyframes acb-ring-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(244, 168, 29, 0.55); }
	70%  { box-shadow: 0 0 0 16px rgba(244, 168, 29, 0); }
	100% { box-shadow: 0 0 0 0 rgba(244, 168, 29, 0); }
}

/* ---- Animated gradient background ---- */
.acb-anim-gradient-yes.acb-layout-dark.acb-wrap {
	background-size: 200% 200%;
	animation: acb-gradient-shift 8s ease infinite;
}
.acb-anim-gradient-yes.acb-layout-light.acb-wrap {
	background-image: linear-gradient(120deg, #FBF1E7 0%, #F6E4CE 50%, #FBF1E7 100%);
	background-size: 200% 200%;
	animation: acb-gradient-shift 8s ease infinite;
}
@keyframes acb-gradient-shift {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
	.acb-reveal-yes.acb-wrap { opacity: 1; transform: none; transition: none; }
	.acb-hover-lift-yes.acb-wrap:hover { transform: none; }
	.acb-img-float-yes .acb-image { animation: none; }
	.acb-anim-gradient-yes.acb-wrap { animation: none; }
	.acb-iconbox-pulse-yes .acb-icon-box::after { animation: none; }
	.acb-btn-pulse-yes .acb-btn:hover .acb-btn__icon { animation: none; }
}

@media (max-width: 767px) {
	.acb-wrap {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}
	.acb-layout-light.acb-wrap,
	.acb-layout-dark.acb-wrap {
		padding: 32px 24px;
	}
	.acb-content { order: 2; flex: 1 1 auto; width: 100%; }
	.acb-visual { order: 1; flex: 1 1 auto; width: 100%; justify-content: center !important; }
	.acb-heading { font-size: 21px; }
	.acb-desc { font-size: 14px; }
	.acb-buttons { justify-content: center; width: 100%; }
	.acb-btn { flex: 1 1 auto; justify-content: center; }
	.acb-image img { max-width: 220px; margin: 0 auto; }
	.acb-layout-light .acb-icon-box-floating { top: -8px; right: 50%; transform: translateX(50%); }
}
