/********** Template CSS **********/
:root {
	--primary: #0f172a;
	--light: #ffffff;
	--dark: #0f172a;
	--dark-bg: #0b1220;
	--light-bg: #f1f5f9;
	--accent: #ed8b3a;
	--accent-hover: #412e1e;
	--auxiliary: #14b8a6;
	--light-text: #ffffff;
	--dark-text: #0f172a;
	--white: #ffffff;
	--light-gray: #cbd5e1;
	--background-color: #ffffff;
	--text-color: #0f172a;
	--accent-color: #ed8b3a;

	--light-accent: rgba(124, 58, 237, 0.08);
	--header-height: 80px;
	--transition: all 0.3s ease;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Button ***/
.btn {
	font-weight: 500;
	text-transform: uppercase;
	transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #ffffff;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: var(--primary);
}

@media (max-width: 991.98px) {
	.navbar-dark .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
}

/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: rgba(135, 80, 109, 0.6); */
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.page-header {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-header-inner {
	background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
	color: var(--light);
}

.booking {
	position: relative;
	margin-top: -100px !important;
	z-index: 1;
}

/*** Footer ***/
.newsletter {
	position: relative;
	z-index: 1;
}

.footer {
	position: relative;
	/* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
	margin-right: 5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	border: 1px solid #ffffff;
	border-radius: 35px;
	transition: 0.3s;
}

.footer .btn.btn-social:hover {
	color: var(--accent);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 10px;
	margin: 6px;
	border: 1px solid var(--accent);
	border-radius: 12px;
	text-align: left;
	color: var(--accent);
	font-size: 15px;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link:hover {
	box-shadow: none;
	color: var(--background-color);
	background-color: var(--accent-hover);
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
	color: var(--accent-color);
}

.footer .footer-menu a {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

/* Google Fonts - Rambla */
@import url('https://fonts.googleapis.com/css2?family=Rambla:wght@400;700&display=swap');

/* Global font family */
* {
	font-family: 'Rambla', sans-serif !important;
}

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 40%;
	border-radius: 30px;
	background: #fff;
	padding: 15px 25px 22px;
	transition: right 0.3s ease;
	box-shadow: 0 5px 10px rgb(0, 0, 0);
	z-index: 999;

	@media (max-width: 600px) {
		width: 100%;
	}
}

.cookie-wrapper .show {
	right: 20px;
}

.hidden {
	display: none;
}

header i {
	color: #ed8b3a;
	font-size: 32px;
	text-align: center;
}

header h2 {
	color: #ed8b3a;
	font-weight: 500;
	text-align: center;
}

.data {
	text-align: center;
}

.data p a {
	color: #ed8b3a;
	text-decoration: none;
	text-align: center !important;
}

.data p a:hover {
	text-decoration: underline;
}

.buttons {
	padding: 20px 0px;
	text-align: center;
}

.buttons .cookie-button {
	border: 2px solid #ed8b3a;
	color: #fff;
	padding: 8px 0;
	background: #ed8b3a;
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.5s ease;
	max-width: 150px;
	border-radius: 10px;
}

.buttons #acceptBtn:hover {
	background-color: transparent;
	color: #ed8b3a;
}

#declineBtn {
	background-color: #fff;
	color: #ed8b3a;
}

#declineBtn:hover {
	background-color: #3d2818;
	color: #fff;
}

/* Footer styles */
.footer {
	padding-top: 4rem;
	background-color: var(--background-color) !important;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, var(--accent), var(--auxiliary));
}

.footer .brand-link {
	font-size: 26px;
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all 0.3s ease;
}

.footer .brand-link:hover {
	color: var(--accent-hover);
	transform: translateX(5px);
}

.footer .brand-link::after {
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

.footer .brand-link:hover::after {
	width: 100%;
}

.footer .btn-link {
	display: block;
	text-align: left;
	color: var(--accent-color);
	text-decoration: none;
	padding: 0.5rem 0;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
}

.footer .btn-link:hover {
	color: var(--accent-hover);
	transform: translateX(5px);
}

.footer .btn-link:hover::before {
	width: 20px;
}

.footer .contact-email {
	color: var(--accent-color);
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.footer .contact-email:hover {
	transform: translateX(5px);
	color: var(--accent-hover);
}

.footer .copyright {
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 2rem;
}

@media (max-width: 767.98px) {
	.footer {
		padding-top: 3rem;
	}

	.footer .brand-link {
		margin-bottom: 1.5rem;
		display: inline-block;
	}

	.footer .contact-info {
		margin-top: 1.5rem;
	}
}

/* new styles  */
/* Styles généraux */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-color);
}

.btn-accent {
	background-color: var(--accent-color);
	color: white;
	border: none;
	transition: var(--transition);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 500;
	padding: 12px 30px;
}

.btn-accent:hover {
	background-color: var(--accent-hover);
	color: white;
	transform: translateY(-2px);
}

/* Styles pour le header */
.site-header {
	background-color: var(--auxiliary);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 1000;
	box-shadow: var(--shadow);
	transition: var(--transition);
	padding-top: 10px;
}

.site-header.scrolled {
	height: 60px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-logo {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-color);
	text-decoration: none;
	position: relative;
}

.site-logo span {
	color: var(--accent-color);
}

.nav-link {
	color: var(--text-color);
	font-weight: 500;
	padding: 8px 16px !important;
	transition: var(--transition);
	position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
	color: var(--accent-color);
}

.nav-link:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: var(--transition);
	transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link:focus:after,
.nav-link.active:after {
	width: 30px;
}

/* Styles pour le bloc principal (hero) */
.hero-section {
	background-color: white;
	padding: 140px 0;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background-color: var(--light-accent);
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	font-weight: 400;
	max-width: 600px;
}

.hero-title span,
.highlight {
	color: var(--accent-color);
	position: relative;
}

.hero-image-container {
	position: relative;
	z-index: 2;
}

.hero-pattern {
	position: absolute;
	width: 200px;
	height: 200px;
	background-color: var(--light-accent);
	border-radius: 50%;
	top: -30px;
	left: -30px;
	z-index: -1;
}

.hero-image {
	border-radius: 8px;
	box-shadow: var(--shadow);
	position: relative;
	z-index: 2;
}

@media (max-width: 991.98px) {
	.hero-section {
		padding: 80px 0;
	}

	.hero-section::before {
		width: 100%;
		clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
		height: 50%;
		top: auto;
		bottom: 0;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-image-container {
		margin-top: 3rem;
	}
}

@media (max-width: 767.98px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-section {
		padding: 180px 0;
	}
}

/* Styles pour le bloc À propos de nous */
.about-section {
	padding: 100px 0;
	position: relative;
}

.about-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background-color: var(--light-accent);
	clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
	z-index: 1;
}

.about-content {
	position: relative;
	z-index: 2;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.about-card {
	background-color: white;
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 30px;
	height: 100%;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background-color: var(--accent-color);
}

.about-card-title {
	font-size: 1.5rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
	color: var(--text-color);
}

.about-card-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--accent-color);
	opacity: 0.15;
	font-size: 3rem;
}

/* Styles pour le bloc Nos programmes */
.programs-section {
	padding: 100px 0;
	background-color: white;
	position: relative;
}

.programs-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background-color: var(--light-accent);
	border-radius: 50%;
	z-index: 1;
}

.programs-section::after {
	content: '';
	position: absolute;
	bottom: 50px;
	left: 50px;
	width: 100px;
	height: 100px;
	background-color: var(--light-accent);
	border-radius: 50%;
	z-index: 1;
}

.program-card {
	border-radius: 8px;
	background-color: var(--background-color);
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 100%;
	position: relative;
	z-index: 2;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card-header {
	background-color: var(--accent-color);
	color: white;
	padding: 20px;
	border-radius: 8px 8px 0 0;
	position: relative;
}

.program-card-header h3 {
	margin: 0;
	font-size: 1.5rem;
	color: white;
}

.program-card-body {
	padding: 25px;
}

.program-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.program-feature-icon {
	color: var(--accent-color);
	margin-right: 15px;
	font-size: 1.25rem;
}

.program-feature-text h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.program-feature-text p {
	margin: 0;
	font-size: 0.95rem;
}

.program-number {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: rgba(255, 255, 255, 0.2);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 700;
	font-size: 1.2rem;
}

.program-cta {
	margin-top: 20px;
	text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.about-section,
	.programs-section,
	.methods-section {
		padding: 70px 0;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.about-card {
		margin-bottom: 30px;
	}

	.program-card {
		margin-bottom: 30px;
	}

	.method-card {
		margin-bottom: 30px;
	}

	.method-card.featured {
		transform: scale(1);
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.method-card.featured:hover {
		transform: translateY(-10px);
	}
}

@media (max-width: 767.98px) {
	.section-title {
		font-size: 2rem;
	}

	.about-card-title {
		font-size: 1.3rem;
	}

	.program-card-header h3 {
		font-size: 1.3rem;
	}

	.method-title {
		font-size: 1.3rem;
	}

	.method-icon {
		width: 60px;
		height: 60px;
	}

	.method-icon span {
		font-size: 2rem;
	}
}

/* Styles pour le bloc Méthodes de succès */
.methods-section {
	padding: 100px 0;
	background-color: var(--background-color);
	position: relative;
}

.method-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
	height: 100%;
	position: relative;
	z-index: 2;
	padding: 30px;
	text-align: center;
}

.method-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.method-card.featured {
	border: 2px solid var(--accent-color);
	transform: scale(1.05);
}

.method-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.method-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--light-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: var(--transition);
}

.method-icon span {
	font-size: 2.5rem;
	color: var(--accent-color);
}

.method-card:hover .method-icon {
	background-color: var(--accent-color);
	transform: scale(1.1);
}

.method-card:hover .method-icon span {
	color: white;
}

.method-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--text-color);
}

.method-description {
	margin-bottom: 25px;
	color: var(--text-color);
	line-height: 1.6;
}

.method-features {
	text-align: left;
}

.method-feature {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 0.95rem;
}

.method-feature span:first-child {
	color: var(--accent-color);
	margin-right: 10px;
	font-size: 1.2rem;
}

.method-feature span:last-child {
	color: var(--text-color);
}

.pricing-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
	height: 100%;
	position: relative;
	z-index: 2;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
	border: 2px solid var(--accent-color);
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.pricing-header {
	padding: 30px 25px;
	text-align: center;
	position: relative;
}

.pricing-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.pricing-subtitle {
	color: var(--accent-color);
	font-weight: 500;
	margin-bottom: 20px;
}

.pricing-img-container {
	width: 100%;
	height: 180px;
	overflow: hidden;
	position: relative;
}

.pricing-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.pricing-card:hover .pricing-img {
	transform: scale(1.05);
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin: 25px 0 15px;
}

.pricing-price span {
	font-size: 1rem;
	font-weight: 400;
	opacity: 0.7;
}

.pricing-features {
	padding: 30px 25px;
}

.pricing-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.pricing-feature:last-child {
	margin-bottom: 0;
}

.pricing-feature-icon {
	color: var(--accent-color);
	margin-right: 15px;
	flex-shrink: 0;
}

.pricing-cta {
	padding: 0 25px 30px;
	text-align: center;
}

.pricing-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--accent-color);
	color: white;
	font-size: 0.8rem;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 500;
	z-index: 2;
}

/* Styles pour le bloc Témoignages */
.testimonials-section {
	padding: 100px 0;
	background-color: white;
	position: relative;
}

.testimonial-card {
	background-color: var(--background-color);
	border-radius: 12px;
	padding: 30px 30px;
	box-shadow: var(--shadow);
	position: relative;
	transition: var(--transition);
	height: 100%;
	margin: 1rem 0;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
	font-size: 1rem;
	color: var(--accent-color);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	left: 20px;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-author-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	border: 2px solid var(--accent-color);
}

.testimonial-author-name {
	font-weight: 600;
	margin-bottom: 3px;
}

.testimonial-author-title {
	font-size: 0.9rem;
	opacity: 0.7;
}

.testimonial-rating {
	display: flex;
	margin-bottom: 15px;
}

.rating-star {
	color: var(--accent-color);
	margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.pricing-section,
	.testimonials-section {
		padding: 70px 0;
	}

	.pricing-card.featured {
		transform: scale(1);
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}
}

@media (max-width: 767.98px) {
	.pricing-price {
		font-size: 2rem;
	}

	.pricing-title {
		font-size: 1.3rem;
	}

	.testimonial-card {
		margin-bottom: 30px;
	}
}

/* Styles pour le bloc Avantages */
.advantages-section {
	padding: 100px 0;

	background-color: white;
}

.advantages-content {
	position: relative;
	z-index: 2;
}

.advantages-image-container {
	position: relative;
	margin-bottom: 30px;
}

.advantages-image {
	border-radius: 10px;
	box-shadow: var(--shadow);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advantages-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	background-color: var(--auxiliary);
	color: var(--light);
	border-radius: 2rem;
	padding: 3rem;
}

.advantage-item {
	display: flex;
	align-items: flex-start;
	background-color: var(--dark-text);
	padding: 2rem;
	border-radius: 2rem;
}

.advantage-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background-color: var(--background-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.advantage-icon span {
	color: var(--accent-color);
	font-size: 1.5rem;
}

.advantage-text h4 {
	color: var(--light);
	font-size: 1.1rem;
	margin-bottom: 8px;
	font-weight: 600;
}

.advantage-text p {
	color: var(--light);
	margin: 0;
	line-height: 1.6;
}

/* Styles pour le bloc Appel à l'action */
.cta-section {
	padding: 100px 0;
	background-color: var(--background-color);
	position: relative;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-image-container {
	position: relative;
	z-index: 2;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.cta-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-text {
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	position: relative;
	z-index: 3;
}

.cta-section.image-right .cta-text {
	margin-right: -50px;
}

.cta-section.image-left .cta-text {
	margin-left: -50px;
}

.cta-title {
	font-size: 2rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.cta-description {
	margin-bottom: 30px;
	font-size: 1.1rem;
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 100px 0;
	background-color: white;
	position: relative;
}

.contact-info {
	margin-bottom: 30px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background-color: var(--light-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.contact-icon span {
	color: var(--accent-color);
	font-size: 1.5rem;
}

.contact-details h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-details p,
.contact-details a {
	margin: 0;
	line-height: 1.6;
	color: var(--text-color);
	text-decoration: none;
	transition: var(--transition);
}

.contact-details a:hover {
	color: var(--accent-color);
}

.social-links {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--light-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: var(--transition);
	color: var(--accent-color);
	text-decoration: none;
}

.social-link:hover {
	background-color: var(--accent-color);
	color: white;
	transform: translateY(-3px);
}

/* Styles pour le formulaire */
.form-section {
	padding: 0 0 100px;
	background-color: white;
}

.form-container {
	background-color: var(--background-color);
	border-radius: 10px;
	padding: 40px;
	box-shadow: var(--shadow);
}

.form-title {
	margin-bottom: 30px;
	font-size: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
}

.form-floating {
	margin-bottom: 20px;
}

.form-control {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 15px;
	height: auto;
	font-size: 1rem;
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.25rem rgba(138, 101, 13, 0.25);
}

.btn-primary {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	transition: var(--transition);
}

.btn-primary:hover {
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
	transform: translateY(-2px);
}

/* Media queries */
@media (max-width: 991.98px) {
	.advantages-section,
	.cta-section,
	.contact-section,
	.form-section {
		padding: 70px 0;
	}

	.advantages-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cta-section.image-right .cta-text,
	.cta-section.image-left .cta-text {
		margin-right: 0;
		margin-left: 0;
		margin-top: 30px;
	}

	.cta-image-container {
		height: 300px;
	}
}

@media (max-width: 767.98px) {
	.cta-title {
		font-size: 1.8rem;
	}

	.form-container {
		padding: 30px 20px;
	}
}

.footer_links {
	display: flex;
	flex-direction: row;
}

.growth {
	background-image: url('img/background-image.png');
	background-size: cover;
	background-position: center;
	color: var(--light-text);
	padding: 100px 0;
}

.lead {
	color: var(--accent-color);
	font-weight: 500;
}
