/********** Template CSS **********/
:root {
	--primary: #af2232;
	--light: #fafdfb;
	--dark: #3c0213;
}

.fw-medium {
	font-weight: 500 !important;
}
.money_for_gold_item_name {
	background-color: #2722af;
	color: #fff;
	padding: 4px 10px;
	font-size: 18px;
	display: inline;
	margin-bottom: 8px;
}
.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: #000000;
}

@media (max-width: 991.98px) {
	.navbar-dark .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
}

/*** Header end ***/

.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(--primary);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #1d1d1d;
	font-size: 15px;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link:hover {
	letter-spacing: 1px;
	box-shadow: none;
}

.footer .copyright {
	margin: 40px 0 0;
	text-align: center;
	color: #000000;
	font-size: 18px;
	border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
	color: var(--light);
}

.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 - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper {
	position: fixed;
	bottom: 0px;
	right: 0;
	width: 40%;
	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: #af224a;
	font-size: 32px;
	text-align: center;
}
header h2 {
	font-weight: 500;
	text-align: center;
}
.data {
	text-align: center;
}
.data p a {
	color: #af224a;
	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 #af224a;
	color: #fff;
	padding: 8px 0;
	background: #af224a;
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.5s ease;
	max-width: 150px;
	border-radius: 0;
}
.buttons #acceptBtn:hover {
	background-color: transparent;
	color: #af224a;
}
#declineBtn {
	background-color: #fff;
	color: #af224a;
}
#declineBtn:hover {
	background-color: #af224a;
	color: #fff;
}
/* Footer Style */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #333;
	color: white;
	padding: 1rem;
}

.logo {
	font-size: 1.5rem;
}

.nav-links {
	list-style: none;
	display: flex;
}

.nav-links li {
	margin-left: 20px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
}

.burger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	height: 21px;
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: white;
}

@media (max-width: 578px) {
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		position: absolute;
		top: 60px;
		left: 0;
		background-color: #333;
	}

	.nav-links li {
		text-align: center;
		margin: 10px 0;
	}

	.burger {
		display: flex;
	}

	.nav-active {
		display: flex;
	}
}

@media (max-width: 768px) {
	.display-3 {
		font-size: 34px;
	}
}

/* new styles  */
/* Variables de couleur */
:root {
	--bg-color: #fff;
	--text-color: #0f0d1a;
	--accent-color: #af224a;
	--light-gray: #f8f9fa;
	--border-color: #e9ecef;
}

/* Styles globaux */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Header fixe */
.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background-color: var(--bg-color);
	border-bottom: 1px solid var(--border-color);
	backdrop-filter: blur(10px);
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-color) !important;
	letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
	color: var(--text-color) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
	padding-top: 100px;
	padding-bottom: 50px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #62555e 0%, #c579b5 100%);
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--text-color);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--accent-color);
	font-weight: 600;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.hero-description {
	font-size: 1.1rem;
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.btn-primary-custom {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: white;
	font-weight: 600;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	border-radius: 8px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	border: none;
}

.btn-primary-custom:hover {
	background-color: #bb0755;
	border-color: #bb0755;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(39, 34, 175, 0.3);
	color: white;
}

.hero-visual {
	position: relative;
}

.hero-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(15, 13, 26, 0.1);
	border: 1px solid var(--border-color);
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feature-icon {
	width: 48px;
	height: 48px;
	background-color: var(--accent-color);
	color: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.feature-text {
	font-weight: 600;
	color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-section {
		padding-top: 80px;
		text-align: center;
	}

	.hero-visual {
		margin-top: 3rem;
	}
}

/* Styles pour le bloc Philosophie */
.philosophy-section {
	padding: 100px 0;
	background-color: var(--light-gray);
}

.philosophy-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 3rem;
	text-align: center;
	letter-spacing: -0.02em;
}

.philosophy-intro {
	font-size: 1.2rem;
	color: var(--text-color);
	opacity: 0.8;
	text-align: center;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.philosophy-item {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 20px rgba(15, 13, 26, 0.08);
	border-left: 4px solid var(--accent-color);
	transition: transform 0.3s ease;
}

.philosophy-item:hover {
	transform: translateY(-5px);
}

.philosophy-item h4 {
	color: var(--accent-color);
	font-weight: 700;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.philosophy-item p {
	color: var(--text-color);
	opacity: 0.8;
	margin: 0;
	line-height: 1.6;
}

.philosophy-image {
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(15, 13, 26, 0.15);
}

/* Styles pour le bloc Programmes */
.programs-section {
	padding: 100px 0;
	background-color: var(--bg-color);
}

.programs-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.02em;
}

.program-card {
	background: white;
	border-radius: 16px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 8px 30px rgba(15, 13, 26, 0.1);
	border: 5px solid var(--accent-color);

	transition: all 0.3s ease;
}

.program-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(39, 34, 175, 0.15);
}

.program-card h4 {
	color: var(--text-color);
	font-weight: 700;
	margin-bottom: 1rem;
	font-size: 1.3rem;
	margin-top: 0.5rem;
}

.program-card p {
	color: var(--text-color);
	opacity: 0.8;
	margin: 0;
	line-height: 1.6;
}

/* Styles pour le bloc Plans tarifaires */
.pricing-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--light-gray) 0%, #a06983 100%);
}

.pricing-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.02em;
}

.pricing-card {
	background: white;
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: 0 10px 40px rgba(15, 13, 26, 0.1);
	border: 2px solid transparent;
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-color);
	box-shadow: 0 20px 60px rgba(39, 34, 175, 0.2);
}

.pricing-card.featured {
	border-color: var(--accent-color);
	transform: scale(1.05);
}

.pricing-card.featured::before {
	content: 'Populaire';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-color);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
}

.plan-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.plan-price {
	font-size: 3rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.plan-currency {
	font-size: 1rem;
	color: var(--text-color);
	opacity: 0.6;
	margin-bottom: 2rem;
}

.plan-features {
	text-align: left;
	margin-bottom: 2.5rem;
}

.plan-features p {
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.6;
	margin: 0;
}

.btn-select-plan {
	background-color: var(--accent-color);
	color: white;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	width: 100%;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-select-plan:hover {
	background-color: #ef0479;
	transform: translateY(-2px);
	color: white;
}

.pricing-note {
	text-align: center;
	margin-top: 3rem;
	color: var(--text-color);
	opacity: 0.7;
	font-style: italic;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
	.philosophy-title,
	.programs-title,
	.pricing-title {
		font-size: 2rem;
	}

	.philosophy-item,
	.program-card,
	.pricing-card {
		padding: 1.5rem;
	}

	.pricing-card.featured {
		transform: none;
		margin-bottom: 2rem;
	}

	.plan-price {
		font-size: 2.5rem;
	}
}
/* Styles pour le bloc Témoignages */
.testimonials-section {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--light-gray) 100%
	);
}

.testimonials-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.02em;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 3rem 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 8px 30px rgba(15, 13, 26, 0.1);
	border: 1px solid var(--border-color);
	position: relative;
	transition: all 0.3s ease;
	text-align: center;
	min-height: 330px;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(39, 34, 175, 0.15);
}

.quote-icon {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.testimonial-text {
	font-size: 1.1rem;
	color: var(--text-color);
	opacity: 0.9;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-style: italic;
	margin-top: 1rem;
}

.testimonial-author {
	font-weight: 700;
	color: var(--accent-color);
	font-size: 1rem;
	margin: 0;
}

.testimonial-age {
	color: var(--text-color);
	opacity: 0.6;
	font-size: 0.9rem;
}

/* Styles pour le bloc Exercices pratiques */
.exercises-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--light-gray) 0%, #a06983 100%);
}

.exercises-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.02em;
}

.exercise-card {
	background: white;
	border-radius: 16px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 6px 25px rgba(15, 13, 26, 0.08);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;

	overflow: hidden;
}

.exercise-card:hover {
	transform: scaleY(1);
}

.exercise-header {
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.exercise-image {
	width: 220px;
	height: 220px;
	margin-bottom: 30px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 4px 15px rgba(15, 13, 26, 0.1);
}

.exercise-content h4 {
	color: var(--text-color);
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.exercise-content p {
	color: var(--text-color);
	opacity: 0.8;
	margin: 0;
	line-height: 1.6;
}

.exercise-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-color), #3730a3);
	color: white;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(39, 34, 175, 0.3);
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
	.testimonials-title,
	.exercises-title {
		font-size: 2rem;
	}

	.testimonial-card,
	.exercise-card {
		padding: 2rem 1.5rem;
	}

	.exercise-header {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.exercise-image {
		align-self: center;
	}

	.testimonial-text {
		font-size: 1rem;
	}
}
/* Styles pour le bloc Blog */
.blog-section {
	padding: 100px 0;
	background-color: var(--light-gray);
}

.blog-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.02em;
}

.blog-article {
	background: white;
	border-radius: 16px;
	padding: 0;
	margin-bottom: 3rem;
	box-shadow: 0 6px 25px rgba(15, 13, 26, 0.1);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.3s ease;
}

.blog-article:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(39, 34, 175, 0.15);
}

.blog-content {
	padding: 2.5rem;
}

.blog-article h4 {
	color: var(--text-color);
	font-weight: 700;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	line-height: 1.3;
}

.blog-text {
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.blog-meta {
	font-size: 0.9rem;
	color: var(--accent-color);
	font-weight: 500;
	font-style: italic;
}

.blog-image {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

/* Styles pour le bloc CTA */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--accent-color) 0%, #1e1a8a 100%);
	color: white;
}

.cta-content {
	padding: 2rem;
}

.cta-title {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.3;
	color: #fff;
}

.cta-text {
	font-size: 1.1rem;
	line-height: 1.7;
	opacity: 0.95;
	margin-bottom: 2.5rem;
}

.btn-cta {
	background-color: white;
	color: var(--accent-color);
	border: none;
	padding: 1rem 3rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
	color: var(--accent-color);
}

.cta-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 100px 0;
	background-color: var(--bg-color);
}

.contact-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 2rem;
	text-align: center;
	letter-spacing: -0.02em;
}

.contact-text {
	font-size: 1.1rem;
	color: var(--text-color);
	opacity: 0.8;
	text-align: center;
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-email {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 4rem;
	transition: all 0.3s ease;
}

.contact-email:hover {
	color: #1e1a8a;
	transform: translateY(-2px);
}

/* Styles pour le formulaire */
.form-section {
	background: var(--light-gray);
	padding: 3rem;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(15, 13, 26, 0.1);
	border: 1px solid var(--border-color);
}

.form-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 2rem;
	text-align: center;
}

.form-floating {
	margin-bottom: 1.5rem;
}

.form-floating > .form-control {
	background-color: white;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	padding: 1rem 0.75rem;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgba(39, 34, 175, 0.1);
	background-color: white;
}

.form-floating > label {
	color: var(--text-color);
	opacity: 0.7;
}

.btn-primary {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: #bb0755;
	border-color: #bb0755;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(39, 34, 175, 0.3);
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
	.blog-title,
	.contact-title {
		font-size: 2rem;
	}

	.cta-title {
		font-size: 1.8rem;
	}

	.blog-content {
		padding: 2rem 1.5rem;
	}

	.cta-content {
		padding: 1.5rem;
		text-align: center;
	}

	.form-section {
		padding: 2rem 1.5rem;
	}

	.contact-email {
		font-size: 1.1rem;
	}
}
