.phone-theme-btn.phone-bt-support-now {
	background: #2e3192 !important;
	background: -moz-linear-gradient(45deg, #1c8d8b 8%, color-mix(in srgb, #1c8d8b 70%, white) 100%) !important;
	background: -webkit-linear-gradient(45deg, #1c8d8b 8%, color-mix(in srgb, #1c8d8b 70%, white) 100%) !important;
	background: linear-gradient(45deg, #1c8d8b 8%, color-mix(in srgb, #1c8d8b 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: #1c8d8b;
}

.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;
	}
}

/* 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: #fff;
}

	/* 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: white !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 #1c8d8b;
	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: #1c8d8b;
}

/* ============================= */
/* 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;
}
/* ============================= */
/* FIN HELPERS FIRMS SIMPLIFIED AREA */
/* ============================= */

