.phone-theme-btn.phone-bt-support-now {
	background: #0d08a8 !important;
	background: -moz-linear-gradient(45deg, var(--agex-primary) 8%, color-mix(in srgb, var(--agex-primary) 70%, white) 100%) !important;
	background: -webkit-linear-gradient(45deg, var(--agex-primary) 8%, color-mix(in srgb, var(--agex-primary) 70%, white) 100%) !important;
	background: linear-gradient(45deg, var(--agex-primary) 8%, color-mix(in srgb, var(--agex-primary) 70%, white) 100%) !important;
	bottom: 90px !important;
}

.phone-theme-btn {
	background-color: #fff;
	border-radius: 40px;
	position: fixed;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 50px;
	height: 50px;
	min-width: 50px;
	z-index: 99999;
	color: #fff;
	text-align: center;
	overflow: hidden;
	transition: width 0.3s ease;
	cursor: pointer;
	padding: 0 20px;
}

.phone-theme-btn svg {
	fill: #fff;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0, -50%);
	transition: transform 0.3s ease;
}

.phone-theme-btn svg path {
	fill: #fff;
}

.phone-theme-btn span {
	white-space: nowrap;
	font-size: 16px;
	opacity: 0;
	margin-left: 10px;
	transform: translateX(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	text-transform: uppercase;
	pointer-events: none;
	color: #fff;
}

.phone-theme-btn:hover {
	width: 180px; // largeur agrandie pour afficher le texte
padding: 0 10px;
}


.phone-theme-btn:hover span {
	opacity: 1;
	transform: translateX(0);
}

/* ============================= */
/* WRAPPER GÉNÉRAL */
/* ============================= */

.header-top {
	width: 100%;
	position: relative;
	z-index: 1002;
	padding: 10px 0;
	background-color: var(--agex-secondary);
}

.header-top > .container-fluid > .d-flex {
	/* Use CSS Grid: ticker (1fr) + menu (auto) -> menu keeps its intrinsic width, ticker adapts */
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
}

/* Pour les petits écrans, revenir au comportement en colonne (flex) */
@media (max-width: 991px) {
	.header-top > .container-fluid > .d-flex {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}
}

@media (max-width: 575px) {
	header #vl-header-sticky {
		padding-top: 60px;
	}
}

/* Forcer le menu à occuper uniquement l'espace dont il a besoin (override inline style flex-shrink:0) */
.header-top .menu {
	flex: 0 0 auto !important;
	min-width: 0; /* sécurité */
}

/* Le ticker/zone d'actualite prendra l'espace restant et pourra se réduire */
.header-top .container-actualite-defilante {
	flex: 1 1 0%;
	min-width: 0; /* permet au flex child de réduire au besoin */
	overflow: hidden;
}

/* S'assure que le wrapper du ticker masque le débordement */
.header-top .container-actualite-defilante .wrapper,
.header-top .container-actualite-defilante .ticker {
	overflow: hidden;
	max-width: 100%;
	display: flex;
	align-items: center;
}
.header-top .container-actualite-defilante .ticker p {
	color: #000;
}

	/* Empêcher le menu de casser la mise en page : autoriser un scroll horizontal si trop d'items */
.header-top .menu ul {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: center;
	max-width: 100%;
	overflow-x: visible;
	-webkit-overflow-scrolling: touch;
	/* Masquer les barres de défilement sur tous les navigateurs */
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE et Edge */
}

/* Masquer la scrollbar sur Chrome/Safari/Opera */
.header-top .menu ul::-webkit-scrollbar {
	display: none;
}

/* Rendre le texte du ticker lisible et tronqué s'il manque de place */
.header-top .container-actualite-defilante .ticker__item p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
}

/* ============================= */
/* MENU PRINCIPAL */
/* ============================= */

.header-top .menu > ul {
	display: flex;
	gap: 20px;
}

.header-top .menu > ul > li {
	position: relative;
}

.header-top .menu > ul > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	white-space: nowrap;
	color: #000 !important;
	font-size: 15px;
}

.header-top .menu > ul > li > a:hover {
	color: var(--agex-primary) !important;
}

	/* ============================= */
/* SOUS-MENU */
/* ============================= */

.header-top .menu .menu-subs {
	position: absolute;
	top: 100%;
	transform: translateY(20%);
	left: 0;
	background-color: white;
	flex-direction: column;
	min-width: 215px;
	padding: 10px 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	gap: 0;
	transition: all 0.3s ease;
	display: flex;
	border-radius: 10px;
	border-top: 4px solid var(--agex-secondary);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-top .menu .menu-subs li {
	width: 100%;
}

.header-top .menu .menu-subs a {
	display: block;
	padding: 8px 16px;
	text-decoration: none;
	white-space: nowrap;
	color: black;
	transition: all 0.3s ease;
}

.header-top .menu .menu-subs a:hover {
	transform: translateX(5px);
	color: var(--agex-secondary);
}

/* ============================= */
/* AFFICHAGE AU HOVER */
/* ============================= */

.header-top .menu .menu-item-has-children:hover > .menu-subs {
	opacity: 1;
	transform: translateY(0);
	z-index: 1000;
	pointer-events: auto;
}

.contact-map {
	width : 100%;
	height: 100%;
	border-radius: 16px;
	position: relative;
}

.contact-map img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

/* ============================= */
/* HELPERS FIRMS SIMPLIFIED AREA */
/* ============================= */

.helpers-firms-simplified-area {
	/* garde seulement l'espacement global ; le fond est appliqué au bloc interne */
	padding: 0;
	position: relative;
}

.helpers-firms-simplified-area::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 0;
	width: 100%;
	height: 50%;
	background-color: var(--bg6);
}

/* Le fond coloré et le décor sont maintenant appliqués au bloc centré .helpers-firms-simplified */
.helpers-firms-simplified {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10%;
	padding: 50px 26px;
	background: var(--agex-secondary);
	color: var(--white-color);
	border-radius: 12px;
	position: relative;
	margin: 0 auto; /* centre dans le container */
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 6px 20px rgba(2,64,56,0.08);
}

@media (max-width: 991px) {
	.helpers-firms-simplified {
    	flex-direction: column;
		gap: 50px;
	}
}

/* Ajustements pour petit écran : faire occuper toute la largeur et réduire marges */
@media (max-width: 768px) {
	.helpers-firms-simplified {
		width: calc(100% - 32px);
		max-width: none;
		margin: 0 16px;
		padding: 50px 16px;
		border-radius: 12px;
	}

	.helpers-firms-simplified::after {
		right: -40px;
		top: -30px;
		width: 160px;
		height: 160px;
	}
}

.helpers-firms-simplified .icon {
	position: absolute;
	right: -75px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.1;
	height: 140%;
}

.helpers-firms-simplified .icon svg {
	width: auto;
	height: 100%;
}

.helpers-firms-simplified .icon svg path {
	fill: white;
}

.helpers-firms-simplified .left h2 {
	font-weight: 800;
	color: white;
}

.helpers-firms-simplified .left p {
	color: white
}

@media (max-width: 991px) {
	.helpers-firms-simplified .left h2,
	.helpers-firms-simplified .left p {
		text-align: center;
	}
}

@media (max-width: 576px) {
	.helpers-firms-simplified .left h2 {
		font-size: 22px;
	}
}

.helpers-firms-simplified .right {
	flex-shrink: 0;
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item svg {
	width: 32px;
	height: auto;
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item.active svg path {
	fill: white;
}

.about-wrapper-5 .about-content .award-items-box svg {
	width: 91px;
}

@media (max-width: 1200px) {
	.about-wrapper-5 .about-content .award-items-box svg {
		width: 50%;
	}

	.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item svg {
		width: 25%;
		height: auto;
	}

	.about-wrapper-5 .about-content .award-items-box p {
		font-size: 18px;
	}
}

@media (max-width: 450px) {
	.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item {
		padding: 30px 15px;
	}

	.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item .content p {
		font-size: 13px;
	}

	.choose-us-wrapper-2 .choose-us-image {
		height: auto;
	}

	.choose-us-wrapper-2 .choose-us-image img {
		object-fit: contain;
		width: 100%;
		height: auto;
	}
}

.header-main .logo {
	width: 180px;
}

@media (max-width: 500px) {
    .mean__menu-wrapper a.gt-theme-btn-main {
		display: none;
	}
}

.expertise-slider .swiper-slide {
	height: auto;
}

.about-small-image .social-icon {
	top: 10%;
	left: 10%;
	background-color: rgba(188, 224, 252, 0.4);
	backdrop-filter: blur(2px);
	width: 50px;
	height: 50px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.about-small-image .social-icon svg {
	width: 20px;
}

.about-small-image .social-icon svg path {
	fill: white;
}

.about-small-image .social-icon:hover {
	background-color: rgba(188, 224, 252, 0.8);
}

.spacer {
	height: 150px;
}

/* Hero video background */
.hero-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -2;
}

.vl-logo {
	width: 135px;
}

.liens-utiles-cabinet {
	margin-top: 60px;
	margin-bottom: 60px;
}

/* ============================= */
/* FIN HELPERS FIRMS SIMPLIFIED AREA */
/* ============================= */

/* ============================= */
/* VKLD-GRAY-BG-2 (manquant dans style.css) */
/* ============================= */

.vkl-gray-bg-2 {
	background: var(--vkl-bg-gray-bg-2); /* #ebf2ff */
}

/* ============================= */
/* VL-WORK-WRAP — Étapes process */
/* ============================= */

.vl-work-wrap {
	padding: 32px 28px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid rgba(62, 102, 243, 0.12);
	transition: 0.3s;
	position: relative;
	z-index: 1;
	height: 100%;
}

.vl-work-wrap-num {
	position: absolute;
	top: 24px;
	right: 24px;
}

.vl-work-wrap-num span {
	font-size: 44px;
	line-height: 1;
	font-weight: 700;
	color: rgba(62, 102, 243, 0.12);
	transition: 0.3s;
	display: inline-block;
}

.vl-work-wrap-icon {
	height: 64px;
	width: 64px;
	border-radius: 50%;
	background: var(--agex-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: 0.3s;
	font-size: 26px;
	color: #fff;
}

.vl-work-wrap-icon .fa-duotone,
.vl-work-wrap-icon [class*="fa-"] {
	--fa-primary-color: #fff;
	--fa-secondary-color: rgba(255, 255, 255, 0.55);
	--fa-secondary-opacity: 0.55;
}

.vl-work-wrap .title {
	font-size: 18px;
	font-weight: 600;
	color: var(--agex-secondary);
	margin-bottom: 12px;
	transition: 0.3s;
	line-height: 1.4;
}

.vl-work-wrap .para {
	font-size: 15px;
	line-height: 1.65;
	color: #6e7485;
	transition: 0.3s;
	margin: 0;
}

/* — Hover — */
.vl-work-wrap:hover {
	background: var(--agex-primary);
	border-color: var(--agex-primary);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(62, 102, 243, 0.25);
}

.vl-work-wrap:hover .vl-work-wrap-icon {
	background: rgba(255, 255, 255, 0.2);
}

.vl-work-wrap:hover .vl-work-wrap-icon .fa-duotone,
.vl-work-wrap:hover .vl-work-wrap-icon [class*="fa-"] {
	--fa-primary-color: #fff;
	--fa-secondary-color: rgba(255, 255, 255, 0.55);
}

.vl-work-wrap:hover .vl-work-wrap-num span {
	color: rgba(255, 255, 255, 0.18);
}

.vl-work-wrap:hover .title {
	color: #fff;
}

.vl-work-wrap:hover .para {
	color: rgba(255, 255, 255, 0.8);
}

/* — Responsive — */
@media (max-width: 767px) {
	.vl-work-wrap {
		padding: 24px 20px;
	}
}

/* — Lien "En savoir plus" dans la carte — */
.vl-work-wrap .title a {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

/* — Card entière cliquable — */
a.vl-work-wrap--link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}



.vl-work-wrap:hover .title a,
a.vl-work-wrap--link:hover .title,
a.vl-work-wrap--link:hover .para {
	color: #fff;
}

/* — Indicateur "En savoir plus" — */
.vl-work-wrap-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 600;
	color: var(--agex-primary);
	transition: color 0.3s, gap 0.3s;
}

.vl-work-wrap-more i {
	font-size: 12px;
	transition: transform 0.3s;
}

.vl-work-wrap:hover .vl-work-wrap-more {
	color: #fff;
	gap: 12px;
}

.vl-work-wrap:hover .vl-work-wrap-more i {
	transform: translateX(4px);
}

.form-check .form-check-input {
	width: 18px;
	height: 18px;
}

.form-check label {
	font-size: 13px;
	line-height: 1.2;
}



.vl-work-wrap-icon img {
	max-width: 60%;
}

/* ============================= */
/* WORK PROCESS 8 (createur)     */
/* ============================= */

/* Icône : fond bleu + SVG contenu dans le cercle */
.work__process8-icon {
	display: flex;
	justify-content: center;
}

.work__process8-icon span {
	background: var(--agex-primary) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 18px;
}

.work__process8-icon span img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Numéro d'étape */
.work__process8-step {
	display: inline-block;
	font-size: 15.6px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 14px;
}

/* Flèche entre les étapes (desktop uniquement) */
@media (min-width: 1200px) {
	.work__process8-row .col-xl-3 {
		position: relative;
	}

	.work__process8-row .col-xl-3:not(:nth-child(4)) .work__process8::after {
		content: '\f061'; /* fa-arrow-right */
		font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', 'FontAwesome';
		font-weight: 900;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: -14px;
		font-size: 18px;
		color: #fff;
		pointer-events: none;
		z-index: 1;
	}
}

/* ============================= */
/* FOOTNOTES (astérisques)       */
/* ============================= */

.footnote-ref {
	font-size: 0.75em;
	font-weight: 700;
	color: var(--agex-primary);
	position: relative;
	top: -0.25em;
	line-height: 0;
}

.footnote-block {
	font-size: 13px;
	color: #6e7485;
	line-height: 1.65;
	margin-top: 12px;
	margin-bottom: 20px;
}

/* ============================= */
/* SECTION NOTRE MÉTHODE         */
/* ============================= */

.section-methode .sub-title {
	color: var(--agex-primary) !important;
}

.section-methode .vl-work-wrap .title {
	color: var(--agex-primary) !important;
}

.section-methode .vl-work-wrap-icon {
	background: var(--agex-secondary) !important;
}

.section-methode .vl-work-wrap:hover .vl-work-wrap-icon {
	background: rgba(10, 24, 52, 0.25) !important;
}

.section-methode .vl-work-wrap:hover .title {
	color: #fff !important;
}

/* ============================= */
/* SECTION NOS EXPERTISES        */
/* ============================= */

.section-expertises .sub-title,
.section-expertises .vl-work-wrap .title {
	color: var(--agex-primary) !important;
}

.section-expertises .vl-work-wrap-icon {
	background: var(--agex-secondary) !important;
}

.section-expertises .vl-work-wrap:hover .vl-work-wrap-icon {
	background: rgba(10, 24, 52, 0.25) !important;
}

.section-expertises .vl-work-wrap:hover .title {
	color: #fff !important;
}

/* ============================= */
/* SECTIONS AVIS : désactivation */
/* des animations SAL            */
/* ============================= */

.swiper.testimonialSwiperActive3,
.vl-testimonial-large-thumb {
	opacity: 1 !important;
	transform: none !important;
	transition-duration: 0s !important;
}

/* sous-titre "Avis clients" dans les sections à fond vkl-gray-bg-4 */
.vkl-gray-bg-4 .sub-title[data-sal] {
	opacity: 1 !important;
	transform: none !important;
	transition-duration: 0s !important;
}

/* ============================= */
/* BREADCRUMB pages secondaires  */
/* ============================= */

.breadcrumb-wrapper {
	padding-top: 100px !important;
	padding-bottom: 50px !important;
}

/* ============================= */
/* FAQ ARROW                     */
/* ============================= */

.vl-faqs4 .vl-accordion-item .vl-accordion-button.collapsed span.vl-faqarrow {
	color: white;
}

.vl-faqs2 .vl-accordion-item .vl-accordion-button.collapsed span.vl-faqarrow {
	color: white;
}

/* ============================= */
/* OFFCANVAS - menu mobile       */
/* ============================= */

.vl-offcanvas-overlay {
	z-index: 1100 !important;
}

.vl-offcanvas {
	z-index: 1101 !important;
}

.vl-offcanvas-menu nav ul li a {
	text-transform: uppercase;
	padding-right: 28px !important;
}

.vl-offcanvas-header-top {
	gap: 12px;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 24px;
}

.vl-offcanvas-header-top a {
	font-size: 14px;
	font-weight: 600;
	color: inherit;
	display: flex;
	align-items: center;
	gap: 8px;
}

.vl-offcanvas-header-top a i {
	width: 18px;
	text-align: center;
}

/* ============================= */
/* CONTACT - hover cards         */
/* ============================= */

.contact__iconbox-inner:hover .contact__iconbox-inner-content .title,
.contact__iconbox-inner:hover .contact__iconbox-inner-content .info-desc,
.contact__iconbox-inner:hover .contact__iconbox-inner-content p {
	color: #fff !important;
}
