
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tagesschrift&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');


/*Variabes*/

:root{
	--c-dark:#212529;
	--cc-brand:#04021e;
	--cc-text:#0648a7;
	--cc-brand-light:#062950;
	--cc-brand-rgb:6, 72, 147;
	--cc-body:#727272;
	--font-base:"Poppins";
	--transition:all 0.5s ease;
}

*{
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.col-12, .col-md-3, .col-md-6, .col-lg-4, .col-lg-6 {
	padding-left: 15px;
	padding-right: 15px;
}

/* ===== OPTIMISATION SIDEBAR MOBILE ===== */

/* Offcanvas original */
.offcanvas {
	background: var(--cc-text);
}

.offcanvas-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
	color: #ffffff;
}

.btn-close {
	filter: invert(1);
}

.offcanvas-body {
	padding: 1rem;
}

/* Navigation originale */
.navbar-nav .nav-link {
	color: #000000 !important;
	padding: 0.5rem 1rem;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: #000000 !important;
	background: rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link.active {
	color: #000000 !important;
	background: rgba(0, 0, 0, 0.2);
}

/* Dropdown original */
.dropdown-menu {
	background: #ffffff !important;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-header {
	color: #000000;
	font-weight: 600;
}

.dropdown-item {
	color: #000000 !important;
	padding: 0.5rem 1rem;
	transition: background-color 0.3s ease;
}

.dropdown-item:hover {
	background: rgba(0, 0, 0, 0.1) !important;
	color: #000000 !important;
}

.dropdown-item i {
	margin-right: 0.5rem;
}

.dropdown-divider {
	border-color: rgba(0, 0, 0, 0.1);
}

/* Boutons originaux */
.btn-custom-gradient {
	background: var(--cc-text);
	border: none;
	color: #ffffff;
	font-weight: 600;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom-gradient:hover {
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

/* Navbar toggler original */
.navbar-toggler {
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
	box-shadow: none;
}



/* Responsive pour très petits écrans */
@media only screen and (max-width: 480px) {
	.offcanvas {
		width: 85% !important;
	}
	
	.offcanvas-body {
		padding: 1rem;
	}
	
	.navbar-nav .nav-link {
		font-size: 1rem;
		padding: 0.6rem 0.8rem;
	}
	
	.dropdown-item {
		font-size: 0.9rem;
		padding: 0.6rem 0.8rem;
	}
	
	.btn-custom-gradient {
		padding: 0.6rem 1.2rem;
		font-size: 0.9rem;
	}
}

/* ===== NAVBAR ORIGINALE ===== */
.navbar-custom {
	background: var(--cc-text);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== OPTIMISATION COMPTEURS MOBILE ===== */

/* Animation des compteurs */
.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--cc-text);
	margin: 0;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
}

.stat-number.animated {
	opacity: 1;
	transform: translateY(0);
}

.stat-number::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(13, 44, 78, 0.1), transparent);
	transition: left 0.5s ease;
}

.stat-number.animated::before {
	left: 100%;
}

/* Responsive pour les compteurs */
@media only screen and (max-width: 768px) {
	.stat-number {
		font-size: 2.8rem;
	}
	
	.stat-card {
		padding: 25px 15px;
	}
	
	.stat-icon {
		width: 60px;
		height: 60px;
	}
	
	.stat-icon i {
		font-size: 1.8rem;
	}
	
	.stat-label {
		font-size: 0.9rem;
	}
}

@media only screen and (max-width: 480px) {
	.stat-number {
		font-size: 2.2rem;
	}
	
	.stat-card {
		padding: 20px 12px;
	}
	
	.stat-icon {
		width: 50px;
		height: 50px;
	}
	
	.stat-icon i {
		font-size: 1.5rem;
	}
	
	.stat-label {
		font-size: 0.8rem;
	}
}

/* Animation d'apparition pour les cartes de statistiques */
.stat-card {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Effet de pulsation pour les icônes */
.stat-icon {
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}




/*hero*/
#hero{
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(13, 44, 78, 0.8), rgba(0, 0, 0, 0.6)), url(../img/bc1.jpg);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	background-blend-mode: overlay;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
	padding-top: 150px;
	margin-top: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

#hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

#hero a{
	border-radius: 10px;
	background-color:var(--cc-text);
	transition:  all 0.5s ease;
}

#hero a:hover{
	transform: scale(1.1);
}

#hero h6{
	font-family: 'Tagesschrift';
}

#hero h4 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 2.5rem;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.1);
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.2;
	position: relative;
	z-index: 2;
	color: #ffffff;
	animation: textGlow 3s ease-in-out infinite alternate;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

@keyframes textGlow {
	0% {
		filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
	}
	100% {
		filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
	}
}

#hero .btn {
	font-size: 1.5rem;
	font-weight: 700;
	padding: 18px 35px;
	margin: 0 15px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
	display: inline-block;
	position: relative;
	z-index: 2;
	background: linear-gradient(135deg, #0648a7, #1976d2, #0648a7);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
}

#hero .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

#hero .btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 6px 15px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.4);
}

#hero .btn:hover::before {
	left: 100%;
}

#hero .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 2;
}

#hero .row {
	justify-content: center;
	align-items: center;
}

#hero .col-12 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* Effet de particules flottantes */
#hero .col-12::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
		radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 100px 100px, 150px 150px, 80px 80px;
	animation: float 6s ease-in-out infinite;
	pointer-events: none;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Section Digital Talents - Optimisée */
.digital-talents-section {
	background: #ffffff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.digital-talents-section .section-header {
	margin-bottom: 50px;
	background: var(--cc-text);
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	padding: 40px 0;
}

.section-header {
	margin-bottom: 50px;
}

.digital-talents-section .section-title {
	font-size: 2.8rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 800;
	color: #212529;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.digital-talents-section .title-icon {
	display: inline-block;
	margin-right: 15px;
	color: #ffffff;
	font-size: 2.5rem;
	animation: rocketFloat 3s ease-in-out infinite;
}

.title-icon {
	display: inline-block;
	margin-right: 15px;
	color: var(--cc-text);
	font-size: 2.5rem;
	animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(5deg); }
}

.digital-talents-section .title-underline {
	width: 80px;
	height: 4px;
	background: #ffffff;
	margin: 0 auto;
	border-radius: 2px;
	position: relative;
}

.digital-talents-section .title-underline::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 8px;
	background: #ffffff;
	border-radius: 4px;
	animation: pulse 2s ease-in-out infinite;
}

.title-underline {
	width: 80px;
	height: 4px;
	background: var(--cc-text);
	margin: 0 auto;
	border-radius: 2px;
	position: relative;
}

.title-underline::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 8px;
	background: var(--cc-text);
	border-radius: 4px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
	50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

.mission-text {
	font-size: 1.3rem;
	color: #212529;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto 60px;
	font-weight: 500;
}

/* Cartes de statistiques */
.stat-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	border: 2px solid var(--cc-text);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--cc-text);
}

.stat-card:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--cc-text);
	background: #ffffff;
}

.stat-icon {
	width: 80px;
	height: 80px;
	background: var(--cc-text);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	position: relative;
	overflow: hidden;
}

.stat-icon i {
	font-size: 2rem;
	color: white;
	z-index: 2;
	position: relative;
}

.stat-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	color: #212529;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.stat-number::after {
	content: '+';
	font-size: 2rem;
	color: var(--cc-text);
	margin-left: 5px;
	font-weight: 700;
}

.stat-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: #212529;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Bouton CTA */
.cta-section {
	margin-top: 60px;
}

.cta-button {
	background: var(--cc-text);
	border: none;
	border-radius: 50px;
	padding: 18px 40px;
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 8px 25px rgba(6, 72, 167, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.cta-button:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 35px rgba(6, 72, 167, 0.4);
	color: white;
	background: var(--cc-text);
}

/* Section Présentation Optimisée */
.presentation-section {
	background: #ffffff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.image-container {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.image-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(6, 72, 167, 0.1), rgba(6, 72, 167, 0.05));
	pointer-events: none;
}

.content-card {
	background: #ffffff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--cc-text);
	height: 100%;
	transition: all 0.4s ease;
}

.content-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-title {
	font-size: 2rem;
	font-weight: 700;
	color: #212529;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.content-title i {
	color: var(--cc-text);
	font-size: 1.8rem;
}

.content-text {
	font-size: 1.1rem;
	color: #495057;
	line-height: 1.8;
	margin-bottom: 30px;
}

.content-features {
	margin-bottom: 30px;
}

.feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 1rem;
	color: #212529;
}

.feature-item i {
	color: var(--cc-text);
	margin-right: 12px;
	font-size: 1.2rem;
}

.content-button {
	background: var(--cc-text);
	border: none;
	border-radius: 50px;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 8px 25px rgba(6, 72, 167, 0.3);
	transition: all 0.4s ease;
}

.content-button:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 35px rgba(6, 72, 167, 0.4);
	color: white;
	background: var(--cc-text);
}

/* Section Formations Optimisée */
.formations-section {
	background: #ffffff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.formation-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--cc-text);
	overflow: hidden;
	transition: all 0.4s ease;
	height: 100%;
}

.formation-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--cc-text);
}

.formation-image {
	position: relative;
	overflow: hidden;
	height: 200px;
}

.formation-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.formation-card:hover .formation-image img {
	transform: scale(1.1);
}

.formation-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(6, 72, 167, 0.8), rgba(6, 72, 167, 0.6));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.formation-card:hover .formation-overlay {
	opacity: 1;
}

.formation-badge {
	background: rgba(255, 255, 255, 0.9);
	color: var(--cc-text);
	padding: 10px 20px;
	border-radius: 25px;
	text-align: center;
	backdrop-filter: blur(10px);
}

.formation-badge i {
	font-size: 1.5rem;
	margin-bottom: 5px;
	display: block;
}

.formation-badge span {
	font-weight: 600;
	font-size: 0.9rem;
}

.formation-content {
	padding: 25px;
}

.formation-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #212529;
	margin-bottom: 15px;
	line-height: 1.3;
}

.formation-description {
	font-size: 0.95rem;
	color: #495057;
	line-height: 1.6;
	margin-bottom: 20px;
}

.formation-features {
	margin-bottom: 20px;
}

.feature-tag {
	display: inline-block;
	background: rgba(6, 72, 167, 0.1);
	color: var(--cc-text);
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
	margin: 2px;
	border: 1px solid rgba(6, 72, 167, 0.2);
}

.formation-cta {
	text-align: center;
}

.formation-btn {
	background: var(--cc-text);
	border: none;
	border-radius: 25px;
	padding: 10px 25px;
	font-size: 0.9rem;
	font-weight: 600;
	color: white;
	transition: all 0.3s ease;
	width: 100%;
}

.formation-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(6, 72, 167, 0.3);
	color: white;
	background: var(--cc-text);
}

.formations-cta-section {
	margin-top: 50px;
	text-align: center;
}

.gallery-btn, .inscription-btn {
	border-radius: 30px;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 10px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gallery-btn {
	background: transparent;
	border: 2px solid var(--cc-text);
	color: var(--cc-text);
}

.gallery-btn:hover {
	background: var(--cc-text);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(6, 72, 167, 0.3);
}

.inscription-btn {
	background: var(--cc-text);
	border: 2px solid var(--cc-text);
	color: white;
	box-shadow: 0 8px 25px rgba(6, 72, 167, 0.3);
}

.inscription-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(6, 72, 167, 0.4);
	color: white;
	background: var(--cc-text);
}





.cta-button:hover::before {
	left: 100%;
}

/* Styles responsifs pour la section Digital Talents */
@media only screen and (max-width: 768px) {
	.digital-talents-section {
		padding: 50px 0;
	}
	
	.section-title {
		font-size: 1.8rem;
		line-height: 1.3;
	}
	
	.title-icon {
		font-size: 1.6rem;
	}
	
	.mission-text {
		font-size: 1rem;
		padding: 0 15px;
		line-height: 1.6;
	}
	
	.stat-card {
		padding: 25px 15px;
		margin-bottom: 15px;
	}
	
	.stat-icon {
		width: 50px;
		height: 50px;
	}
	
	.stat-icon i {
		font-size: 1.3rem;
	}
	
	.stat-number {
		font-size: 2.2rem;
	}
	
	.stat-label {
		font-size: 0.9rem;
	}
	
	.cta-button {
		font-size: 0.95rem;
		padding: 12px 25px;
	}
}
	
	/* Section Présentation - Mobile */
	.presentation-section {
		padding: 50px 0;
	}
	
	.content-card {
		padding: 25px 15px;
		margin-top: 15px;
	}
	
	.content-title {
		font-size: 1.4rem;
		flex-direction: column;
		text-align: center;
		line-height: 1.3;
	}
	
	.content-title i {
		margin-bottom: 8px;
		margin-right: 0;
	}
	
	.content-text {
		font-size: 0.95rem;
		text-align: center;
		line-height: 1.6;
	}
	
	.content-features {
		text-align: center;
	}
	
	.feature-item {
		justify-content: center;
		font-size: 0.9rem;
	}
	
	.content-button {
		font-size: 0.95rem;
		padding: 10px 20px;
		width: 100%;
	}
	
	/* Section Formations - Mobile */
	.formations-section {
		padding: 50px 0;
	}
	
	.formation-card {
		margin-bottom: 25px;
	}
	
	.formation-image {
		height: 160px;
	}
	
	.formation-content {
		padding: 18px 15px;
	}
	
	.formation-title {
		font-size: 1.1rem;
		line-height: 1.3;
	}
	
	.formation-description {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	
	.feature-tag {
		font-size: 0.7rem;
		padding: 3px 8px;
		margin: 2px;
	}
	
	.formation-btn {
		font-size: 0.8rem;
		padding: 7px 16px;
	}
	
	.gallery-btn, .inscription-btn {
		font-size: 0.9rem;
		padding: 10px 20px;
		margin: 4px;
		width: 100%;
		max-width: 280px;
	}
	
	.formations-cta-section {
		margin-top: 25px;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1199px) {
	.section-title {
		font-size: 2.4rem;
	}
	
	.mission-text {
		font-size: 1.2rem;
	}
	
	.stat-number {
		font-size: 2.8rem;
	}
}

/* Styles responsifs pour le titre et les boutons */
@media only screen and (max-width: 768px) {
	/* Reset global pour éviter les décalages */
	* {
		box-sizing: border-box;
	}
	
	body {
		overflow-x: hidden;
		width: 100%;
	}
	
	#hero {
		padding-top: 100px;
		height: auto;
		min-height: 100vh;
		width: 100%;
		overflow: hidden;
	}
	
	#hero h4 {
		font-size: 2.2rem;
		max-width: 100%;
		padding: 0 15px;
		color: #ffffff;
		line-height: 1.3;
		margin-bottom: 2rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		width: 100%;
	}
	
	#hero .btn {
		font-size: 1.1rem;
		padding: 12px 20px;
		margin: 5px auto;
		display: inline-block;
		width: auto;
		max-width: 280px;
	}
	
	/* Correction des containers */
	.container {
		padding-left: 15px;
		padding-right: 15px;
		max-width: 100%;
		width: 100%;
		overflow: hidden;
	}
	
	/* Correction des grilles */
	.row {
		margin-left: -7.5px;
		margin-right: -7.5px;
		width: calc(100% + 15px);
	}
	
	.col-12, .col-md-3, .col-md-6, .col-lg-4, .col-lg-6 {
		padding-left: 7.5px;
		padding-right: 7.5px;
	}
}

/* Styles pour très petits écrans */
@media only screen and (max-width: 480px) {
	/* Reset global pour éviter les décalages */
	* {
		box-sizing: border-box;
	}
	
	body {
		overflow-x: hidden;
		width: 100%;
	}
	
	#hero {
		padding-top: 80px;
		height: auto;
		min-height: 100vh;
		width: 100%;
		overflow: hidden;
	}
	
	#hero h4 {
		font-size: 1.8rem;
		padding: 0 10px;
		margin-bottom: 1.5rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		width: 100%;
	}
	
	#hero .btn {
		font-size: 1rem;
		padding: 10px 18px;
		margin: 4px auto;
		max-width: 250px;
		display: block;
		width: 100%;
	}
	
	/* Sections générales */
	.digital-talents-section,
	.presentation-section,
	.formations-section,
	.services-section,
	.about-section,
	.partners-section,
	.advantages-section,
	.testimonials-section {
		padding: 40px 0;
		width: 100%;
		overflow: hidden;
	}
	
	/* Correction des containers */
	.container {
		padding-left: 15px;
		padding-right: 15px;
		max-width: 100%;
		width: 100%;
		overflow: hidden;
	}
	
	/* Correction des grilles */
	.row {
		margin-left: -7.5px;
		margin-right: -7.5px;
		width: calc(100% + 15px);
	}
	
	.col-12, .col-md-3, .col-md-6, .col-lg-4, .col-lg-6 {
		padding-left: 7.5px;
		padding-right: 7.5px;
		width: 100%;
	}
	
	.section-title {
		font-size: 1.6rem;
	}
	
	.mission-text {
		font-size: 0.9rem;
		padding: 0 10px;
	}
	
	/* Cartes et éléments */
	.stat-card,
	.content-card,
	.formation-card,
	.advantage-card,
	.testimonial-card {
		padding: 20px 12px;
		margin-bottom: 15px;
	}
	
	/* Boutons */
	.cta-button,
	.content-button,
	.formation-btn,
	.gallery-btn,
	.inscription-btn,
	.advantage-cta-btn,
	.testimonial-cta-btn {
		font-size: 0.85rem;
		padding: 8px 16px;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1199px) {
	#hero {
		padding-top: 120px;
		height: auto;
		min-height: 100vh;
	}
	
	#hero h4 {
		font-size: 2.8rem;
		max-width: 90%;
		color: #ffffff;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	
	#hero .btn {
		font-size: 1.3rem;
		padding: 16px 30px;
	}
	
	/* Correction des containers pour tablette */
	.container {
		max-width: 95%;
	}
}


.carousel-item {
	height: 100vh;
	min-height: 300px;
}

.carousel-caption {
	bottom: 20px;
	z-index: 3;
}

.carousel-caption h5 {
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #212529;
}

.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}

.carousel-inner::before {
	content: '';
	position: absolute;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}


body{
	font-family: var(--font-base);
	line-height: 1.7;
	color: var(--cc-body);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
	font-weight: 600;
	color:var(--c-dark);
}

.texte_title{
	font-size: 22px;
	color: #000;
	font-weight: bolder;
	text-transform: uppercase;
}
.inline{
	margin: 0 auto;
	height: 2px;
	width: 50px;
	background-color: gray;
}
.statut{
	font-style: italic;
	text-transform: capitalize;
}

a{
	text-decoration:none;
	color:var(--cc-brand-light);
	/* transition: var(--transition:); */
}

a:hover{
}



.navbar{
	/*height: 90px;
	padding: 0.5rem;
	margin:0 10px;
	background: transparent;
	box-shadow: 2px 5px 2px lightgray;*/
}

.dropdown-menu {
	background-color: #04021e;
	width: 350px;
	padding: 15px;
}
.dropdown-menu li a{
	color: #fff;
	width: 100%;
}

.dropdown-menu li:hover {
	width: 100%;
	background-color: var(--cc-text);
	transform: scale(1.05);
	transition: all 0.5s ease;
}


.login-button{
	background-color: var(--cc-text);
	color: #fff;
	padding: 8px 20px;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
	text-decoration: none;
	transition: 0.5s background-color;
	transition:  all 0.5s ease;;
}

.login-button:hover{
	transform: scale(1.1);
}


.navbar-toggler{
	border: none;
	font-size: 1.2rem;
}

.navbar-toggler:focus, .btn-close:focus{
	box-shadow: none;
	outline: none;
}

.nav-link{
	font-weight: 500;
	position: relative;
}

@media (min-width:991px){
	.nav-link::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: var(--cc-brand);
	visibility: hidden;
	transition: 0.3s ease-in-out;
	}
	.nav-link:hover::before, .nav-link.active::before{
		width: 100%;
		visibility: visible;
	}
}

.carousel-inner::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.cards {
	position: relative;
	top: -40px;
	/* Ajustez cette valeur pour contrÃ´ler la hauteur */
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	/* Couleur de fond des cartes */
	padding: 20px;
	border: 1px solid #ccc;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	z-index: 3;
	height: 300px;
}


/*avantages de se former*/

.cardis {
	border-radius: 4px !important;
	border: none;
	background: transparent;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cardis:hover {
	transition: 1s;
	transform: scale(1.1);
}

.cards-header {
	font-size: 80px;
	color: var(--cc-brand-light);;
	font-weight: bolder;
}

.cards-body {
	font-weight: bolder;
	font-size: 20px;
}

.cards-footer {
	text-align: center;
}





/* 
.image-wrapper{
	width: ;
} */




/**********testimonials**********/

.container__card{
	display: flex;
	align-items: center;
	justify-content: center;
}

.card__container{
	padding-block:5rem;
}

.card__content{
	margin-inline:1.5rem;
	border-radius: 1.25rem;
	overflow: hidden;
}

.card__article{
	width: 300px;
	border-radius: 1.25rem;
	overflow: hidden;
}

.card__image{
	position: relative;
	padding-top: 1.5rem;
	background-color: var(--cc-text);
	margin-bottom: -0.75rem;display: flex;
	align-items: center;
	justify-content: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card__data{
	background-color: var(--cc-brand);
	padding: 1.5rem 2rem;
	border-radius: 1rem;
	text-align: center;
	position: relative;
	z-index: 10;
}

.card__data h5{
	color: #212529;
}
.card__img{
	width: 180px;

	position: relative;
	z-index: 5;
}

.card__image img{
	border-radius: 50px;
}

.swiper-button-next::after,
.swiper-button-prev::after{
	content: '';
}

.swiper-button-next,
.swiper-button-prev{
	width: initial;
	height: initial;
	font-size: 3rem;
	color: var(--cc-brand);
	display: none;
}

.swiper-button-prev{
	left: 0;
}

.swiper-button-next{
	right: 0;
}

.swiper-pagination-bullet{
	background-color: var(--cc-brand);
}

.swiper-pagination-bullet-active{
	background-color: var(--cc-brand);
}

@media screen and (max-width: 320px){
	.card__data{
		padding:1rem;
	}
}

@media screen and (min-width: 768px){
	.card__content{
		margin-inline: 3rem;
	}

	.swiper-button-next,
	.swiper-button-prev{
		display: block;
	}
}

@media screen and (min-width: 1120px){
	.card__container{
		max-width: 1120px;
	}

	.swiper-button-prev{
		left: 1rem;
	}

	.swiper-button-next{
		right: 1rem;
	}
}


/*********Contacts************/

/*contact*/

.contacts{
	position:relative;
	min-height: 100vh;
	/*padding: 50px 100px;*/
	display: flex;
	/*justify-content: center	;*/
	/*align-items: center;*/
	flex-direction: column	;

}

.contacts .content{
	/*max-width: 800px;*/
	text-align:center;
}

.contacts .content h2{
	font-size:36px;
	text-transform: uppercase;
	font-weight:bolder;

}

/*.contacts .content p{*/
/*	font-weight:bold;*/

/*}*/

.containerContact{
	width: 100%;
	display: flex;
	justify-content: center	;
	align-items: center;
	margin-top:30px;
}

.containerContact .contactinfo{
	width: 50%;
	display: flex;
	flex-direction: column;
}


.containerContact .contactinfo .box{
	position: relative;
	padding: 20px 0;
	display: flex;
}

.containerContact .contactinfo .box .icon{
	min-width: 60px;
	height: 60px;
	background: var(--cc-text);
	display: flex;
	justify-content: center	;
	align-items: center;
	flex-direction: column	;
	border-radius: 50px;
	font-size: 22px;
	color: #fff;
}

.containerContact .contactinfo .box .text{
	display: flex;
	flex-direction: column	;
	margin-left: 20px;
	font-size: 16px;
	font-weight: bold;
}

.containerContact .contactinfo .box .text h3{
	font-weight: bolder;
	color: #0648a7;
	font-size: 15pt;
}

.containerContact .contactForm{
	width: 40%;
	padding: 40px;
	background: var(--cc-text);
}


.containerContact .contactForm h2{
	font-size:30px;
	color:#333;
	font-weight:bolder;
}

.containerContact .contactForm .inputBox{
	position: relative;
	width: 100%;
	margin-top: 15px;
}

.containerContact .contactForm .inputBox textarea{
	resize: none;
}

.containerContact .contactForm h2,
.containerContact .contactForm .inputBox span{
	color: #212529;
}

.containerContact .contactForm .inputBox input,
.containerContact .contactForm .inputBox textarea{
	width: 100%;
	padding: 5px 7px;
	font-size: 16px;
	margin: 10px 0;
	border: 2px solid #fff ;
	outline: none;
	background-color: var(--cc-text);
	resize: none;
	margin: 0;
}


.containerContact .contactForm .inputBox input[type="submit"]{
	background: #fff;
	border:none;
	font-weight: bold;
	cursor: pointer;
	padding: 10px;
}

@media(max-width:991px){
	.containerContact .contactinfo .box .text p{
		font-size: 12pt;
	}
	.containerContact .contactForm{
		margin: 5px 11px
	}
	.containerContact{
		flex-direction: column; 
	}
	.containerContact .contactinfo{
		width: 100%;
	}

	.containerContact .contactinfo,
	.containerContact .contactForm{
		width: 100%;
	}
}


/*********Fin Contacts*********/






/* Section Footer Optimisée */
footer {
	background: linear-gradient(135deg, var(--cc-brand) 0%, #2c3e50 100%);
	padding: 60px 0 30px;
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

footer .container {
	position: relative;
	z-index: 2;
}

footer h6 {
	color: var(--cc-text) !important;
	font-weight: 700;
	font-size: 1.3rem;
	margin-bottom: 20px;
	position: relative;
}

footer h6::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--cc-text), #4facfe);
	border-radius: 2px;
}

footer h6, footer .p {
	text-align: left;
}

footer .p {
	color: #e9ecef;
	line-height: 1.7;
	font-size: 0.95rem;
	margin-bottom: 15px;
}

.contact li {
	text-align: left;
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.contact li i {
	color: var(--cc-text);
	font-size: 1.1rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.contact li small,
.contact li span,
.contact li a {
	color: #e9ecef;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.9rem;
	line-height: 1.5;
}

.contact li a:hover {
	color: var(--cc-text);
	text-decoration: none;
}

/* Liens de navigation du footer */
footer a {
	transition: all 0.3s ease;
	position: relative;
}

footer a:hover {
	color: var(--cc-text) !important;
	transform: translateX(5px);
}

footer a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--cc-text);
	transition: width 0.3s ease;
}

footer a:hover::before {
	width: 100%;
}

/* Réseaux sociaux */
footer .list-inline-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--cc-text), #4facfe);
	border-radius: 50%;
	color: white !important;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	text-decoration: none;
}

footer .list-inline-item a:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 20px rgba(var(--cc-text-rgb), 0.3);
	color: white !important;
}

/* Séparateur */
footer hr {
	border-color: rgba(255, 255, 255, 0.1);
	margin: 40px 0 30px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Copyright */
footer .row.align-items-center p {
	color: #bdc3c7;
	font-size: 0.9rem;
	margin: 0;
}

footer .row.align-items-center a {
	color: var(--cc-text);
	font-weight: 600;
	text-decoration: none;
}

footer .row.align-items-center a:hover {
	color: #4facfe;
}

/* Styles responsifs pour le footer */
@media only screen and (max-width: 768px) {
	footer {
		padding: 40px 0 20px;
	}
	
	footer h6 {
		font-size: 1.2rem;
		margin-bottom: 15px;
	}
	
	footer .p {
		font-size: 0.9rem;
	}
	
	.contact li {
		margin-bottom: 10px;
	}
	
	.contact li small,
	.contact li span,
	.contact li a {
		font-size: 0.85rem;
	}
	
	footer .list-inline-item a {
		width: 35px;
		height: 35px;
		font-size: 1.1rem;
	}
}

@media only screen and (max-width: 576px) {
	footer {
		padding: 30px 0 15px;
	}
	
	footer h6 {
		font-size: 1.1rem;
		margin-bottom: 12px;
	}
	
	footer .p {
		font-size: 0.85rem;
	}
	
	.contact li {
		margin-bottom: 8px;
	}
	
	.contact li small,
	.contact li span,
	.contact li a {
		font-size: 0.8rem;
	}
	
	footer .list-inline-item a {
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}
}






@media only screen and (max-width: 768px) {
	  #hero{
		background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(13, 44, 78, 0.8), rgba(0, 0, 0, 0.6)), url(../img/bc4.jpg);
			background-position: center top;
	background-size: cover;
		background-repeat: no-repeat;
		background-blend-mode: overlay;
		padding-top: 120px;
		margin-top: 0;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		position: relative;
		overflow: hidden;
	}
}


@media only screen and (min-width: 769px) and (max-width: 1199px) {
   #hero{
		background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bc1.jpg);
			background-position: center top;
	background-size: cover;
		background-repeat: no-repeat;
		background-blend-mode: multiply;
		padding-top: 140px; /* Réduction du padding pour tablette */
		margin-top: 0; /* Suppression de la marge */
		height: 100vh; /* Hauteur fixe de la vue */
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
}

@media only screen and (min-width: 1200px) {
   #hero{
		background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bc1.jpg);
			background-position: center top;
	background-size: cover;
		background-repeat: no-repeat;
		background-blend-mode: multiply;
		padding-top: 150px;
		margin-top: 0;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	
	#hero h4 {
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	
	/* Correction des containers pour desktop */
	.container {
		max-width: 1200px;
	}
}


/*@media only screen and (max-width: 768px) {*/
/*	  #hero{*/
/*		background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bc4.jpg);*/
/*		background-position: center;*/
/*		background-size: 100% 100%;*/
/*		background-repeat: no-repeat;*/
/*		background-blend-mode: multiply;*/
/*	}*/
/*}*/


/*@media only screen and (min-width: 769px) and (max-width: 1200px) {*/
/*   #hero{*/
/*		background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bc1.jpg);*/
/*		background-position: center;*/
/*		background-size: 100% 100%;*/
/*		background-repeat: no-repeat;*/
/*		background-blend-mode: multiply;*/
/*	}*/
/*}*/

/* Section FAQ Optimisée */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-title {
    color: var(--cc-text);
    margin-bottom: 15px;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-text), #4facfe);
    border-radius: 2px;
}

.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 500;
}

/* Styles pour l'accordéon FAQ */
.accordion-button {
  width: 100%;
  text-align: left;
    background: white;
    border: 2px solid #e9ecef;
    padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
    border-radius: 12px;
    font-weight: 600;
    color: var(--cc-text);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--cc-text), #4facfe);
    border-color: var(--cc-text);
    color: white;
    box-shadow: 0 8px 25px rgba(var(--cc-text-rgb), 0.2);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--cc-text-rgb), 0.25);
    border-color: var(--cc-text);
}

.accordion-button:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, var(--cc-text), #4facfe);
    color: white;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 15px;
  overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: none;
    background: white;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.accordion-body {
    padding: 25px;
    line-height: 1.7;
    background: white;
    color: #555;
    font-size: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Animation pour l'ouverture/fermeture */
.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-collapse.show {
  display: block !important;
}

.accordion-collapse.collapse {
  display: none;
}

.accordion-collapse.collapsing {
  height: 0;
  overflow: hidden;
    transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Style spécifique pour la FAQ de la page index */
#aboutAccordion .accordion-button {
  font-weight: 600;
    color: var(--cc-text);
}

#aboutAccordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--cc-text), #4facfe);
    color: white;
}

/* Style pour les icônes dans l'accordéon */
.mission-items .fas.fa-star {
    color: var(--cc-text);
  font-size: 0.9rem;
}

/* S'assurer que le contenu est visible */
.accordion-body p,
.accordion-body strong,
.accordion-body .mission-items {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Styles responsifs pour la section FAQ */
@media only screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
  .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
  }
  
  .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

@media only screen and (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .accordion-button {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Section Services Simplifiée */
.services-section {
	background: var(--cc-text);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

.services-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
	pointer-events: none;
}

.services-section .section-title,
.services-section .title-icon,
.services-section .title-underline,
.services-section .mission-text {
	color: #ffffff;
}

.services-section .title-underline {
	background: #ffffff;
}

.services-section .title-underline::before {
	background: #ffffff;
}

.service-image-wrapper {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
}

.service-image-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-image-wrapper img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-image-wrapper:hover img {
	transform: scale(1.05);
}

/* Styles responsifs pour la section Services */
@media only screen and (max-width: 768px) {
	.services-section {
		padding: 60px 0;
	}
	
	.service-image-wrapper img {
		height: 200px;
	}
}

@media only screen and (max-width: 576px) {
	.services-section {
		padding: 40px 0;
	}
	
	.service-image-wrapper img {
		height: 180px;
	}
}

/* Section À Propos Optimisée */
.about-section {
	padding: 80px 0;
	background: #f8f9fa;
}

/* Styles pour l'accordéon À Propos */
.about-accordion {
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border: none;
}

.about-accordion-item {
	border: none;
	border-bottom: 1px solid #e9ecef;
}

.about-accordion-item:last-child {
	border-bottom: none;
}

.about-accordion-header {
	background: none;
	border: none;
	padding: 0;
}

.about-accordion-button {
	width: 100%;
	padding: 20px 25px;
	background: white;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--cc-text);
	transition: all 0.3s ease;
	position: relative;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about-accordion-button:hover {
	background: #f8f9fa;
	color: var(--cc-text);
}

.about-accordion-button.active {
	background: var(--cc-text);
	color: white;
}

.about-accordion-button.active i {
	color: white;
}

.about-accordion-button .fa-chevron-down {
	transition: transform 0.3s ease;
}

.about-accordion-button.active .fa-chevron-down {
	transform: rotate(180deg);
}

.about-accordion-collapse {
	background: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.about-accordion-collapse.show {
	max-height: 500px;
}

.about-accordion-body {
	padding: 25px;
	color: #666;
	line-height: 1.7;
}

.about-accordion-body p {
	margin-bottom: 15px;
}

/* Section Partenaires Optimisée */
.partners-section {
	padding: 80px 0;
	background: #f8f9fa;
	position: relative;
	overflow: hidden;
}

.partners-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
	pointer-events: none;
}

.partners-section .container {
	position: relative;
	z-index: 2;
}

/* Slider de logos partenaires */
.partners-slider {
	position: relative;
	overflow: hidden;
	margin: 40px 0;
}

.partners-track {
	display: flex;
	animation: scroll 30s linear infinite;
	width: calc(200px * 18); /* 9 logos × 2 (duplication) */
}

.partner-logo {
	flex-shrink: 0;
	width: 200px;
	height: 120px;
	margin: 0 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.partner-logo:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s;
}

.partner-logo:hover::before {
	left: 100%;
}

.partner-logo img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
	transition: all 0.3s ease;
}

.partner-logo:hover img {
	transform: scale(1.05);
}

/* Animation de défilement */
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-200px * 9)); /* Défilement de la moitié pour l'effet infini */
	}
}

/* Pause au survol */
.partners-slider:hover .partners-track {
	animation-play-state: paused;
}

/* Styles responsifs pour la section Partenaires */
@media only screen and (max-width: 768px) {
	.partners-section {
		padding: 60px 0;
	}
	
	.partner-logo {
		width: 150px;
		height: 100px;
		margin: 0 20px;
	}
	
	.partners-track {
		width: calc(150px * 18);
		animation-duration: 25s;
	}
	
	@keyframes scroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-150px * 9));
		}
	}
}

@media only screen and (max-width: 576px) {
	.partners-section {
		padding: 40px 0;
	}
	
	.partner-logo {
		width: 120px;
		height: 80px;
		margin: 0 15px;
	}
	
	.partners-track {
		width: calc(120px * 18);
		animation-duration: 20s;
	}
	
	@keyframes scroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-120px * 9));
		}
	}
}

.about-image-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.about-image-container:hover img {
	transform: scale(1.05);
}

.about-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(6, 72, 167, 0.1), rgba(6, 72, 167, 0.05));
	pointer-events: none;
}

.about-content {
	padding: 20px;
}

.about-header {
	margin-bottom: 30px;
}

.about-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--cc-text);
	margin-bottom: 15px;
	text-align: center;
}

.about-title .title-icon {
	color: var(--cc-text);
	margin-right: 10px;
}



.about-features {
	margin-top: 20px;
}

.about-feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	padding: 10px 0;
}

.about-feature-item i {
	color: var(--cc-text);
	margin-right: 12px;
	font-size: 1.1rem;
}

.about-feature-item span {
	font-weight: 500;
	color: #333;
}

.about-mission-items {
	margin-top: 20px;
}

.about-mission-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding: 12px 0;
}

.about-mission-item i {
	color: var(--cc-text);
	margin-right: 15px;
	font-size: 1.2rem;
	width: 20px;
	text-align: center;
}

.about-mission-item span {
	font-weight: 500;
	color: #333;
}

/* Styles responsifs pour la section À Propos */
@media only screen and (max-width: 768px) {
	.about-section {
		padding: 60px 0;
	}
	
	.about-title {
		font-size: 1.8rem;
	}
	
	.about-image-container img {
		height: 300px;
	}
	
	.about-accordion-button {
		padding: 15px 20px;
		font-size: 1rem;
	}
	
	.about-accordion-body {
		padding: 20px;
	}
}

@media only screen and (max-width: 576px) {
	.about-section {
		padding: 40px 0;
	}
	
	.about-title {
		font-size: 1.5rem;
	}
	
	.about-image-container img {
		height: 250px;
	}
	
	.about-accordion-button {
		padding: 12px 15px;
		font-size: 0.95rem;
	}
	
	.about-accordion-body {
		padding: 15px;
	}
}

/* Section Avantages Optimisée */
.advantages-section {
	padding: 80px 0;
	background: #ffffff;
	position: relative;
}

.advantages-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
	pointer-events: none;
}

.advantages-section .container {
	position: relative;
	z-index: 2;
}

.advantage-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	height: 100%;
	border: 2px solid transparent;
}

.advantage-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--cc-text), #4facfe);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.advantage-card:hover::before {
	transform: scaleX(1);
}

.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	border-color: var(--cc-text);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, var(--cc-text), #4facfe);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.3s ease;
}

.advantage-icon::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	background: linear-gradient(135deg, var(--cc-text), #4facfe);
	border-radius: 50%;
	opacity: 0.3;
	transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon::before {
	transform: scale(1.2);
	opacity: 0.5;
}

.advantage-icon i {
	font-size: 2rem;
	color: white;
	z-index: 2;
	position: relative;
}

.advantage-content h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--cc-text);
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.advantage-content p {
	color: #666;
	line-height: 1.6;
	margin: 0;
	font-size: 0.95rem;
}

.advantage-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(var(--cc-text-rgb), 0.95) 0%, rgba(79, 172, 254, 0.95) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 20px;
}

.advantage-card:hover .advantage-hover {
	opacity: 1;
}

.hover-content {
	text-align: center;
	color: white;
}

.hover-content i {
	font-size: 3rem;
	margin-bottom: 15px;
	display: block;
}

.hover-content span {
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.advantages-cta {
	margin-top: 60px;
}

.advantage-cta-btn {
	background: linear-gradient(135deg, var(--cc-text), #4facfe);
	border: none;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	box-shadow: 0 10px 25px rgba(var(--cc-text-rgb), 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.advantage-cta-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.advantage-cta-btn:hover::before {
	left: 100%;
}

.advantage-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(var(--cc-text-rgb), 0.4);
}

/* Styles responsifs pour la section Avantages */
@media only screen and (max-width: 768px) {
	.advantages-section {
		padding: 60px 0;
	}
	
	.advantage-card {
		padding: 30px 20px;
		margin-bottom: 30px;
	}
	
	.advantage-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}
	
	.advantage-icon i {
		font-size: 1.8rem;
	}
	
	.advantage-content h3 {
		font-size: 1.3rem;
	}
	
	.advantage-content p {
		font-size: 0.9rem;
	}
	
	.hover-content i {
		font-size: 2.5rem;
	}
	
	.hover-content span {
		font-size: 1rem;
	}
}

@media only screen and (max-width: 576px) {
	.advantages-section {
		padding: 40px 0;
	}
	
	.advantage-card {
		padding: 25px 15px;
	}
	
	.advantage-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}
	
	.advantage-icon i {
		font-size: 1.5rem;
	}
	
	.advantage-content h3 {
		font-size: 1.2rem;
	}
	
	.advantage-content p {
		font-size: 0.85rem;
	}
	
	.hover-content i {
		font-size: 2rem;
	}
	
	.hover-content span {
		font-size: 0.9rem;
	}
}

/* Section Témoignages Optimisée */
.testimonials-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.testimonials-section .container {
	position: relative;
	z-index: 2;
}

.testimonial-card {
	background: white;
	border-radius: 25px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	height: 100%;
	border: 2px solid transparent;
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--cc-text), #4facfe);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
	transform: scaleX(1);
}

.testimonial-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
	border-color: var(--cc-text);
}

.testimonial-image {
	width: 120px;
	height: 120px;
	margin: 0 auto 25px;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--cc-text);
	box-shadow: 0 10px 25px rgba(var(--cc-text-rgb), 0.3);
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
	transform: scale(1.1);
}

.testimonial-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(var(--cc-text-rgb), 0.2) 0%, rgba(79, 172, 254, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-overlay {
	opacity: 1;
}

.testimonial-quote {
	font-size: 2.5rem;
	color: var(--cc-text);
	margin-bottom: 20px;
	opacity: 0.7;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 25px;
	font-style: italic;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	font-size: 3rem;
	color: var(--cc-text);
	position: absolute;
	top: -10px;
	left: -15px;
	opacity: 0.3;
}

.testimonial-author h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--cc-text);
	margin-bottom: 5px;
}

.testimonial-author p {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 15px;
	font-weight: 500;
}

.author-rating {
	display: flex;
	justify-content: center;
	gap: 5px;
}

.author-rating i {
	color: #ffc107;
	font-size: 1.1rem;
	animation: starPulse 2s infinite;
}

.author-rating i:nth-child(1) { animation-delay: 0s; }
.author-rating i:nth-child(2) { animation-delay: 0.2s; }
.author-rating i:nth-child(3) { animation-delay: 0.4s; }
.author-rating i:nth-child(4) { animation-delay: 0.6s; }
.author-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}

.testimonials-swiper {
	padding: 20px 0;
}

.testimonials-nav-prev,
.testimonials-nav-next {
	width: 50px;
	height: 50px;
	background: var(--cc-text);
	border-radius: 50%;
	color: white;
	box-shadow: 0 5px 15px rgba(var(--cc-text-rgb), 0.3);
	transition: all 0.3s ease;
}

.testimonials-nav-prev:hover,
.testimonials-nav-next:hover {
	background: #4facfe;
	transform: scale(1.1);
}

.testimonials-pagination {
	position: relative;
	margin-top: 30px;
}

.testimonials-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--cc-text);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: #4facfe;
	transform: scale(1.2);
}

.testimonials-cta {
	margin-top: 60px;
}

.testimonial-cta-btn {
	background: linear-gradient(135deg, var(--cc-text), #4facfe);
	border: none;
	padding: 18px 45px;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 50px;
	box-shadow: 0 15px 35px rgba(var(--cc-text-rgb), 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.testimonial-cta-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.testimonial-cta-btn:hover::before {
	left: 100%;
}

.testimonial-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(var(--cc-text-rgb), 0.4);
}

/* Styles responsifs pour la section Témoignages */
@media only screen and (max-width: 768px) {
	.testimonials-section {
		padding: 60px 0;
	}
	
	.testimonial-card {
		padding: 30px 20px;
		margin-bottom: 30px;
	}
	
	.testimonial-image {
		width: 100px;
		height: 100px;
		margin-bottom: 20px;
	}
	
	.testimonial-quote {
		font-size: 2rem;
	}
	
	.testimonial-text {
		font-size: 1rem;
	}
	
	.testimonial-author h4 {
		font-size: 1.2rem;
	}
	
	.testimonial-author p {
		font-size: 0.9rem;
	}
	
	.testimonials-nav-prev,
	.testimonials-nav-next {
		width: 40px;
		height: 40px;
	}
}

@media only screen and (max-width: 576px) {
	.testimonials-section {
		padding: 40px 0;
	}
	
	.testimonial-card {
		padding: 25px 15px;
	}
	
	.testimonial-image {
		width: 80px;
		height: 80px;
		margin-bottom: 15px;
	}
	
	.testimonial-quote {
		font-size: 1.8rem;
	}
	
	.testimonial-text {
		font-size: 0.95rem;
	}
	
	.testimonial-author h4 {
		font-size: 1.1rem;
	}
	
	.testimonial-author p {
		font-size: 0.85rem;
	}
	
	.testimonials-nav-prev,
	.testimonials-nav-next {
		width: 35px;
		height: 35px;
	}
}

/* Section Bandeau de Contact */
.contact-bar-section {
    background: linear-gradient(135deg, var(--cc-text) 0%, #4facfe 100%);
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-bar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.contact-bar-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-bar-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-bar-text h3 i {
    font-size: 2rem;
    color: #ffc107;
}

.contact-bar-text .btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-bar-text .btn:hover {
    background: white;
    color: var(--cc-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-contact-cta {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border: none;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    color: white;
}

/* Styles responsifs pour le bandeau de contact */
@media only screen and (max-width: 768px) {
    .contact-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .contact-bar-text h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-bar-text h3 i {
        font-size: 1.8rem;
    }
    
    .btn-contact-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 576px) {
    .contact-bar-section {
        padding: 30px 0;
    }
    
    .contact-bar-text h4 {
        font-size: 1rem;
    }
    
    .contact-bar-text h3 {
        font-size: 1.3rem;
    }
    
    .contact-bar-text h3 i {
        font-size: 1.5rem;
    }
    
    .btn-contact-cta {
        padding: 10px 25px;
    font-size: 0.9rem;
  }
}