/*==============================================================================

 * Template Name: Grop - Agency & Portfolio HTML Template
 * Author: ixtheme - (https://themeforest.net/user/ixtheme)
 * Description: Creative Portfolio & Agency HTML Template
 * Version: 1.0
 * Copyright 2020 ixtheme

==============================================================================
    
    [Table of CSS contents]
    ===================
	
    01. GOOGLE-FONT & DEFAULT CSS
    02. utilities classes
    03. Section Padding
	04. Section Header
    05. header-&-landing-content-wrapper
    06. Banner Wrapper
    07. about-info-wrapper style
    08. video-wrapper style
    09. work-wrapper style
    10. work-overlay style
    11. work-carousel style
    12. flickity-button style
    13. flickity-dots style
    14. work-filter button style
    15. testimonials-wrapper style
    16. counter-wrapper style
    17. CTA-wrapper style
    18. html5-video style
    19. services style
    20. team style
    21. partner style
    22. pricing style
    23. FAQ style
    24. privacy style
    25. blog style
    26. contact-wrapper style
    27. footer-wrapper style

    28. END

==============================================================================*/

/*====  GOOGLE-FONT & DEFAULT CSS  ====*/
@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@500;600;700;800&display=swap');
body {
 	color: #212529;
 	font-size: 16px;
 	line-height: 1.8;
 	font-weight: 500;
 	font-family: 'Spartan', sans-serif;
 	overflow-x: hidden;
}
::-moz-selection {
	color: #fff;
	background-color: #000;
	text-shadow: none;
}
::selection {
	color: #fff;
	background-color: #000;
	text-shadow: none;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}
h1, .h1 {
	font-size: 40px;
}
@media (max-width: 767px) {
	h1, .h1 {
		font-size: 32px;
	}
}
h2, .h2 {
	font-size: 32px;
}
@media (max-width: 767px) {
	h2, .h2 {
		font-size: 28px;
	}
}
h3, .h3 {
	font-size: 28px;
}
@media (max-width: 767px) {
	h3, .h3 {
		font-size: 24px;
	}
}
h4, .h4 {
	font-size: 24px;
}
@media (max-width: 767px) {
	h4, .h4 {
		font-size: 20px;
	}
}
h5, .h5 {
	font-size: 20px;
    line-height: 1.7;
}
h6, .h6 {
	font-size: 16px;
}
a:focus,
button:focus {
	outline: 0;
}
a {
	text-decoration: none;
	display: inline-block;
}
a:hover, a:active, a:focus {
	text-decoration: none;
	outline: 0;
}
a:hover {
	color: initial;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
li {
	padding: 0;
	margin: 0;
}
mark {
	color: #FFC25C;
	padding: 0;
	margin: 0;
	background-color: transparent;
}

/*==== utilities classes ====*/
.font-primary {
	font-family: 'Spartan', sans-serif;
}
.font-w-500 {
	font-weight: 500 !important;
}
.font-w-600 {
	font-weight: 600 !important;
}
.font-w-700 {
	font-weight: 700 !important;
}
.font-w-800 {
	font-weight: 800 !important;
}
.text-warning {
	color: #ffbc41;
}
.bg-soft-pink {
	background-color: #fff;
}
.bg-soft-blue {
	background-color: #F3F3F5;
}
.bg-soft-green {
	background-color: #e0f1ff;
}
.bg-dark-purple {
	background-color: #1b1927;
}
.line-link {
	position: relative;
	z-index: 1;
	color: #3D45D3;
	-webkit-transition: .3s ease-out;
	-o-transition: .3s ease-out;
	transition: .3s ease-out;
}
.line-link:hover {
	color: #3D45D3;
}
.line-link::before {
	position: absolute;
	content: "";
	height: 1px;
	width: 0;
	right: 0;
	bottom: 3px;
	z-index: -1;
	background-color: #3e47d7;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.line-link:hover::before {
	width: 100%;
	right: auto;
	left: 0;
}
.butn {
	background-color: transparent;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-transform: capitalize;
	font-size: 15px;
	height: 55px;
	line-height: 57px;
	padding: 0 30px;
	border-radius: 42px;
	position: relative;
	z-index: 1;
	border: 0;
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.butn.butn-sm {
	font-size: 13px;
	height: 45px;
	line-height: 47px;
	padding: 0 22px;
}
.butn.butn-sm span.fe {
	font-size: 17px;
}
.butn-light
color: #fff;
}
,
color: #fff;
.butn:hover {
	color: #3e47d7;
}
.butn::before,
.butn::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	border-radius: 42px;
	z-index: -1;
	pointer-events: none;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.butn::before {
	border: 1px solid #bbbbbb;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
	opacity: 0;
	transition-delay: .15s;
}
.butn::after {
    background-color: #3E47D7;
}
.butn-light::after {
    background-color: #3D45D3;
}
.butn:hover::before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.butn:hover::after {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0;
}
.butn span.fe {
    font-size: 20px;
    position: relative;
    top: 3px;
    margin-left: 5px;
}
@media (max-width: 575px) {
	.butn {
	    font-size: 14px;
	    height: 50px;
	    line-height: 52px;
	    padding: 0 25px;
	}
}

.bg-cover {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hover-3d {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.hover-3d:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	-o-transform: translateY(-3px);
	transform: translateY(-3px);
}

.icon-list-item {
	position: relative;
	padding-left: 35px;
}
.icon-list-item .icon {
    color: #fff;
    background-color: #3D45D3;
    display: inline-block;
    height: 18px;
    width: 18px;
    text-align: center;
    font-size: 11px;
    line-height: 2;
    position: absolute;
    left: 0;
    top: 3px;
}

.overlay {
	position: relative;
	z-index: 1;
}
.overlay::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background-color: #F3F3F5;
	opacity: .7;
	top: 0;
	left: 0;
	z-index: -1;
}
.overlay-50::after {
	opacity: .5;
}
.overlay-60::after {
	opacity: .6;
}
.overlay-70::after {
	opacity: .7;
}
.overlay-80::after {
	opacity: .8;
}
.overlay-90::after {
	opacity: .9;
}

/**** Section Padding ****/
.wrapper {
	padding: 100px 0;
}
@media (max-width: 575px) {
	.wrapper {
		padding: 70px 0;
	}
	.about-wrapper > .pb-100 {
		padding-bottom: 70px !important;
	}
	.about-wrapper > .pt-100 {
		padding-top: 70px !important;
	}
}
.section-title {
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 575px) {
	.lead {
	    font-size: 1.1rem;
	}
	.section-title {
	    font-size: 28px;
	}
}
.page-header {
	font-size: 110px;
	line-height: 1;
	color: #E0F1FF;
}
@media (max-width: 991px) {
	.page-header {
		font-size: 70px;
	}
}
@media (max-width: 575px) {
	.page-header {
		color: #a5a1a5;
		font-size: 48px;
		text-align: left !important;
		text-transform: capitalize !important;
		font-weight: 700 !important;
		position: absolute;
	}
}

/**** Section Header ****/
.section-header h2 {
	text-transform: uppercase;
}

/*====  header-&-landing-content-wrapper  ====*/
.grop-header {
	position: sticky;
	top: 0;
	z-index: 9999;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
	transition: all .2s;
}
.grop-header::after {
	position: absolute;
	content: "";
	height: 0;
	width: 100%;
	background-color: rgba(255,255,255,.98);
	top: 0;
	left: 0;
	z-index: -1;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.grop-header.sticky {
	box-shadow: 0 0 25px -15px #ddd;
}
.grop-header.sticky::after {
	height: 100%;
}
.grop-header .navbar {
	padding: 25px 0;
}
.grop-header .navbar-brand {
	font-weight: 700;
	text-transform: uppercase;
}
.grop-header .navbar-brand img {
	height: 35px;
	margin-right: 5px;
}
.grop-header .navbar-brand span {
	font-size: 22px;
	position: relative;
	top: 5px;
}
.grop-header .navbar-nav {
	margin-left: 30px;
}
.grop-header .nav-link {
	color: #4d486f !important;
	font-weight: 600;
	padding: 10px 20px !important;
	font-size: 15px;
}
.grop-header a {
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.grop-header .active .nav-link,
.grop-header .active.nav-link,
.grop-header .nav-link:hover {
    color: #3D45D3 !important;
}
.grop-header .navbar-toggler {
    padding: 0;
    font-size: 23px;
    border-radius: 2px;
    color: #2e2b44 !important;
    border-color: #a19dc1 !important;
    height: 40px;
    width: 40px;
    position: relative;
}
.grop-header .navbar-toggler span {
    display: block;
    position: absolute;
    top: 7px;
    left: 8px;
    -webkit-transition: transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
}
.grop-header .navbar-toggler[aria-expanded="true"] .show,
.grop-header .navbar-toggler[aria-expanded="false"] .hidden {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}
.grop-header .navbar-toggler[aria-expanded="true"] .hidden {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.grop-header .dropdown-menu {
	border: 0;
    text-align: center;
}
.grop-header .dropdown-item {
    font-size: 14px;
    padding: 5px 20px;
    padding-right: 45px;
    position: relative;
}
.grop-header .dropdown-item.active,
.grop-header .dropdown-item:active {
    color: initial;
    background-color: transparent;
}
.grop-header .dropdown-item:focus,
.grop-header .dropdown-item:hover {
    color: #3e47d7;
    background-color: transparent;
}
.grop-header .dropdown-toggle::after {
	display: none;
}

.author-image {
	height: 150px;
	width: 150px;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 991px) {
	.grop-header .dropdown-menu {
		display: block;
		opacity: 0;
		min-width: 11rem;
		visibility: hidden;
		transition: 0.2s;
		-webkit-transition: 0.2s;
		-moz-transition: 0.2s;
		-ms-transition: 0.2s;
		-o-transition: 0.2s;
		left: 50%;
		border: 0;
		padding: 15px 0;
		text-align: left !important;
		-webkit-transform: translate(-50%, 15px);
		-ms-transform: translate(-50%, 15px);
		-o-transform: translate(-50%, 15px);
		transform: translate(-50%, 15px);
	}
	.grop-header .dropdown-menu.dropdown-column {
		min-width: 25rem;
	}
	.grop-header .dropdown:hover .dropdown-menu {
		opacity: 1;
		visibility: visible;
		box-shadow: 0 10px 30px rgba(22,28,45,.10);
		-webkit-transform: translate(-50%, 5px);
		-ms-transform: translate(-50%, 5px);
		-o-transform: translate(-50%, 5px);
		transform: translate(-50%, 5px);
	}
	.grop-header .dropdown-item::after {
	    position: absolute;
	    content: "\e916";
	    font-size: 17px;
	    right: 25px;
	    top: 8px;
	    font-family: 'feathericons';
	    color: #3D45D3;
	    opacity: 0;
	    -webkit-transition: all .15s ease-out;
	    -o-transition: all .15s ease-out;
	    transition: all .15s ease-out;
	}
	.grop-header .dropdown-item:hover::after {
		opacity: 1;
	    right: 20px;
	    top: 0px;
	}
}
@media (max-width: 991px) {
	.grop-header .dropdown-toggle::after {
		display: initial !important;
	    content: "\e92e";
		font-family: 'feathericons';
		border: 0;
		position: absolute;
		right: 15px;
	}
	.navbar-collapse {
		position: fixed;
		background-color: #fff;
		width: calc(100% - 40px);
		height: auto;
		max-height: calc(100% - 130px);
		z-index: 9999;
		border-radius: 3px;
		box-shadow: 0 1.5rem 4rem rgba(22,28,45,.15);
		padding: 0 20px;
		text-align: center;
		top: 110px;
		left: 20px;
	}
	.navbar-collapse.collapsing,
	.navbar-collapse.show {
		-webkit-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;
		transition-property: opacity, transform, -webkit-transform;
		-webkit-transform-origin: top;
		transform-origin: top;
	}
	.navbar-collapse.show {
		overflow-x: hidden;
		overflow-y: auto;
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	.navbar-collapse.collapsing {
		opacity: 0;
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	.grop-header .navbar-nav {
	    padding-top: 25px;
		padding-bottom: 10px;
		width: 320px;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: left;
	}
	.navbar-collapse .butn.butn-sm {
		margin-top: 5px;
		margin-bottom: 25px;
		width: 320px;
		max-width: 100%;
	}
	.navbar-collapse .nav-link {
	    font-size: 16px !important;
	    padding: 4px 20px !important;
	}
	.grop-header .active .nav-link, .grop-header .active.nav-link, .grop-header .nav-link:hover {
		background-color: #e9f3ec !important;
		border-radius: 5px;
	}
}
@media (max-width: 400px) {
	.grop-header .navbar-nav {
		width: 220px;
	}
	.navbar-collapse .butn.butn-sm {
		width: 220px;
	}
}


/*====  Banner Wrapper ====*/
.banner-wrapper {
	padding: 120px 0 150px 0;
}
.banner-wrapper .block h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.6;
	color: #4d486f;
}
.banner-wrapper .block .display-2 {
	color: #4d486f;
	font-size: 4.5rem;
	margin-left: -7px;
}
@media (max-width: 991px) {
	.banner-wrapper .block .display-2 {
		font-size: 58px;
		margin-left: -5px;
	}
}
@media (max-width: 767px) {
	.banner-wrapper .block .display-2 {
		font-size: 38px;
		margin-left: 0;
	}
}
@media (max-width: 1200px) {
	.banner-wrapper .block h2 {
	    font-size: 42px;
	}
}
@media (max-width: 767px) {
	.banner-wrapper .block h2 {
	    font-size: 36px;
	}
}
@media (max-width: 400px) {
	.banner-wrapper {
	    padding: 50px 0 80px 0;
	}
	.banner-wrapper .block h2 {
	    font-size: 24px;
	}
}
.banner-wrapper .block .scroll-bottom {
	height: 60px;
	width: 60px;
	line-height: 60px;
	border-color: #999 !important;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
@media (max-width: 575px) {
	.banner-wrapper .block .scroll-bottom {
		height: 45px;
		width: 45px;
		line-height: 45px;
	}
}
.banner-wrapper .block .scroll-bottom:hover {
	background-color: #3E46D5;
	color: #fff !important;
	border-color: #3E46D5 !important;
}
.text-marked {
	color: #3E46D5 !important;
}
.banner-wrapper .block p {
	font-size: 18px;
	line-height: 1.8;
}
.banner-wrapper .block p.set-max-width {
	max-width: 700px;
}
.social-links a {
    color: #212529;
    padding: 12px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    margin-right: 10px;
}
@media (max-width: 575px) {
	.social-links a {
	    margin-right: 0;
	}
}
.social-links a:first-child {
	margin-left: -12px;
}
.social-links a::after {
	position: absolute;
	content: "";
    height: 45px;
    width: 45px;
    top: 3px;
    left: -2px;
    z-index: -1;
    background-color: #E0F1FF;
    pointer-events: none;
    border-radius: 50px;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);
}
.social-links a:hover::after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.social-links a:hover {
    color: #1b1927 !important;
}
.banner-bottom-nav {
    line-height: 0;
}
.banner-bottom-nav .social-links a {
    font-size: 22px;
    margin-right: 15px;
}
.banner-bottom-nav .social-links a::after {
	height: 50px;
	width: 50px;
	top: -2px;
	left: -2px;
}
.banner-bottom-nav .social-links {
	position: relative;
}
.banner-bottom-nav .social-links::after {
	content: "";
	height: 1px;
	width: calc(100% - 200px);
	background-color: #d9d9d9;
	left: 200px;
	position: absolute;
	top: 50%;
}
@media (max-width: 575px) {
	.banner-wrapper {
	    padding: 80px 0 110px 0;
	}
	.banner-wrapper .block h2 {
	    font-size: 32px;
	}
	.banner-wrapper .block p {
	    font-size: 15px;
	}
	.banner-bottom-nav .social-links::after {
		width: calc(100% - 200px);
		left: 200px;
	}
}

/*====  about-info-wrapper style  ====*/
.about-info-list {
	padding-left: 25px;
	position: relative;
}
.about-info-list::after {
    position: absolute;
    content: "";
    height: calc(100% + 10px);
    width: 7px;
    left: 0;
    top: -80px;
    background-color: #3e46d5;
    border-radius: 15px;
}
.about-info-list-item {
	padding: 20px 30px;
	padding-left: 45px;
	position: relative;
}
.about-info-list-item::before {
    position: absolute;
    content: "";
    height: 17px;
    width: 10px;
    border: 5px solid #4d486f;
    border-radius: 20px;
    left: 12px;
    top: 26px;
    z-index: 1;
    border-left: 0;
}
.about-info-list-title {
	position: relative;
}
.about-info-list-title::after {
    position: absolute;
    content: "";
    height: 7px;
    width: 55px;
    background-color: #8fd4a4;
    border-radius: 15px;
    left: -70px;
	top: 11px;
	box-shadow: 0 -36px 0 #8fd4a4;
}
.about-info-list-title::before {
    position: absolute;
    content: "";
    height: 17px;
    width: 10px;
    border: 5px solid #4d486f;
    border-radius: 20px;
    left: -33px;
    top: 6px;
    z-index: 1;
    border-left: 0;
}

/*====  video-wrapper style  ====*/
.video-wrapper {
	height: 550px;
	max-width: 1200px;
	background-color: #fafafa;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.video-wrapper::after {
	position: absolute;
	content: "";
	height: calc(100% + 40px);
	width: calc(100% + 40px);
	top: -20px;
	left: -20px;
	border: 20px solid #fff1ff;
	z-index: -1;
	-webkit-transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
}
.open-video::after {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.video-wrapper a {
	color: #212529;
	font-weight: 600;
}
.popup-video .player-icon {
    display: inline-block;
    padding: 25px 60px;
    text-align: center;
    margin: auto;
    border-radius: 150px;
    background-color: #ffd9fe;
	-webkit-transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
}
.popup-video:hover .player-icon {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.player-icon i {
    position: relative;
    top: 2px;
    font-style: normal;
}
@media (max-width: 767px) {
	.video-wrapper {
	    height: 380px;
	}
	.video-wrapper a {
	    font-size: 15px;
	}
	.popup-video .player-icon {
	    padding: 15px 35px;
	}
}

/*====  mfp-custom style  ====*/
.mfp-move-horizontal .mfp-with-anim {
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	-o-transform: translateX(-50px);
	transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
	opacity: 0;
	-webkit-transform: translateX(50px);
	-ms-transform: translateX(50px);
	-o-transform: translateX(50px);
	transform: translateX(50px);
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-bg {
	opacity: .8;
}
.mfp-arrow::before,
.mfp-arrow::after {
	margin-top: 0;
	margin-left: 0;
	border: 0;
	color: #ddd;
	background: rgb(49, 52, 57);
	line-height: 40px;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	opacity: 1;
	border-radius: 1px;
}
.mfp-arrow:hover::before,
.mfp-arrow:hover::after {
	color: #777;
}
.mfp-arrow::before {
	content: "🠈";
}
.mfp-arrow::after {
	content: "🠊";
}
.mfp-arrow-left::after,
.mfp-arrow-right::before {
	display: none;
}
.mfp-arrow {
	opacity: .95;
}
.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/*====  work-wrapper style  ====*/
.img-mask {
	position: relative;
	overflow: hidden;
	-webkit-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
}
.img-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	bottom: 0;
	background-color: #F8F9FA;
	pointer-events: none;
	z-index: 99;
}
[data-aos="reveal-bottom"] {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	transform-origin: 0% 100%;
	transition-property: transform;
	transition-delay: .2s;
}
[data-aos="reveal-bottom"].aos-animate {
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
}
.img-mask img {
	-webkit-filter: sepia(1);
	filter: sepia(1);
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
.mesonary-filter .img-mask img,
.img-mask .aos-animate + img {
	-webkit-filter: sepia(0);
	filter: sepia(0);
	transition-delay: .2s;
}
.img-mask .img-icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 18px;
    bottom: 40px;
    right: 40px;
    opacity: 0;
    background-color: #36a758;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.img-mask:hover .img-icon,
.zoom-image-item:hover .img-mask .img-icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50px;
    bottom: 30px;
    right: 30px;
    opacity: 1;
}
.img-mask .img-icon-center {
    bottom: calc(50% - 10px);
    right: calc(50% - 10px);
}
.zoom-image-item:hover .img-mask .img-icon-center {
    bottom: calc(50% - 20px);
	right: calc(50% - 20px);
}

/* work-overlay style */
.work-overlay {
	overflow: hidden;
}
.work-overlay .card-img-overlay {
	opacity: 0;
	visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.work-overlay:hover .card-img-overlay {
	opacity: 1;
	visibility: visible;
}
.work-overlay .card-img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.work-overlay:hover .card-img {
	transform: scale(1.2);
}

/* work-carousel style */
.work-carousel-item {
	width: 40%;
	display: inline-block;
	margin-right: 30px;
}
@media (max-width: 991px) {
	.work-carousel-item {
		width: 60%;
	}
}
@media (max-width: 767px) {
	.work-carousel-item {
		width: 80%;
	}
}
@media (max-width: 575px) {
	.work-carousel-item {
		width: 90%;
	}
}

/* -- flickity-button style -- */
.flickity-button {
	position: static;
	outline: 0;
	box-shadow: none !important;
	text-align: center;
}
.flickity-button:hover {
    background: #278e46;
}
.flickity-prev-next-button {
    top: initial;
	transform: initial;
	position: absolute;
	height: 35px;
	width: 50px;
	background: #36A758;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	z-index: 5;
	margin-top: 30px;
	border-radius: 50px;
}
.flickity-prev-next-button.next {
    right: initial;
	left: calc(50% + 5px);
}
.flickity-prev-next-button.previous {
	left: calc(50% - 55px);
}
.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 35%;
    top: 35%;
    width: 30%;
	height: 30%;
	color: #fff;
}

.next-project h1 {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.next-project:hover h1 {
	letter-spacing: 2px;
}

@media (max-width: 991px) {
	.work-wrapper .mesonaryInit {
	    padding-left: -25px !important;
	    padding-right: -25px !important;
	}
	.work-wrapper .mesonaryInit > .pl-50 {
	    padding-left: 25px !important;
	}
	.work-wrapper .mesonaryInit > .pr-50 {
	    padding-right: 25px !important;
	}
	.work-wrapper .mesonaryInit .mt-100 {
	    margin-top: 60px !important;
	}
	.work-wrapper .col-md-12.pl-50.pr-50 {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}
}
@media (max-width: 575px) {
	.work-wrapper .mesonaryInit {
	    padding-left: -15px !important;
	    padding-right: -15px !important;
	}
	.work-wrapper .mesonaryInit > .pl-50 {
	    padding-left: 15px !important;
	}
	.work-wrapper .mesonaryInit > .pr-50 {
	    padding-right: 15px !important;
	}
	.work-wrapper .mesonaryInit .mt-100 {
	    margin-top: 50px !important;
	}
	.work-wrapper .col-md-12.pl-50.pr-50 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}

/* -- work-filter button style -- */
.work-filters button {
    font-size: 14px;
    font-weight: 600;
    margin-right: 20px;
    color: #838588;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.work-filters button.active {
    color: #212529;
}
.work-filters button::after {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    background-color: #c3f1d1;
    right: 0;
    bottom: 6px;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.work-filters button.active::after, .work-filters button:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    height: 7px;
}

/*====  testimonials-wrapper style  ====*/
.testimonial-item {
	width: 100%;
	margin-right: 30px;
}
.testimonial-item .rating-value {
    font-size: 15px;
    position: relative;
    top: 3px;
    margin-right: 4px;
}
.testimonial-item .rating-author {
    font-weight: 600;
    font-size: 18px;
}
.testimonial-item .rating-context {
    position: relative;
    padding: 35px;
}
.testimonial-item .rating-context svg {
    font-size: 25px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
	.testimonial-wrapper .border-right {
		border-right: 0 !important;
	}
}

/* -- flickity-dots style -- */
.flickity-page-dots {
	position: static;
    margin-top: 30px;
}
.flickity-page-dots .dot {
    height: 8px;
    width: 13px;
    background-color: #78847b !important;
    display: inline-block;
    border-radius: 5px;
    margin: 0 6px;
}
.flickity-page-dots .dot.is-selected {
    width: 21px;
    background-color: #3e46d5 !important;
}

/*====  counter-wrapper style  ====*/
.counter-item {
    z-index: 1;
    position: relative;
}
.counter-item::before {
    position: absolute;
    content: "";
    height: 60px;
    width: 60px;
    left: -19px;
    top: -6px;
    background-color: #c3f1d1;
    border-radius: 50px;
    z-index: -1;
}
.counter-item .js-counter {
	line-height: 1;
}
.counter-item span {
    font-size: 32px;
    font-weight: 800;
}
@media (max-width: 575px) {
	.counter-item::before {
	    left: 0;
	}
	.counter-item .js-counter {
	    padding-left: 20px;
	}
}
@media (max-width: 400px) {
	.counter-item span {
	    font-size: 26px;
	}
	.counter-item::before {
	    height: 50px;
	}
	.counter-item .js-counter {
	    padding-left: 15px;
	}
}

/*====  CTA-wrapper style  ====*/
.cta-wrapper .display-5,
.cta-wrapper .line-link {
    font-weight: 700;
}
@media (max-width: 575px) {
	.cta-wrapper .display-5 {
	    font-size: 22px;
	}
}

/*====  html5-video style  ====*/
.html5-video .volume-up,
.html5-video .volume-mute {
	position: absolute;
	bottom: 25px;
	left: 40px;
	color: #222;
	font-size: 32px;
	cursor: pointer;
}

/*====  services style  ====*/
.service-wrapper {
	overflow: hidden;
}
.service-wrapper .flickity-viewport {
	overflow: initial;
}
.service-item {
	width: 40%;
	margin-right: 50px;
}
@media (max-width: 767px) {
	.service-item {
		width: 80%;
		margin-right: 30px;
	}
}
.service-item img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.service-item.is-selected img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.service-count {
	left: 5px;
	top: -2px;
    font-size: 22px;
    color: #3e46d5;
}
.service-item-info p {
	max-width: 320px;
	width: 100%;
}
.service-list li {
	font-size: 15px;
	margin-bottom: 5px;
}
.service-list li:last-child {
	margin-bottom: 0px;
}
.service-list-inline li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 0;
}
.service-list-inline li::after {
	content: ",";
}
.service-list-inline li:last-child::after {
	content: ".";
}
.icon-box .icon {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 15px;
    font-size: 22px;
    margin-bottom: 30px;
}
.icon-box .icon.bg-soft-pink {
	color: #fa80fa;
}
.icon-box .icon.bg-soft-blue {
	color: #8d8dfb;
}
.icon-box .icon.bg-soft-green {
	color: #3D45D3;
}

/*====  team style  ====*/
.team-item::after {
    position: absolute;
    content: "";
    border: 30px solid transparent;
    border-top-color: #fff1ff;
    border-right-color: #fff1ff;
    top: 0;
    right: 50px;
}
.team-social {
    position: absolute;
    top: 48px;
    right: 0;
    padding: 0 7px;
}
.team-social a {
    display: block;
	padding: 10px;
	color: #333;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
}
.team-social a:hover {
	opacity: .5;
}
.team-social::after {
    position: absolute;
    content: "";
    height: 60px;
    width: 1px;
    background: rgba(0, 0, 0, 0.5);
    left: 50%;
    top: 110%;
}

/*====  partner style  ====*/
.partner-item img {
    max-height: 35px;
}
.partner-item {
    padding: 40px 15px;
}
.partner-carousel img {
	max-height: 40px;
	padding-right: 125px;
	opacity: .6;
}
@media (max-width: 991px) {
	.partner-carousel img {
		padding-right: 80px;
	}
}
@media (max-width: 767px) {
	.partner-carousel img {
		padding-right: 60px;
	}
}

/*====  pricing style  ====*/
.tabs .nav-pills a {
    color: #222;
    font-weight: 600;
    padding: 10px 25px;
}
.tabs .nav-pills .nav-link.active,
.tabs .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #4d486f;
}

/*====  FAQ style  ====*/
.accordion .card {
	border: 1px solid rgb(249 210 249);
}
.accordion .card-body {
	font-size: 15px;
}
.accordion .card-header a {
    padding: 15px 30px 12px;
    background: #3D45D3;
	color: #2f072f;
}
.accordion .card-header a::after {
	font-family: 'feathericons';
	content:"\ea12";
	transition: 0.3s cubic-bezier(.7,0,.3,1);
	-webkit-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-moz-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-ms-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-o-transition: 0.3s cubic-bezier(.7,0,.3,1);
}
.accordion .card-header a[aria-expanded="false"]::after {
	-webkit-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	transform: rotate(315deg);
}
.accordion .card-header a[aria-expanded="true"]::after {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}
.accordion .card-body {
    padding: 25px;
}

/*====  privacy style  ====*/
.privacy-wrapper {
	font-size: 15px;
}

/*====  blog style  ====*/
.blog-item img {
	transition: 0.3s cubic-bezier(.7,0,.3,1);
	-webkit-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-moz-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-ms-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-o-transition: 0.3s cubic-bezier(.7,0,.3,1);
}
.blog-item:hover img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.comments-wrapper .media img {
    height: 70px;
    width: auto;
}
@media (max-width: 575px) {
	.comments-wrapper .media {
		display: block !important;
	}
}

/*====  contact-wrapper style  ====*/
.form-control {
	height: 50px;
	font-size: 15px;
}
.form-control:focus {
	border-color: #3D45D3;
}
textarea.form-control {
	padding: 15px;
	height: 136px;
	resize: none;
}

/*====  footer-wrapper style  ====*/
.footer-logo {
    height: 40px;
}
.footer-nav li a {
    font-weight: 600;
    font-size: 14px;
}
@media (max-width: 400px) {
	.cta-wrapper,
	.cta-wrapper .text-md-right,
	footer,
	.footer-bottom,
	.footer-bottom .text-sm-right {
		text-align: center !important;
	}
	footer .col-6 {
	    -ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	footer .mb-70 {
	    margin-bottom: 40px !important;
	}
	.footer-nav li a {
	    margin-left: 8px;
	    margin-right: 8px !important;
	}
	footer .social-links a:first-child {
	    margin-left: 0;
	}
}

.scroll-top {
    height: 40px;
    width: 40px;
    line-height: 42px;
    background-color: #3e47d7;
    -webkit-transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    bottom: -30px;
	right: 30px;
	opacity: 0;
    position: fixed;
    z-index: 9995;
}
.scroll-top.show {
    bottom: 30px;
	opacity: 1;
}
.scroll-top:hover {
    background-color: #3e47d7;
}
@media (max-width: 767px) {
	.scroll-top {
		bottom: -15px;
		right: 15px;
	}
	.scroll-top.show {
		bottom: 15px;
	}
}

.veha-wa-floating-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.veha-wa-card {
    /* Ta couleur spécifique avec un léger dégradé pour le relief */
    background: linear-gradient(135deg, #3D45D3 0%, #2a31a8 100%);
    border-radius: 60px;
    padding: 10px 25px 10px 10px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(61, 69, 211, 0.3);
    border: none !important; /* Aucune bordure */
    position: relative;
    overflow: hidden;
}

/* Effet de brillance (Glossy) */
.veha-wa-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(35deg);
    transition: 0.7s;
}

.veha-wa-card:hover::before {
    left: 150%;
}

.veha-wa-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 69, 211, 0.5);
}

.veha-wa-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.veha-wa-avatar-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.veha-wa-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Badge WhatsApp Vert inchangé */
.veha-wa-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #25D366;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.veha-wa-text {
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.veha-wa-sub {
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.veha-wa-title {
    margin: 0;
    font-size: 15px;
    white-space: nowrap;
}

/* Adaptabilité mobile */
@media (max-width: 576px) {
    .veha-wa-text { display: none; }
    .veha-wa-card { padding: 5px; border-radius: 50%; }
    .veha-wa-floating-wrapper { left: 20px; bottom: 20px; }
}
/* --- Bouton Toggle --- */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #3D45D3;
    transition: 0.3s ease;
}

/* --- Overlay Menu Mobile --- */
.veha-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98); /* Bleu nuit Atrakt */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transform: translateX(100%); /* Caché à droite */
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.veha-mobile-overlay.active {
    transform: translateX(0); /* Apparaît */
}

.veha-mobile-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.veha-mobile-links li {
    margin: 25px 0;
}

.veha-mobile-links a {
    color: #fff !important;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.m-contact-btn {
    background: #3D45D3;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.2rem !important;
}

.m-wa-item {
    margin-top: 40px !important;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex; /* On l'affiche sur mobile */
    }
    
    /* Animation du bouton en X */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: #fff;
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        transform: translateY(0px) rotate(-45deg);
        background: #fff;
    }
}
/* --- STYLE GÉNÉRAL NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* --- VERSION DESKTOP --- */
@media (min-width: 992px) {
    .collapse.navbar-collapse {
        display: flex !important; /* Force l'affichage sur PC */
    }
    .mobile-nav-toggle, .veha-mobile-overlay {
        display: none !important; /* Cache les éléments mobiles sur PC */
    }
    .desktop-wa-icon {
        transition: transform 0.3s ease;
        display: inline-flex;
    }
    .desktop-wa-icon:hover { transform: scale(1.2); }
}

/* --- VERSION MOBILE --- */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 7px;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-nav-toggle span {
        width: 28px;
        height: 2px;
        background: #3D45D3;
        transition: 0.3s;
    }
    /* Animation X bouton mobile */
    .mobile-nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: #fff; }
    .mobile-nav-toggle.active span:nth-child(2) { transform: translateY(0px) rotate(-45deg); background: #fff; }

    .veha-mobile-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        display: flex; justify-content: center; align-items: center;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .veha-mobile-overlay.active { transform: translateX(0); }
}

/* Styles communs Liens Mobile */
.veha-mobile-links { list-style: none; padding: 0; text-align: center; }
.veha-mobile-links li { margin: 25px 0; }
.veha-mobile-links a { color: #fff !important; font-size: 1.8rem; font-weight: 700; text-decoration: none; }
.m-contact-btn { background: #3D45D3; padding: 10px 30px; border-radius: 50px; font-size: 1.2rem !important; }
.m-wa-item { margin-top: 40px !important; }
.m-wa-item { margin-top: 40px !important; }
/* --- AJUSTEMENT MOBILE POUR LA CARTE FLOTTANTE --- */
/* --- ALIGNEMENT À GAUCHE SUR MOBILE --- */
@media (max-width: 576px) {
    .veha-wa-floating-wrapper {
        left: 15px;      /* Distance du bord gauche */
        right: auto;     /* Annule toute contrainte à droite */
        bottom: 20px;    /* Distance du bas */
        width: auto;     /* La largeur s'adapte au contenu uniquement */
        display: block;  /* Reset du flex pour rester collé à gauche */
    }

    .veha-wa-card {
        padding: 8px 18px 8px 8px; 
        width: fit-content;    /* La carte ne prend que la place nécessaire */
        max-width: 280px;      /* Largeur max pour ne pas dépasser la moitié de l'écran */
        border-radius: 50px;   /* Garde l'aspect pilule */
    }

    .veha-wa-avatar-wrapper {
        width: 42px;  /* Un peu plus compact */
        height: 42px;
        flex-shrink: 0;
    }

    .veha-wa-text {
        display: block !important; 
    }

    .veha-wa-sub {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .veha-wa-title {
        font-size: 12px;
        line-height: 1.1;
        white-space: nowrap; /* Garde le texte sur une ligne pour le style */
    }

    .veha-wa-badge {
        width: 16px;
        height: 16px;
    }
}
/* Conteneur de l'image */
.veha-hero-frame {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* L'image flottante */
.veha-floating-img {
    border-radius: 30px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(61, 69, 211, 0.4));
    animation: floatingAgency 4s ease-in-out infinite;
    max-height: 450px;
    object-fit: cover;
}

/* Le halo lumineux derrière (Glow) */
.veha-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(61, 69, 211, 0.5) 0%, transparent 75%);
    filter: blur(50px);
    z-index: 1;
}

/* Animation de flottement fluide */
@keyframes floatingAgency {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Ajustements Responsive */
@media (max-width: 991px) {
    .banner-wrapper {
        padding-top: 100px; /* Espace pour la navbar */
    }
    .veha-floating-img {
        max-width: 80%;
        max-height: 300px;
    }
    /* Centre le texte sur mobile */
    .text-lg-left {
        text-align: center !important;
    }
}
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background-color: transparent; /* On laisse le fond blanc de ton site */
    pointer-events: none;
}./* Correctif pour éviter le chevauchement sur mobile */
@media (max-width: 767px) {
    .service-wrapper .page-header {
        line-height: 1.2; /* Réduit l'espace entre les lignes du titre */
        margin-bottom: 15px !important; /* Force l'espace sous le titre */
        font-size: 1.8rem; /* Ajuste la taille pour les petits écrans */
    }
    
    .service-wrapper .text-muted {
        margin-top: 10px;
        display: block;
        line-height: 1.5;
    }
}
/* --- BOUTON CONTACT OPTIMISÉ --- */
.butn {
    display: inline-flex;       /* Utilisation de Flexbox pour le centrage */
    align-items: center;        /* Centrage vertical */
    justify-content: center;     /* Centrage horizontal */
    text-align: center;
    padding: 15px 35px;         /* Padding équilibré */
    font-weight: 600;
    transition: all 0.3s ease;  /* Transition fluide */
    cursor: pointer;
    border-radius: 50px;        /* Look pilule moderne */
    background-color: #3D45D3;  /* Couleur de base (ton bleu) */
    color: #ffffff !important;  /* Texte blanc par défaut */
    border: 2px solid #3D45D3;  /* Bordure de la même couleur */
    text-decoration: none;
    min-width: 200px;           /* Largeur minimale pour un beau bouton */
}

/* --- EFFET AU SURVOL (HOVER) --- */
.butn:hover {
    background-color: transparent; /* Le fond devient transparent */
    color: #3D45D3 !important;     /* Le texte devient bleu */
    border: 2px solid #3D45D3;     /* La bordure reste bleue */
    transform: translateY(-3px);   /* Petit effet de soulèvement */
    box-shadow: 0 10px 20px rgba(61, 69, 211, 0.2); /* Ombre légère */
}

/* Centrage du bouton dans le conteneur sur mobile */
@media (max-width: 767px) {
    .contact-wrapper .text-center-mobile {
        text-align: center !important;
        width: 100%;
    }
}
/* --- Styles pour les messages de confirmation --- */

/* On cache par défaut */
#success-message, #error-message {
    display: none; 
}

/* Style de la boîte de succès */
#success-message {
    background: #ffffff !important;
    border: 2px solid #3D45D3 !important; /* Ton bleu VEHA */
    color: #3D45D3 !important;
    padding: 60px 30px !important;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(61, 69, 211, 0.1);
    margin-bottom: 40px;
}

#success-message h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#success-message p {
    font-size: 1.1rem;
    color: #555;
}

/* Style de la boîte d'erreur */
#error-message {
    background: #fff5f5 !important;
    border: 2px solid #eb5757 !important;
    color: #eb5757 !important;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

/* Animation d'apparition */
.animate-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* 1. On donne un fond sombre ou très clair à la section pour faire ressortir les lueurs */
.banner-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden; /* Important pour ne pas avoir de barres de scroll */
    background: #ffffff; /* Tu peux mettre #050505 pour un effet néon puissant */
}

/* 2. Les formes vectorielles fluides */
.banner-wrapper::before,
.banner-wrapper::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Tache de couleur 1 (Bleu Cobalt) */
.banner-wrapper::before {
    background: #3D45D3;
    top: -200px;
    right: -100px;
    animation: drift 15s ease-in-out infinite alternate;
}

/* Tache de couleur 2 (Une variante plus claire ou violette pour le relief) */
.banner-wrapper::after {
    background: #7077ff;
    bottom: -150px;
    left: -100px;
    animation: drift 20s ease-in-out infinite alternate-reverse;
}

/* 3. L'animation organique (mouvement de dérive) */
@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(50px, 100px) rotate(90deg) scale(1.2); }
    100% { transform: translate(-30px, 50px) rotate(180deg) scale(0.9); }
}

/* 4. Effet sur l'image pour l'intégrer au décor */
.veha-hero-frame {
    position: relative;
}

.veha-floating-img {
    animation: floating 5s ease-in-out infinite;
    /* Un reflet subtil sur l'image */
    filter: drop-shadow(0 20px 40px rgba(61, 69, 211, 0.15));
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.text-marked {
    background: linear-gradient(120deg, rgba(61, 69, 211, 0.2) 0%, rgba(61, 69, 211, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 80%;
    font-weight: 700;
    color: #3D45D3;
}
.banner-wrapper {
    position: relative;
    padding-bottom: 120px !important; /* Espace pour la courbe */
    overflow: hidden;
    z-index: 1;
}

.veha-curve-divider {
    position: absolute;
    bottom: -2px; /* Le -2px évite une micro-ligne vide selon les navigateurs */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.veha-curve-divider svg {
    display: block;
    width: 100%;
    height: 100px; /* Ajuste la hauteur de la courbe ici */
}

.veha-curve-divider path {
    fill: #ffffff; /* La couleur de ta section d'après */
}
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none; /* TRÈS IMPORTANT : permet de cliquer "à travers" les particules */
    z-index: 0;
}
.text-circled {
    position: relative;
    display: inline-block;
    color: #3D45D3;
    font-weight: 800;
    
    /* MODIFICATION ICI : Ajuste la valeur selon tes besoins */
    font-size: 0.65em; 
    
    /* Un léger ajustement de l'alignement vertical peut être nécessaire */
    vertical-align: middle; 
    
    padding: 0 10px;
    z-index: 1;
}

/* Si tu utilises l'effet de cercle épais que nous avons fait avant */
.text-circled::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 140%;
    transform: translate(-50%, -50%) rotate(-2deg);
    border: 10px solid #3D45D3;
    border-radius: 50% 48% 52% 45%;
    
    /* INVERSION ICI : on utilise 'to left' au lieu de 'to right' */
    mask-image: linear-gradient(to left, black 20%, transparent 95%);
    -webkit-mask-image: linear-gradient(to left, black 20%, transparent 95%);
    
    z-index: -1;
}
.section-title span {
    /* On utilise 'inline' pour permettre le saut de ligne naturel */
    display: inline; 
    color: #3D45D3;
    font-weight: 800;
    
    /* L'astuce magique : */
    background: linear-gradient(rgba(61, 69, 211, 0.2), rgba(61, 69, 211, 0.2));
    background-size: 100% 40%; /* Épaisseur du trait (40% de la hauteur du texte) */
    background-repeat: no-repeat;
    background-position: 0 85%; /* Position verticale (sous le texte) */
    
    /* Pour que le surlignage ne s'arrête pas net au bord des lettres */
    padding: 0 4px;
    
    /* Pour que le surlignage se casse proprement sur chaque ligne */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem; /* Ajuste pour que ça tienne sur une ligne */
    }
}
.floating-lang-bar {
    position: fixed;
    bottom: 25px; /* Distance du bas */
    right: 25px;  /* Distance de la droite */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 12px; /* Coins arrondis plus doux */
    display: flex;
    flex-direction: row; /* Aligné horizontalement */
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border: 1px solid rgba(61, 69, 211, 0.1);
    transition: all 0.3s ease;
}

.floating-lang-bar:hover {
    transform: translateY(-5px); /* Petit effet de lévitation au survol */
    background: #ffffff;
}
/* L'overlay (le fond) */
.veha-mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Il part de la droite */
    width: 100%;
    height: 100vh;
    background: #ffffff; /* Fond blanc */
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
}

.veha-mobile-overlay.active {
    right: 0; /* Il glisse vers la gauche pour s'afficher */
}

/* Les liens à l'intérieur (Pour qu'ils ne soient pas invisibles) */
.veha-mobile-links {
    list-style: none;
    padding: 0;
    text-align: center;
    width: 100%;
}

.veha-mobile-links li {
    margin: 20px 0;
    display: block;
}

.veha-mobile-links a {
    font-size: 26px;
    font-weight: 800;
    color: #333 !important; /* Force le texte en gris foncé/noir */
    text-decoration: none;
    display: inline-block;
}
.m-wa-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px !important;
}

.m-wa-item a {
    display: flex;
    flex-direction: column; /* Texte au dessus ou en dessous de l'icône */
    align-items: center;
    gap: 10px;
}

.m-wa-item svg {
    display: block;
    margin: 0 auto; /* Centre l'icône horizontalement */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
#mobileMenuBtn {
    position: relative;
    z-index: 2100; /* Toujours au dessus de l'overlay blanc */
    cursor: pointer;
}

#mobileMenuBtn span {
    background-color: #333; /* Couleur des barres du burger */
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    transition: 0.3s;
}

/* Si le menu est ouvert, on peut changer la couleur du burger en bleu par exemple */
#mobileMenuBtn.open span {
    background-color: #3D45D3;
}
/* On cible spécifiquement le bouton contact dans le menu mobile */
.veha-mobile-links .m-contact-btn {
    background-color: #3D45D3 !important; /* Ton bleu Cobalt */
    color: #ffffff !important;           /* On force le texte en blanc */
    padding: 12px 35px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    margin-top: 10px;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(61, 69, 211, 0.3);
}

/* Optionnel : petit effet au clic sur mobile */
.veha-mobile-links .m-contact-btn:active {
    transform: scale(0.95);
    background-color: #2c34a8 !important;
}
.m-menu-logo {
    position: absolute;
    top: 40px; /* Distance du haut */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.m-menu-logo img {
    max-width: 140px; /* Ajuste la taille de ton logo Véha */
    height: auto;
}

/* On ajuste l'alignement de l'overlay pour laisser la place au logo */
.veha-mobile-overlay {
    padding-top: 100px; /* Créer un espace pour le logo fixé en haut */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligne les liens vers le haut après le logo */
}

.veha-mobile-links {
    margin-top: 50px; /* Espace entre le logo et le premier lien "Accueil" */
}
/* Conteneur principal */
.lang-selector-nav, .mobile-lang-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 12px;
}

/* Style des liens FR et EN */
.lang-item, .mobile-lang-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif; /* Ta police principale */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #666; /* Couleur sobre par défaut */
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Taille et arrondi des drapeaux */
.lang-item img, .mobile-lang-nav a img {
    width: 22px;
    height: auto;
    border-radius: 4px;
    filter: grayscale(100%); /* Gris par défaut pour le style */
    opacity: 0.7;
    transition: 0.3s ease;
}

/* --- L'ÉTAT ACTIF (La langue sélectionnée) --- */
.lang-item.active, .mobile-lang-nav a.active {
    color: #3D45D3 !important; /* Ton bleu Cobalt */
}

.lang-item.active img, .mobile-lang-nav a.active img {
    filter: grayscale(0%); /* Le drapeau reprend ses couleurs */
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(61, 69, 211, 0.2);
}

/* Petit effet au survol */
.lang-item:hover {
    color: #3D45D3;
}

.lang-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
/* Style des boîtes de services */
.icon-box {
    background-color: #f0f7ff !important; /* Un bleu ciel très doux et pro */
    border: 1px solid rgba(61, 69, 211, 0.1); /* Bordure subtile assortie à ton bleu Cobalt */
    transition: all 0.3s ease;
}

/* Effet de survol (Optionnel mais recommandé) */
.icon-box:hover {
    background-color: #e6f1fe !important; /* Un bleu légèrement plus prononcé au survol */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(61, 69, 211, 0.1) !important;
}

/* On s'assure que le texte reste bien lisible */
.icon-box h5 {
    color: #1a1a1a;
}

.icon-box p {
    color: #555;
}
/* Le Header est scellé */
.grop-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Force une hauteur fixe */
    display: flex;
    align-items: center;
    background: #ffffff; /* Couleur pleine dès le départ */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: background 0.3s ease; /* Seule la couleur peut changer si tu veux */
}

/* On bloque la taille du logo pour qu'il ne bouge pas */
.navbar-brand img {
    height: 40px !important; 
    width: auto;
}

/* TRÈS IMPORTANT : On décale tout le site de 80px 
   pour que le contenu ne soit pas caché derrière le header */
body {
    padding-top: 80px !important;
}

/* Ajustement Mobile */
@media (max-width: 991px) {
    .grop-header {
        height: 70px; /* Un peu plus petit sur mobile mais fixe */
    }
    body {
        padding-top: 70px !important;
    }
}
.rdv-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 55px; /* Hauteur fixe */
    padding: 0 25px; /* Espace sur les côtés */
    background-color: #3C45D3;
    border-radius: 50px; /* Forme pilule */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Espace entre l'icône et le texte */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rdv-floating-btn:hover {
    transform: translateY(-5px);
    background-color: #3C45D3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.rdv-floating-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.btn-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif; /* Ou la police de ton site */
    white-space: nowrap; /* Empêche le texte de revenir à la ligne */
}

/* Sur mobile, on peut réduire un peu la taille */
@media (max-width: 768px) {
    .rdv-floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 0 18px;
        height: 48px;
    }
    .btn-text {
        font-size: 14px;
    }
}
.smart-popup-embed {
    position: fixed;
    bottom: -100%;
    left: 20px;
    z-index: 1000000;
    width: 450px; /* Plus large pour le calendrier */
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border-top: 4px solid #000;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.smart-popup-embed.active {
    bottom: 20px;
}

#calendly-embed-holder {
    overflow-y: auto;
}

/* On cache les scrollbars pour garder le design propre */
#calendly-embed-holder::-webkit-scrollbar {
    display: none;
}

@media (max-width: 500px) {
    .smart-popup-embed {
        width: 95%;
        left: 2.5%;
        padding: 10px;
    }
}
/* Bouton Flottant Glossy */
.veha-float-btn {
    position: fixed; 
    bottom: 30px; 
    right: 30px;
    height: 55px; 
    padding: 0 25px;
    background: linear-gradient(135deg, #3D45D4 0%, #252bb3 100%);
    border-radius: 50px;
    display: flex; 
    align-items: center; 
    gap: 10px;
    z-index: 999999; 
    cursor: pointer; 
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(61, 69, 212, 0.4);
    overflow: hidden; /* Important pour l'effet Shine */
}

/* Effet Shine sur le bouton flottant */
.veha-float-btn::after {
    content: "";
    position: absolute;
    top: -50%; left: -60%;
    width: 20%; height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    animation: vehaShine 3s infinite;
}

.veha-float-btn:hover {
    transform: scale(1.05) translateY(-5px);
}
@media (max-width: 600px) {
    /* Le bouton Calendly (RDV) */
    .veha-float-btn { 
        bottom: 30px; /* Même hauteur que WhatsApp */
        right: 85px;  /* On le décale à gauche pour laisser la place à WhatsApp (qui est à 20px ou 30px) */
        height: 50px;
        padding: 0 15px;
        border-radius: 50px;
    }

    /* Optionnel : cacher le texte "RDV" sur mobile pour que ce soit plus aéré */
    .veha-float-btn span { 
        display: none; 
    }
}

.veha-float-btn svg { width: 20px; fill: #fff; position: relative; z-index: 2; }

/* 1. LE BOUTON CALENDLY (GLOSSY & DÉCALÉ) */
#veha-rdv-fixed {
    position: fixed;
    /* On force le même alignement vertical que WhatsApp */
    bottom: 30px !important; 
    /* On le décale à gauche de WhatsApp. 
       Si WhatsApp fait 55px + 30px de bord = 85px. 
       Donc on met Calendly à 100px pour un écart propre. */
    right: 100px !important; 
    
    height: 55px;
    padding: 0 25px;
    background: linear-gradient(135deg, #3D45D4 0%, #252bb3 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999999;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(61, 69, 212, 0.4);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 2. EFFET SHINE (BRILLANCE) */
#veha-rdv-fixed::after {
    content: "";
    position: absolute;
    top: -50%; left: -60%;
    width: 20%; height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    animation: vehaShine 3s infinite;
}

@keyframes vehaShine {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

/* 3. ALIGNEMENT MOBILE (MÊME LIGNE) */
@media (max-width: 600px) {
    #veha-rdv-fixed {
        /* On s'assure qu'ils restent sur la même ligne en bas */
        bottom: 30px !important; 
        /* Sur mobile, on réduit l'écart pour que ça tienne */
        right: 20px !important; 
        height: 35px;
        padding: 0 15px;
    }
    
    #veha-rdv-fixed span {
        display: none; /* On cache le texte "RDV" pour pas que ça dépasse */
    }
    
    /* Force ton bouton WhatsApp à rester à 20px du bord droit sur mobile */
    /* Remplace .ton-bouton-wa par la vraie classe de ton bouton WhatsApp si besoin */
    .ton-bouton-wa, [id*="whatsapp"] {
        bottom: 30px !important;
        right: 20px !important;
    }
}
/* 1. Les Variables de couleurs (Design ouf) */
    :root {
        --veha-grad: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
        --veha-sky: #E0F7FA;
    }

    /* 2. La Card Ultime */
    .veha-premium-card {
        background: #ffffff;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: relative;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-align: left;
    }

    .veha-premium-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(99, 102, 241, 0.15);
    }

    /* Header avec dégradé Mesh */
    .veha-card-header {
        background: var(--veha-grad);
        padding: 40px 30px;
        color: white;
        position: relative;
    }

    .veha-card-header::after {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: url('https://www.transparenttextures.com/patterns/cubes.png');
        opacity: 0.1;
    }

    /* Badge Abonnement Bleu Ciel */
    .veha-badge-sky {
        background: rgba(224, 247, 250, 0.2);
        backdrop-filter: blur(10px);
        color: #E0F7FA;
        border: 1px solid rgba(224, 247, 250, 0.4);
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* Liste de fonctionnalités */
    .veha-body { padding: 35px 30px; }
    
    .veha-feature-list { list-style: none; padding: 0 !important; margin: 0; }
    
    .veha-feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 18px;
        font-size: 14.5px;
        color: #4b5563;
    }

    .veha-feature-item i {
        background: var(--veha-grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 18px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    /* Bouton d'action avec dégradé */
    .veha-btn-premium {
        background: var(--veha-grad);
        color: white !important;
        border: none;
        padding: 18px;
        border-radius: 15px;
        width: 100%;
        display: block;
        text-align: center;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: opacity 0.3s;
        margin-top: 20px;
        box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
    }

    .veha-btn-premium:hover { opacity: 0.9; transform: scale(1.02); }

    .veha-price-tag {
        font-size: 42px;
        font-weight: 900;
        color: #1f2937;
        margin: 20px 0;
        display: flex;
        align-items: baseline;
    }
:root {
        --veha-multi-grad: linear-gradient(135deg, #1e1b4b 0%, #4338ca 50%, #6366f1 100%);
    }

    .veha-multi-card {
        background: #ffffff;
        border-radius: 30px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        overflow: hidden;
        transition: all 0.5s ease;
        text-align: left;
    }

    .veha-multi-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(30, 27, 75, 0.15);
        border-color: #6366f1;
    }

    .veha-header-multi {
        background: var(--veha-multi-grad);
        padding: 45px 30px;
        color: white;
        position: relative;
    }

    /* Badge Abonnement Spécial Multi-pages */
    .veha-badge-multi {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 15px;
    }

    .veha-btn-multi {
        background: var(--veha-multi-grad);
        color: white !important;
        border: none;
        padding: 18px;
        border-radius: 15px;
        width: 100%;
        display: block;
        text-align: center;
        font-weight: 800;
        text-transform: uppercase;
        margin-top: 25px;
        transition: 0.3s;
    }

    .veha-btn-multi:hover {
        filter: brightness(1.2);
        letter-spacing: 1px;
    }
:root {
        --veha-shop-grad: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    }

    .veha-shop-card {
        background: #ffffff;
        border-radius: 30px;
        border: 2px solid #0f172a; /* Bordure plus marquée */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: all 0.5s ease;
        text-align: left;
    }

    .veha-shop-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
    }

    .veha-header-shop {
        background: var(--veha-shop-grad);
        padding: 45px 30px;
        color: white;
        position: relative;
    }

    .veha-badge-shop {
        background: #fbbf24; /* Couleur Or/Ambre */
        color: #000;
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 15px;
    }
/* Palette Design & Social Media */
    :root {
        --veha-logo-grad: linear-gradient(135deg, #00dbde 0%, #fc00ff 100%);
        --veha-brand-grad: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
        --veha-social-grad: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .veha-design-card {
        background: #ffffff;
        border-radius: 25px;
        border: 1px solid #f0f0f0;
        transition: all 0.4s ease;
        overflow: hidden;
        text-align: left;
    }

    .veha-design-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }

    .veha-design-header {
        padding: 35px 25px;
        color: white;
    }

    .veha-design-body {
        padding: 30px 25px;
    }

    /* Icônes dégradées pour les listes */
    .design-icon {
        background: var(--veha-logo-grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-right: 12px;
        font-size: 18px;
    }
/* Container Prix + Switch */
.price-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.ht-label {
    font-size: 16px; 
    color: #9ca3af; 
    font-weight: 400; 
    margin-left: 5px;
}

/* Style du Switch */
.copy-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 10px;
    width: fit-content;
}

.copy-label {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider { background-color: #6366f1; }
input:checked + .slider:before { transform: translateX(18px); }

/* Animation du prix qui change */
.price-value {
    transition: all 0.3s ease;
    display: inline-block;
}
/* Force le défilement horizontal et cache la barre de scroll */
#graphisme-slider {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto; /* Permet le scroll */
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#graphisme-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Optionnel : ajoute un effet de transition douce quand on survole */
#graphisme-slider div {
    transition: transform 0.3s ease;
}
/* 1. Force l'alignement horizontal SANS exception */
.veha-force-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Empêche de revenir à la ligne */
    gap: 20px !important;
    overflow-x: auto !important;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.veha-force-slider::-webkit-scrollbar {
    display: none; /* Cache la barre de scroll */
}

/* 2. Taille des colonnes du slider */
.veha-item {
    flex: 0 0 75% !important; /* Mobile : 75% de large */
    min-width: 0;
}

@media (min-width: 1024px) {
    .veha-item {
        flex: 0 0 40% !important; /* Desktop : 40% de large (effet moitié-moitié) */
    }
}

/* 3. Conteneur de l'image (La boîte) */
.veha-box {
    height: 300px !important; /* Force la hauteur pour éviter l'image géante */
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 4. L'image à l'intérieur */
.veha-img-fix {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Remplit la boîte sans déformer */
    display: block !important;
}
/* ========================================== */
/* 1. CORRECTION DES IMAGES DANS LES CARDS */
/* ========================================== */

/* Verrouille la hauteur du conteneur d'image (Empêche l'image géante) */
.veha-card-img {
    height: 180px !important; /* Force la hauteur de la boîte */
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
}

/* Force l'image à remplir la boîte sans déborder ni se déformer */
.veha-img-fix {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Centre et recadre proprement */
    display: block !important;
    max-width: none !important; /* Annule les règles restrictives du template */
}

/* ========================================== */
/* 2. CORRECTION DU SLIDER GRAPHISME */
/* ========================================== */

/* Force l'alignement horizontal SANS exception */
.veha-force-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Empêche de revenir à la ligne */
    gap: 20px !important;
    overflow-x: auto !important;
    padding-bottom: 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    cursor: grab;
}

.veha-force-slider::-webkit-scrollbar {
    display: none; /* Cache la barre de scroll (Chrome, Safari) */
}

/* Taille des colonnes du slider (Effet moitié-moitié) */
.veha-item {
    flex: 0 0 75% !important; /* Mobile : 75% de large */
    min-width: 0;
}

@media (min-width: 1024px) {
    .veha-item {
        flex: 0 0 40% !important; /* Desktop : 40% de large */
    }
}

/* Conteneur de l'image du slider (La boîte) */
.veha-box {
    height: 300px !important; /* Force la hauteur */
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
a
{
    color: currentColor;
}

/* ============================================================
   VÉHA PRICING SECTION — UNIQUE NAMESPACE: vhp-
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --vhp-navy:    #02084E;
  --vhp-indigo:  #272FAA;
  --vhp-cyan:    #58C7D5;
  --vhp-pearl:   #FCFAFE;
  --vhp-cyan-10: rgba(88,199,213,0.10);
  --vhp-cyan-20: rgba(88,199,213,0.20);
  --vhp-navy-80: rgba(2,8,78,0.80);
  --vhp-font-head: 'Syne', sans-serif;
  --vhp-font-body: 'DM Sans', sans-serif;
}

/* ── SECTION SHELL ── */
.vhp-section {
  background: var(--vhp-navy);
  padding: 120px 24px 180px;
  position: relative;
  overflow: hidden;
  font-family: var(--vhp-font-body);
}

/* Background mesh */
.vhp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(39,47,170,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(88,199,213,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(88,199,213,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Noise grain overlay */
.vhp-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* ── HEADER ── */
.vhp-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.vhp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vhp-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vhp-cyan);
  margin-bottom: 22px;
}

.vhp-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--vhp-cyan);
  opacity: 0.6;
}

.vhp-title {
  font-family: var(--vhp-font-head);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--vhp-pearl);
  letter-spacing: -0.03em;
}

.vhp-title-accent {
  color: var(--vhp-cyan);
  position: relative;
}

.vhp-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--vhp-cyan), transparent);
  border-radius: 2px;
}

.vhp-subtitle {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(252,250,254,0.5);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* ── GRID ── */
.vhp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .vhp-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── CARD BASE ── */
.vhp-card {
  position: relative;
  border-radius: 24px;
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
  cursor: default;
}

.vhp-card:hover {
  transform: translateY(-8px);
}

/* Card variants */
.vhp-card--starter {
  background: linear-gradient(145deg, rgba(39,47,170,0.35) 0%, rgba(2,8,78,0.6) 100%);
  border: 1px solid rgba(88,199,213,0.15);
  box-shadow: 0 20px 60px rgba(2,8,78,0.5);
}

.vhp-card--starter:hover {
  box-shadow: 0 32px 80px rgba(2,8,78,0.7), 0 0 40px rgba(88,199,213,0.08);
}

.vhp-card--featured {
  background: linear-gradient(145deg, rgba(39,47,170,0.7) 0%, rgba(39,47,170,0.45) 60%, rgba(88,199,213,0.12) 100%);
  border: 1px solid rgba(88,199,213,0.35);
  box-shadow: 0 24px 70px rgba(2,8,78,0.6), 0 0 60px rgba(88,199,213,0.1);
  transform: translateY(-6px);
}

.vhp-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 100px rgba(2,8,78,0.8), 0 0 80px rgba(88,199,213,0.18);
}

.vhp-card--premium {
  background: linear-gradient(145deg, rgba(2,8,78,0.7) 0%, rgba(39,47,170,0.25) 100%);
  border: 1px solid rgba(252,250,254,0.08);
  box-shadow: 0 20px 60px rgba(2,8,78,0.5);
}

.vhp-card--premium:hover {
  box-shadow: 0 32px 80px rgba(2,8,78,0.7), 0 0 40px rgba(88,199,213,0.06);
}

/* Card top glow blob */
.vhp-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.vhp-card--starter .vhp-card-glow   { background: var(--vhp-indigo); }
.vhp-card--featured .vhp-card-glow  { background: var(--vhp-cyan); opacity: 0.45; }
.vhp-card--premium .vhp-card-glow   { background: var(--vhp-pearl); opacity: 0.12; }

.vhp-card:hover .vhp-card-glow { opacity: 0.6; }

/* Featured badge */
.vhp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--vhp-cyan);
  color: var(--vhp-navy);
  font-family: var(--vhp-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

/* Card number */
.vhp-card-num {
  font-family: var(--vhp-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(88,199,213,0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Card title */
.vhp-card-title {
  font-family: var(--vhp-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--vhp-pearl);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}

/* Card tech tag */
.vhp-card-tech {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vhp-cyan);
  background: var(--vhp-cyan-10);
  border: 1px solid var(--vhp-cyan-20);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 24px;
  width: fit-content;
}

/* Price block */
.vhp-price-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(252,250,254,0.07);
}

.vhp-price-from {
  font-size: 11px;
  font-weight: 400;
  color: rgba(252,250,254,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.vhp-price-amount {
  font-family: var(--vhp-font-head);
  font-size: 46px;
  font-weight: 800;
  color: var(--vhp-pearl);
  letter-spacing: -0.04em;
  line-height: 1;
}

.vhp-price-amount span {
  font-size: 22px;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0;
  margin-left: 2px;
}

.vhp-price-range {
  font-size: 12px;
  color: rgba(88,199,213,0.6);
  margin-top: 4px;
  font-weight: 300;
}

/* Features list */
.vhp-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.vhp-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(252,250,254,0.72);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid rgba(252,250,254,0.04);
}

.vhp-features li:last-child { border-bottom: none; }

.vhp-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vhp-cyan-10);
  border: 1px solid var(--vhp-cyan-20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.vhp-check svg {
  width: 9px;
  height: 9px;
  stroke: var(--vhp-cyan);
  stroke-width: 2.5;
  fill: none;
}

/* CTA Button */
.vhp-cta {
  display: block;
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  font-family: var(--vhp-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}

.vhp-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.vhp-cta:hover::after { background: rgba(255,255,255,0.07); }

.vhp-cta--outline {
  background: transparent;
  border: 1px solid rgba(88,199,213,0.3);
  color: var(--vhp-pearl);
}

.vhp-cta--outline:hover {
  border-color: var(--vhp-cyan);
  box-shadow: 0 0 20px rgba(88,199,213,0.15);
  color: var(--vhp-cyan);
}

.vhp-cta--primary {
  background: linear-gradient(135deg, var(--vhp-cyan) 0%, #3ea8b8 100%);
  color: var(--vhp-navy);
  box-shadow: 0 8px 32px rgba(88,199,213,0.3);
}

.vhp-cta--primary:hover {
  box-shadow: 0 12px 48px rgba(88,199,213,0.5);
  transform: translateY(-1px);
}

/* ============================================================
   FLOATING MINI-CARD
   ============================================================ */

.vhp-float-wrap {
  position: relative;
  z-index: 3;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vhp-float-card {
  position: relative;
  max-width: 780px;
  width: 100%;
  border-radius: 20px;
  padding: 28px 36px;
  background: linear-gradient(135deg,
    rgba(39,47,170,0.6) 0%,
    rgba(2,8,78,0.8) 50%,
    rgba(39,47,170,0.4) 100%);
  border: 1px solid rgba(88,199,213,0.25);
  box-shadow:
    0 24px 64px rgba(2,8,78,0.6),
    0 0 0 1px rgba(88,199,213,0.05),
    inset 0 1px 0 rgba(252,250,254,0.06);
  display: flex;
  align-items: center;
  gap: 28px;
  backdrop-filter: blur(12px);
  animation: vhp-float 5s ease-in-out infinite;
  overflow: hidden;
}

.vhp-float-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vhp-cyan), transparent);
  opacity: 0.5;
}

@keyframes vhp-float {
  0%, 100% { transform: translateY(0px); box-shadow: 0 24px 64px rgba(2,8,78,0.6), 0 0 0 1px rgba(88,199,213,0.05); }
  50%       { transform: translateY(-10px); box-shadow: 0 36px 80px rgba(2,8,78,0.7), 0 0 40px rgba(88,199,213,0.12); }
}

.vhp-float-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(88,199,213,0.2), rgba(88,199,213,0.05));
  border: 1px solid rgba(88,199,213,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.vhp-float-body {
  flex: 1;
}

.vhp-float-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vhp-cyan);
  opacity: 0.7;
  margin-bottom: 6px;
}

.vhp-float-title {
  font-family: var(--vhp-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--vhp-pearl);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 6px;
}

.vhp-float-desc {
  font-size: 13px;
  color: rgba(252,250,254,0.45);
  font-weight: 300;
  line-height: 1.55;
}

.vhp-float-price {
  font-family: var(--vhp-font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--vhp-cyan);
  opacity: 0.85;
  margin-top: 5px;
}

.vhp-float-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid rgba(88,199,213,0.35);
  background: transparent;
  font-family: var(--vhp-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--vhp-pearl);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.vhp-float-cta:hover {
  background: rgba(88,199,213,0.1);
  border-color: var(--vhp-cyan);
  color: var(--vhp-cyan);
  transform: scale(1.03);
}

.vhp-float-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s;
}

.vhp-float-cta:hover svg { transform: translateX(3px); }

/* Tags inside float */
.vhp-float-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
vhp-section {
    background:#02084E;
}

.vhp-float-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(88,199,213,0.7);
  background: rgba(88,199,213,0.07);
  border: 1px solid rgba(88,199,213,0.15);
  border-radius: 100px;
  padding: 2px 9px;
}

/* Entrance animations */
.vhp-card, .vhp-header, .vhp-float-wrap {
  opacity: 0;
  transform: translateY(30px);
  animation: vhp-reveal 0.7s cubic-bezier(0.23,1,0.32,1) forwards;
}

.vhp-header          { animation-delay: 0.05s; }
.vhp-card:nth-child(1){ animation-delay: 0.18s; }
.vhp-card:nth-child(2){ animation-delay: 0.28s; }
.vhp-card:nth-child(3){ animation-delay: 0.38s; }
.vhp-float-wrap      { animation-delay: 0.52s; }

@keyframes vhp-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .vhp-float-card { flex-direction: column; text-align: center; padding: 24px 22px; }
  .vhp-float-tags { justify-content: center; }
  .vhp-float-cta  { width: 100%; justify-content: center; }
  .vhp-card { padding: 32px 24px 36px; }
  .vhp-price-amount { font-size: 38px; }
}
/*
 * veha-fixes.css
 * ─────────────────────────────────────────────────────────────────────────────
 * Corrections ciblées — Ne touche PAS à main.css.
 * Ajoutez ce fichier APRÈS main.css dans le <head> de chaque page :
 *   <link rel="stylesheet" href="/css/veha-fixes.css">
 * ─────────────────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════════════════
   BUG 1 — Liens "Voir le site web" dans la section Projets
   Problème : a:hover { color: initial } rend le texte illisible sur fond sombre.
   Solution  : cibler précisément les liens dans .veha-project-desc et donner
               un style clair + persistant au survol.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Lien par défaut dans les cartes projet */
.veha-project-desc a.veha-project-link,
.veha-project-desc a {
    color: #a0a0a0;              /* texte muted — lisible sur fond #121212 */
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

/* Hover : texte blanc net + trait coloré — reste lisible */
.veha-project-desc a.veha-project-link:hover,
.veha-project-desc a:hover {
    color: #ffffff !important;   /* blanc forcé, écrase color: initial */
    border-color: #3D45D3;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUG 2 — Bouton LinkedIn dans la section Équipe
   Problème : a:hover { color: initial } injecte une couleur sombre dans le
              bouton .veha-social-icon, donnant l'effet "noir indésirable".
   Solution  : verrouiller couleur + background + opacity au survol.
   ═══════════════════════════════════════════════════════════════════════════ */

.veha-social-icon {
    /* Assurer la couleur de base */
    color: #ffffff !important;
    background-color: #3D45D3;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

/* Hover correct : fond légèrement plus clair, texte blanc garanti */
.veha-team-fix-hover .veha-social-icon:hover,
.veha-social-icon:hover {
    color: #ffffff !important;   /* blanc verrouillé, écrase color: initial */
    background-color: #5a62e8;   /* cohérent avec la charte */
    transform: scale(1.05);
    opacity: 1 !important;       /* empêche tout opacity partiel */
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BONUS — .butn corrigé (CSS corrompu lignes 230-234 de main.css)
   Le bloc ".butn-light" était malformé → le remettre proprement ici.
   ═══════════════════════════════════════════════════════════════════════════ */

.butn-light {
    color: #fff;
}

/* Hover du .butn : s'assurer que le texte reste lisible */
.butn:hover {
    color: #fff !important;
}

/* Le pseudo-élément ::after disparaît en scale(1.1)+opacity:0,
   mais le ::before prend le relais avec border — on force un fond de secours */
.butn.veha-butn-fix::after {
    background-color: #3E47D7;
}
.butn.veha-butn-fix:hover {
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SÉLECTEUR DE LANGUE (nav)
   ═══════════════════════════════════════════════════════════════════════════ */

.lang-selector-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-selector-nav .lang-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.lang-selector-nav .lang-item img {
    width: 18px;
    height: auto;
    border-radius: 2px;
}

.lang-selector-nav .lang-item.active {
    background: #f0f0f0;
    color: #3D45D3;
}

.lang-selector-nav .lang-item:hover {
    background: #ebebeb;
    color: #3D45D3 !important;
}
/* ===== DÉSACTIVATION TOTALE DU HOVER SUR LES BOUTONS ===== */
.butn:hover,
.butn:focus,
.butn:active,
.butn-light:hover,
.butn-light:focus,
.butn-light:active {
    /* Le bouton lui‑même : on annule tout */
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important; /* le fond réel est géré par ::after */
    cursor: pointer;
}

/* On force les pseudo‑éléments à rester exactement comme à l’état normal */
.butn:hover::after,
.butn:focus::after,
.butn:active::after,
.butn-light:hover::after,
.butn-light:focus::after,
.butn-light:active::after {
    transform: scale(1) !important;      /* pas d’agrandissement */
    opacity: 1 !important;               /* pas de transparence */
    background-color: #3E47D7 !important; /* couleur bleue d’origine */
}

.butn:hover::before,
.butn:focus::before,
.butn:active::before,
.butn-light:hover::before,
.butn-light:focus::before,
.butn-light:active::before {
    transform: scale(0.5) !important;    /* on garde l’état initial */
    opacity: 0 !important;                /* on le laisse invisible */
}
/*====  END  ====*/