/* ============================================================
   Sticky CTA Widget
   ============================================================ */

/* ── Widget container ───────────────────────────────────────── */
.sticky-cta {
	position: fixed;
	bottom: 36px;
	right: 0;
	z-index: 9998;
	display: flex;
	align-items: center;
	background: #000000;
	border-radius: 0;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.55);
	padding: 14px 20px 14px 16px;
	transform: translateX(100%);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
				opacity 0.5s ease;
	pointer-events: none;
	max-width: 520px;
}

.sticky-cta.is-visible {
	transform: translateX(-36px);
	opacity: 1;
	pointer-events: auto;
}

/* ── Close button ───────────────────────────────────────────── */
.sticky-cta__close {
	position: absolute;
	top: 6px;
	right: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	line-height: 0;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.sticky-cta__close:hover,
.sticky-cta__close:focus {
	opacity: 1;
	background:none!important;
}

/* ── Body layout ────────────────────────────────────────────── */
.sticky-cta__body {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width:100%!important;
	justify-content:flex-start;
	padding-right:20px;
}

/* ── Icon ───────────────────────────────────────────────────── */
.sticky-cta__icon-wrap {
	flex-shrink: 0;
}

.sticky-cta__icon {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

/* ── Text ───────────────────────────────────────────────────── */
.sticky-cta__heading {
	color: #ffffff;
	font-size: 13px;
	font-weight:bold;
	line-height: 1.35;
	margin: 0;
	/* white-space: nowrap; */
	width:200px;
	max-width:100%;
}

/* ── CTA Button ─────────────────────────────────────────────── */
.sticky-cta__btn {
	display: inline-block;
	flex-shrink: 0;
	background: #f4af00;
	color: #000!important;
	font-size: 14px;
	/* font-weight: 700; */
	/* text-transform: uppercase; */
	/* letter-spacing: 0.5px; */
	padding: 8px 16px;
	border-radius: 0;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.sticky-cta__btn:hover,
.sticky-cta__btn:focus {
	background: #eaeaea;
}

/* ── Responsive (Sticky Widget) ─────────────────────────────── */
@media (max-width: 600px) {
	.sticky-cta {
		bottom: 0;
		/* border-radius: 6px 6px 0 0; */
		right: 0;
		left: 0;
		max-width: 100%;
		transform: translateY(100%);
		padding: 12px 16px;
	}

	.sticky-cta.is-visible {
		transform: translateY(0);
	}

	.sticky-cta__body{
		width:100%!important;
	}

	.sticky-cta__heading {
		white-space: normal;
		font-size: 13px;
		width:auto;
	}

	.sticky-cta__btn {
		font-size: 12px;
		padding: 8px 16px;
		margin-left:auto;
	}

	.sticky-cta__icon {
		width: 36px;
		height: 36px;
	}
}


/* ============================================================
   Persistent CTA Button (replaces widget after dismiss, >= 1080px)
   ============================================================ */
.sticky-cta-persistent-btn {
	display: none;
	position: fixed;
	bottom: 36px;
	right:36px;
	z-index: 9998;
	background: #f4af00;
	color: #000 !important;
	font-size: 16px;    
	padding: 12px 18px !important;
	border-radius: 0;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
	transform: translateX(100%);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
				opacity 0.4s ease,
				background 0.2s ease;
	pointer-events: none;
}

@media (min-width: 1080px) {
	.sticky-cta-persistent-btn {
		display: block;
	}
}

.sticky-cta-persistent-btn.is-visible {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}

.sticky-cta-persistent-btn:hover,
.sticky-cta-persistent-btn:focus {
	background: #eaeaea;
}


/* ============================================================
   Slide-Out Panel (Get Pricing / Contactez-nous)
   ============================================================ */

/* ── Overlay ────────────────────────────────────────────────── */
.sticky-cta-panel-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sticky-cta-panel-overlay.is-open {
	opacity: 1;
	visibility: visible;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

/* ── Panel container ────────────────────────────────────────── */
.sticky-cta-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: 640px;
	max-width: 100%;
	height: 100%;
	background: #ffffff;
	z-index: 10001;
	transform: translateX(100%);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.sticky-cta-panel.is-open {
	transform: translateX(0);
	box-shadow: -4px 0 30px rgba(0, 0, 0, 0.25);
}

/* ── Close button ───────────────────────────────────────────── */
.sticky-cta-panel__close {
	position: absolute;
	top: 28px;
	right: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0px;
	line-height: 0;
	z-index: 2;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.sticky-cta-panel__close svg{
	width:44px;
	height:44px;
}

.sticky-cta-panel__close svg path {
	stroke: #333333;
	stroke-width:1px;
}

.sticky-cta-panel__close:hover,
.sticky-cta-panel__close:focus {
	background: #eaeaea !important;
}

/* ── Inner content ──────────────────────────────────────────── */
.sticky-cta-panel__inner {
	padding:32px;
}

/* ── Heading ────────────────────────────────────────────────── */
.sticky-cta-panel__heading {
	/* font-size: 32px; */
	/* font-weight: 800; */
	color: #1a1a1a;
	margin: 0 0 24px;
	/* letter-spacing: 0.5px; */
}

/* ── Phone bar ──────────────────────────────────────────────── */
.sticky-cta-panel__phone-bar {
	background: #f5f5f5;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	padding: 16px 20px;
	text-align: center;
	margin-bottom: 28px;
}

.sticky-cta-panel__phone-label {
	display: block;
	font-weight: 400;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 6px;
	font-size: 0.75rem;
    letter-spacing: .675px;
}

.sticky-cta-panel__phone-number {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 1rem;
	color: #000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sticky-cta-panel__phone-number:hover {
	color: #f4af00;
}

.sticky-cta-panel__phone-number svg {
	flex-shrink: 0;
}

.sticky-cta-panel__phone-number svg path{
	fill:#f4af00;
	stroke:none;
}

.sticky-cta-panel form.hsfc-Form button.hsfc-Button{
	width:100%;
}

/* ── Form container ─────────────────────────────────────────── */
.sticky-cta-panel__form-container {
	margin-top: 0;
}

/* ── Body scroll lock when panel is open ────────────────────── */
body.sticky-cta-panel-open {
	overflow: hidden;
}

/* ── Responsive (Panel) ─────────────────────────────────────── */
@media (max-width: 520px) {
	.sticky-cta-panel {
		width: 100%;
	}

	.sticky-cta-panel__inner {
		padding: 44px 20px 24px;
	}

	.sticky-cta-panel__heading {
		font-size: 20px;
	}
}