:root {
	--primary: #dcd926;
	--primary-dark: #99931b;
	--primary-light: #efe644;
	--secondary: #2d270a;
	--secondary-dark: #1a1a05;
	--secondary-light: #474a15;
	--light: #fef2f2;
	--dark: #1a180a;
	--dark-bg: #1a1808;
	--text-light: #fecaca;
	--text-dark: #1a1a1a;
	font-family: 'Public Sans', sans-serif;
}

* {
	font-family: 'Public Sans', sans-serif;
}

body {
	color: var(--text-light);
}

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

	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(--primary);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #ffffff;
	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 {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, 0.1);
	text-align: center;
}

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

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

/* ============================================
   COOKIE BANNER - DARK THEME
   ============================================ */
.cookie-wrapper {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 420px;
	max-width: calc(100% - 40px);
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.95) 0%,
		rgba(13, 26, 42, 0.98) 100%
	);
	padding: 25px 30px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(45, 122, 78, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	z-index: 9999;
	border-radius: 20px;
	border: 1px solid rgba(45, 122, 78, 0.3);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.cookie-wrapper.show {
	animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
	from {
		transform: translateY(100px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookie-wrapper.hidden {
	transform: translateY(100px);
	opacity: 0;
	pointer-events: none;
}

.cookie-wrapper > div:first-child {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
}

.cookie-wrapper i {
	color: #e1ef44;
	font-size: 32px;
	filter: drop-shadow(0 0 10px rgba(45, 122, 78, 0.5));
}

.cookie-wrapper h2 {
	color: rgba(200, 213, 219, 0.95);
	font-weight: 700;
	font-size: 1.3rem;
	margin: 0;
	background: linear-gradient(135deg, #ffffff 0%, #fef3ca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.data {
	text-align: left;
	margin-bottom: 20px;
}

.data p {
	color: rgba(200, 213, 219, 0.85);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.data p a {
	color: #efca44;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.data p a:hover {
	color: #dcc726;
	border-bottom-color: #dcbb26;
}

.buttons {
	display: flex;
	gap: 12px;
	padding: 0;
	text-align: center;
}

.buttons .cookie-button {
	flex: 1;
	border: 2px solid transparent;
	color: #fff;
	padding: 12px 20px;
	background: linear-gradient(135deg, #dccd26 0%, #efcd44 100%);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
	box-shadow: 0 4px 15px rgba(45, 122, 78, 0.4);
	position: relative;
	overflow: hidden;
}

.buttons .cookie-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #efca44 0%, #dcc426 100%);
	transition: left 0.4s ease;
	z-index: -1;
}

.buttons .cookie-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 122, 78, 0.5);
	border-color: #efbf44;
}

.buttons .cookie-button:hover::before {
	left: 0;
}

.buttons #acceptBtn {
	background: linear-gradient(135deg, #dcd626 0%, #efde44 100%);
	color: #fff;
}

.buttons #acceptBtn:hover {
	background: linear-gradient(135deg, #efd044 0%, #dcdc26 100%);
	color: #fff;
}

#declineBtn {
	background: rgba(27, 38, 59, 0.5);
	color: rgba(200, 213, 219, 0.9);
	border: 2px solid rgba(45, 122, 78, 0.3);
}

#declineBtn:hover {
	background: rgba(45, 122, 78, 0.2);
	color: #efca44;
	border-color: rgba(45, 122, 78, 0.5);
}

@media (max-width: 600px) {
	.cookie-wrapper {
		width: calc(100% - 40px);
		bottom: 10px;
		right: 20px;
		left: 20px;
		padding: 20px;
	}

	.buttons {
		flex-direction: column;
	}

	.buttons .cookie-button {
		width: 100%;
	}
}

/* ============================================
   POLICY PAGES CONTENT - DARK THEME
   ============================================ */
main {
	background: var(--dark-bg);
	color: var(--text-light);
	min-height: calc(100vh - 200px);
}

.policy-page-main {
	padding: 80px 0 100px;
	background: linear-gradient(
		135deg,
		#1a1708 0%,
		#2d270a 30%,
		#1a1605 70%,
		#1a160a 100%
	);
	position: relative;
	min-height: 60vh;
}

.policy-page-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 30%,
			rgba(45, 122, 78, 0.08) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 70% 70%,
			rgba(27, 38, 59, 0.1) 0%,
			transparent 40%
		);
	z-index: 1;
	pointer-events: none;
}

.policy-page-main .container {
	position: relative;
	z-index: 2;
}

.page__content {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.6) 0%,
		rgba(13, 26, 42, 0.8) 100%
	);
	border-radius: 24px;
	padding: 50px 40px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(15px);
	color: var(--text-light);
	max-width: 900px;
	margin: 0 auto;
}

.page__content h2,
.privacy-policy h2,
.terms-of-use h2,
.cookie-policy h2 {
	color: rgba(200, 213, 219, 0.95);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(45, 122, 78, 0.3);
	background: linear-gradient(135deg, #ffffff 0%, #fbfeca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.page__content h3,
.privacy-policy h3,
.terms-of-use h3,
.cookie-policy h3 {
	color: rgba(200, 213, 219, 0.9);
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 35px;
	margin-bottom: 15px;
}

.page__content p,
.privacy-policy p,
.terms-of-use p,
.cookie-policy p {
	color: rgba(200, 213, 219, 0.85);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

.page__content ul,
.privacy-policy ul,
.terms-of-use ul,
.cookie-policy ul {
	color: rgba(200, 213, 219, 0.85);
	margin-bottom: 20px;
	padding-left: 25px;
}

.page__content li,
.privacy-policy li,
.terms-of-use li,
.cookie-policy li {
	color: rgba(200, 213, 219, 0.85);
	margin-bottom: 10px;
	line-height: 1.7;
}

.page__content a,
.privacy-policy a,
.terms-of-use a,
.cookie-policy a {
	color: #efc744;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.page__content a:hover,
.privacy-policy a:hover,
.terms-of-use a:hover,
.cookie-policy a:hover {
	color: #dcb826;
	border-bottom-color: #dcc126;
}

.page__content strong,
.privacy-policy strong,
.terms-of-use strong,
.cookie-policy strong {
	color: rgba(200, 213, 219, 0.95);
	font-weight: 700;
}

/* ============================================
   THANKS PAGE STYLES
   ============================================ */
.thanks-section {
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#1a0808 0%,
		#2d0a0a 30%,
		#1a0505 70%,
		#0a0f1a 100%
	);
	position: relative;
	overflow: hidden;
}

.thanks-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(45, 122, 78, 0.15) 0%,
		transparent 50%
	);
	z-index: 1;
	pointer-events: none;
}

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

.thanks-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.85) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border-radius: 24px;
	padding: 60px 40px;
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(45, 122, 78, 0.3);
	backdrop-filter: blur(15px);
}

.thanks-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: #fff;
	box-shadow: 0 10px 40px rgba(45, 122, 78, 0.5);
	animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
	from {
		transform: scale(0);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.thanks-title {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.thanks-text {
	font-size: 1.2rem;
	color: rgba(200, 213, 219, 0.9);
	line-height: 1.7;
	margin-bottom: 15px;
}

.thanks-text-secondary {
	font-size: 1rem;
	color: rgba(200, 213, 219, 0.75);
	line-height: 1.6;
	margin-bottom: 40px;
}

.thanks-button {
	display: inline-block;
	padding: 16px 40px;
	background: linear-gradient(135deg, #dca526 0%, #efd544 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(45, 122, 78, 0.4);
	position: relative;
	overflow: hidden;
}

.thanks-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #efca44 0%, #dcd026 100%);
	transition: left 0.4s ease;
	z-index: -1;
}

.thanks-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.5);
	color: #fff;
}

.thanks-button:hover::before {
	left: 0;
}

@media (max-width: 767.98px) {
	.thanks-content {
		padding: 40px 25px;
	}

	.thanks-icon {
		width: 80px;
		height: 80px;
		font-size: 3rem;
	}

	.thanks-title {
		font-size: 2rem;
	}

	.thanks-text {
		font-size: 1.1rem;
	}

	.page__content {
		padding: 30px 20px;
	}
}

/* new styles  */

:root {
	--dark-bg: #1a1408;
	--light-bg: #fef2f2;
	--accent: #dcb826;
	--accent-hover: #99911b;
	--auxiliary: #efe144;
	--light-text: #e1e1e1;
	--dark-text: #423b2b;
	--white: #ffffff;
	--light-gray: #ececec;
}

/* Footer styles */
.footer {
	padding-top: 4rem;
	background-color: #1b1712 !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(--white);
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all 0.3s ease;
}

.footer .brand-link:hover {
	color: var(--accent);
}

.footer .brand-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

.footer .brand-link:hover::after {
	width: 100%;
}

.footer .btn-link {
	display: block;
	text-align: left;
	color: var(--light-text);
	text-decoration: none;
	padding: 0.5rem 0;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
}

.footer .btn-link::before {
	content: '';
	position: absolute;
	bottom: 0.3rem;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

.footer .btn-link:hover {
	color: var(--white);
	transform: translateX(5px);
}

.footer .btn-link:hover::before {
	width: 20px;
}

.footer .contact-email {
	color: var(--light-text);
	position: relative;
	display: inline-block;
	transition: all 0.3s ease;
}

.footer .contact-email:hover {
	color: var(--accent);
}

.footer .copyright {
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 2rem;
	text-align: center;
}

@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 */
:root {
	--background-color: #f3f3f3;
	--text-color: #3c3c3c;
	--accent-color: #dcc426;
	--light-accent: rgba(61, 138, 13, 0.1);
	--header-height: 80px;
	--transition: all 0.3s ease;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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: #76560b;
	color: white;
	transform: translateY(-2px);
}

/* Styles pour le header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 1000;
	backdrop-filter: blur(12px);
	background: radial-gradient(circle at center, #191a08, #13120a);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.site-header.scrolled {
	height: 70px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-logo .material-icons {
	font-size: 28px;
	color: var(--accent-color);
}

.navbar-nav {
	gap: 12px;
}

.nav-link {
	position: relative;
	color: #222;
	font-weight: 600;
	font-size: 1rem;
	padding: 10px 14px;
	transition: color 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
	color: var(--accent-color);
}

.nav-link::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition:
		width 0.3s ease,
		left 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
	width: 30px;
}

.navbar-toggler {
	border: none;
	background: transparent;
	outline: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 100 80' width='30' height='30'%3E%3Crect width='100' height='15'%3E%3C/rect%3E%3Crect y='30' width='100' height='15'%3E%3C/rect%3E%3Crect y='60' width='100' height='15'%3E%3C/rect%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
	.navbar-nav {
		gap: 0;
	}
	.nav-link {
		padding: 10px 20px;
		display: block;
		text-align: center;
	}
}

/* Styles pour le bloc principal (hero) */
.hero-section-dark {
	position: relative;
	padding: 160px 20px;
	background: linear-gradient(135deg, #1a1505 0%, #2d2b0a 50%, #151a08 100%);
	color: #ffffff;
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero-section-dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(45, 122, 78, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(27, 38, 59, 0.2) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 20%,
			rgba(13, 26, 42, 0.3) 0%,
			transparent 50%
		);
	z-index: 1;
	pointer-events: none;
}

.hero-inner {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero-title-dark {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #fef4ca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(45, 122, 78, 0.3);
}

.highlight-gradient {
	background: linear-gradient(135deg, #efe944 0%, #dcd026 50%, #99931b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.highlight-gradient::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(135deg, #efde44 0%, #dcb826 100%);
	border-radius: 2px;
}

.hero-subtitle-dark {
	font-size: 1.35rem;
	max-width: 700px;
	margin: 0 auto 3rem;
	color: rgba(200, 213, 219, 0.9);
	line-height: 1.7;
	font-weight: 400;
}

.button-dark {
	display: inline-block;
	padding: 16px 40px;
	background: linear-gradient(135deg, #dca926 0%, #efd844 100%);
	border: 2px solid transparent;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.1rem;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.button-dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e9ef44 0%, #dcc726 100%);
	transition: left 0.4s ease;
	z-index: -1;
}

.button-dark:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(45, 122, 78, 0.5);
	border-color: #efdb44;
}

.button-dark:hover::before {
	left: 0;
}

.hero-background-shape {
	position: absolute;
	width: 800px;
	height: 800px;
	background: radial-gradient(
		circle,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.1) 50%,
		transparent 70%
	);
	top: -200px;
	right: -200px;
	z-index: 1;
	pointer-events: none;
	animation: pulse 8s ease-in-out infinite;
}

.hero-background-shape::after {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(27, 38, 59, 0.25) 0%,
		transparent 70%
	);
	bottom: -150px;
	left: -150px;
	animation: pulse 6s ease-in-out infinite reverse;
}

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

@media (max-width: 991.98px) {
	.hero-title-dark {
		font-size: 2.5rem;
	}
	.hero-subtitle-dark {
		font-size: 1.1rem;
	}
}

@media (max-width: 767.98px) {
	.hero-title-dark {
		font-size: 2rem;
	}
	.hero-subtitle-dark {
		font-size: 1rem;
	}
}

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

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 70px;
	height: 3px;
	background-color: var(--accent-color);
}

.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 {
		padding: 70px 0;
	}

	.section-title {
		font-size: 2.2rem;
	}

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

	.program-card {
		margin-bottom: 30px;
	}
}

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

/* ============================================
   PRICING SECTION - COMPLETE REDESIGN
   ============================================ */
.pricing-section {
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#0a0f1a 0%,
		#1a0505 30%,
		#2d0a0a 70%,
		#1a0808 100%
	);
	position: relative;
	overflow: hidden;
}

.pricing-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(45, 122, 78, 0.15) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(27, 38, 59, 0.2) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(13, 26, 42, 0.3) 0%,
			transparent 50%
		);
	z-index: 1;
	pointer-events: none;
}

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

.pricing-header {
	text-align: center;
	margin-bottom: 60px;
}

.pricing-badge {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.3) 100%
	);
	border: 1px solid rgba(45, 122, 78, 0.4);
	border-radius: 50px;
	color: #ef4444;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.pricing-main-title {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #c8d5db 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.pricing-main-subtitle {
	font-size: 1.2rem;
	color: rgba(200, 213, 219, 0.8);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.pricing-cards-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
	color: rgba(200, 213, 219, 0.8);
}

.pricing-card-new {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.85) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border-radius: 24px;
	padding: 0;
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(15px);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

.pricing-card-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		#dc2626 50%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.pricing-card-new:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(45, 122, 78, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	border-color: rgba(45, 122, 78, 0.6);
}

.pricing-card-new:hover::before {
	opacity: 1;
}

.pricing-card-featured {
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.25) 0%,
		rgba(27, 38, 59, 0.9) 50%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border: 2px solid #dc2626;
	box-shadow:
		0 20px 60px rgba(45, 122, 78, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

.pricing-card-featured:hover {
	transform: translateY(-12px) scale(1.07);
	box-shadow:
		0 30px 80px rgba(45, 122, 78, 0.6),
		0 0 50px rgba(45, 122, 78, 0.5);
	border-color: #ef4444;
}

.featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #dcc126 0%, #efd844 100%);
	color: #fff;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(45, 122, 78, 0.5);
	animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
	0%,
	100% {
		box-shadow: 0 4px 15px rgba(45, 122, 78, 0.5);
	}
	50% {
		box-shadow: 0 4px 25px rgba(45, 122, 78, 0.8);
	}
}

.pricing-card-header {
	padding: 40px 30px 20px;
	text-align: center;
	position: relative;
}

.pricing-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.3) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(45, 122, 78, 0.3);
	box-shadow: 0 0 30px rgba(45, 122, 78, 0.3);
	transition: all 0.4s ease;
}

.pricing-card-new:hover .pricing-icon-wrapper {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 0 40px rgba(45, 122, 78, 0.5);
	border-color: rgba(45, 122, 78, 0.6);
}

.pricing-icon-large {
	font-size: 3rem;
	filter: drop-shadow(0 0 10px rgba(45, 122, 78, 0.6));
}

.pricing-badge-free {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(45, 122, 78, 0.2);
	border: 1px solid rgba(45, 122, 78, 0.4);
	border-radius: 50px;
	color: #ef4444;
	font-size: 0.85rem;
	font-weight: 600;
}

.pricing-card-body {
	padding: 0 30px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.pricing-card-title {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
	text-align: center;
}

.pricing-card-subtitle {
	font-size: 1rem;
	color: rgba(200, 213, 219, 0.7);
	margin-bottom: 25px;
	text-align: center;
	line-height: 1.5;
}

.pricing-card-price {
	text-align: center;
	margin-bottom: 30px;
	padding: 20px 0;
	border-top: 1px solid rgba(45, 122, 78, 0.2);
	border-bottom: 1px solid rgba(45, 122, 78, 0.2);
}

.price-amount {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	line-height: 1;
}

.price-period {
	font-size: 1rem;
	color: rgba(200, 213, 219, 0.6);
	display: block;
	margin-top: 5px;
}

.pricing-features {
	flex: 1;
	margin-bottom: 30px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	padding: 8px 0;
}

.feature-icon {
	color: #dc2626;
	font-size: 1.2rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
	filter: drop-shadow(0 0 5px rgba(45, 122, 78, 0.5));
}

.feature-text {
	color: rgba(200, 213, 219, 0.9);
	font-size: 0.95rem;
	line-height: 1.5;
	flex: 1;
}

.pricing-card-footer {
	padding: 0 30px 30px;
}

.pricing-btn-primary,
.pricing-btn-featured {
	display: block;
	width: 100%;
	padding: 16px 24px;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.pricing-btn-primary {
	background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(45, 122, 78, 0.4);
	border: 2px solid transparent;
}

.pricing-btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	transition: left 0.4s ease;
	z-index: -1;
}

.pricing-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.5);
	color: #fff;
}

.pricing-btn-primary:hover::before {
	left: 0;
}

.pricing-btn-featured {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: #fff;
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.5);
	border: 2px solid #3d9f6f;
}

.pricing-btn-featured:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(45, 122, 78, 0.6);
	border-color: #ef4444;
	color: #fff;
}

/* Pricing Comparison Table */
.pricing-comparison-table {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.9) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border-radius: 24px;
	padding: 40px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(15px);
}

.comparison-header {
	text-align: center;
	margin-bottom: 35px;
}

.comparison-title {
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #fef6ca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
}

.comparison-subtitle {
	color: rgba(200, 213, 219, 0.7);
	font-size: 1rem;
}

.comparison-table-wrapper {
	overflow-x: auto;
	margin-bottom: 25px;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.comparison-table thead tr {
	background: rgba(45, 122, 78, 0.25);
	border-bottom: 2px solid #dc2626;
}

.comparison-table th {
	padding: 18px 20px;
	text-align: left;
	color: rgba(200, 213, 219, 0.95);
	font-weight: 700;
	font-size: 1rem;
}

.comparison-table th:first-child {
	border-radius: 12px 0 0 0;
}

.comparison-table th:last-child {
	border-radius: 0 12px 0 0;
}

.comparison-table th:not(:first-child) {
	text-align: center;
}

.highlighted-column {
	background: rgba(45, 122, 78, 0.2) !important;
	position: relative;
}

.highlighted-column::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #dc2626 0%, #ef4444 100%);
}

.comparison-table tbody tr {
	border-bottom: 1px solid rgba(45, 122, 78, 0.15);
	transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
	background: rgba(45, 122, 78, 0.1);
}

.comparison-table td {
	padding: 16px 20px;
	color: rgba(200, 213, 219, 0.9);
	font-size: 0.95rem;
}

.comparison-table td:not(:first-child) {
	text-align: center;
}

.comparison-table .price-row {
	background: rgba(45, 122, 78, 0.15);
	border-bottom: none;
	font-weight: 600;
}

.comparison-table .price-row td {
	padding: 20px;
	color: rgba(200, 213, 219, 0.95);
}

.price-cell {
	display: inline-block;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	font-size: 1.2rem;
}

.comparison-footer {
	text-align: center;
	padding-top: 25px;
	border-top: 1px solid rgba(45, 122, 78, 0.2);
}

.comparison-footer p {
	color: rgba(200, 213, 219, 0.8);
	font-size: 0.95rem;
	margin: 0;
}

.comparison-footer strong {
	color: rgba(200, 213, 219, 0.95);
}

/* Responsive Pricing Section */
@media (max-width: 991.98px) {
	.pricing-cards-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.pricing-card-featured {
		transform: scale(1);
	}

	.pricing-card-featured:hover {
		transform: translateY(-12px) scale(1.02);
	}

	.pricing-main-title {
		font-size: 2.5rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.testimonial-card-featured {
		transform: scale(1);
	}

	.testimonial-card-featured:hover {
		transform: translateY(-10px) scale(1.02);
	}

	.testimonials-main-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 767.98px) {
	.pricing-section {
		padding: 80px 0;
	}

	.pricing-main-title {
		font-size: 2rem;
	}

	.pricing-main-subtitle {
		font-size: 1rem;
	}

	.pricing-card-header {
		padding: 30px 20px 15px;
	}

	.pricing-card-body {
		padding: 0 20px 20px;
	}

	.pricing-card-footer {
		padding: 0 20px 20px;
	}

	.pricing-comparison-table {
		padding: 25px 15px;
	}

	.comparison-title {
		font-size: 1.5rem;
	}

	.testimonials-section {
		padding: 80px 0;
	}

	.testimonials-main-title {
		font-size: 2rem;
	}

	.testimonials-main-subtitle {
		font-size: 1rem;
	}

	.testimonial-card-new {
		padding: 25px;
	}
}

.btn {
	display: inline-block;
	padding: 12px 12px;
	font-size: 0.95rem;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-select {
	background: linear-gradient(135deg, #dcd626 0%, #efec44 100%);
	color: #fff;
	border: 2px solid transparent;
	box-shadow: 0 6px 20px rgba(45, 122, 78, 0.3);
	transition: all 0.4s ease;
}

.btn-select:hover {
	background: linear-gradient(135deg, #efd044 0%, #dcca26 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.4);
	color: #fff;
}

.btn-featured {
	background: linear-gradient(135deg, #dcbe26 0%, #efe144 100%);
	color: #fff;
	border: 2px solid #3d9f6f;
	box-shadow: 0 6px 20px rgba(45, 122, 78, 0.4);
	transition: all 0.4s ease;
}

.btn-featured:hover {
	background: linear-gradient(135deg, #efdb44 0%, #dcd326 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.5);
	border-color: #efe644;
	color: #fff;
}

/* ============================================
   TESTIMONIALS SECTION - COMPLETE REDESIGN
   ============================================ */
.testimonials-section {
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#1a1908 0%,
		#2d2b0a 30%,
		#1a1a05 70%,
		#1a170a 100%
	);
	position: relative;
	overflow: hidden;
}

.testimonials-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 70% 20%,
			rgba(45, 122, 78, 0.12) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 30% 80%,
			rgba(27, 38, 59, 0.15) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(13, 26, 42, 0.25) 0%,
			transparent 50%
		);
	z-index: 1;
	pointer-events: none;
}

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

.testimonials-header {
	text-align: center;
	margin-bottom: 60px;
}

.testimonials-badge {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.3) 100%
	);
	border: 1px solid rgba(45, 122, 78, 0.4);
	border-radius: 50px;
	color: #ef4444;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.testimonials-main-title {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #c8d5db 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.testimonials-main-subtitle {
	font-size: 1.2rem;
	color: rgba(200, 213, 219, 0.8);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
} */

.testimonial-card-new {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.85) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border-radius: 24px;
	padding: 35px;
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(15px);
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.testimonial-card-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		#dcaf26 50%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.testimonial-card-new:hover {
	transform: translateY(-10px);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(45, 122, 78, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	border-color: rgba(45, 122, 78, 0.6);
}

.testimonial-card-new:hover::before {
	opacity: 1;
}

.testimonial-card-featured {
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.25) 0%,
		rgba(27, 38, 59, 0.9) 50%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border: 2px solid #dccd26;
	box-shadow:
		0 20px 60px rgba(45, 122, 78, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

.testimonial-card-featured:hover {
	transform: translateY(-10px) scale(1.07);
	box-shadow:
		0 30px 80px rgba(45, 122, 78, 0.6),
		0 0 50px rgba(45, 122, 78, 0.5);
	border-color: #efca44;
}

.featured-testimonial-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #dcaf26 0%, #efd844 100%);
	color: #fff;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(45, 122, 78, 0.5);
}

.testimonial-quote-icon {
	font-size: 4rem;
	line-height: 1;
	color: rgba(45, 122, 78, 0.3);
	font-family: Georgia, serif;
	margin-bottom: 20px;
	opacity: 0.6;
}

.testimonial-content {
	flex: 1;
	margin-bottom: 25px;
}

.testimonial-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(200, 213, 219, 0.95);
	font-style: italic;
	position: relative;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(45, 122, 78, 0.2);
}

.testimonial-avatar-wrapper {
	position: relative;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.testimonial-avatar-new {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(45, 122, 78, 0.4);
	position: relative;
	z-index: 2;
}

.avatar-ring {
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border-radius: 50%;
	background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.testimonial-card-new:hover .avatar-ring {
	opacity: 0.3;
	animation: ring-pulse 2s ease-in-out infinite;
}

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

.testimonial-author-info {
	flex: 1;
}

.testimonial-author-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.testimonial-author-role {
	font-size: 0.9rem;
	color: rgba(200, 213, 219, 0.7);
}

.testimonial-rating {
	display: flex;
	gap: 4px;
	justify-content: center;
}

.star {
	color: #dc2626;
	font-size: 1.2rem;
	filter: drop-shadow(0 0 3px rgba(45, 122, 78, 0.5));
}

.testimonial-person {
	display: flex;
	align-items: center;
}

.testimonial-avatar {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
	border: 2px solid #dc2626;
}

.testimonial-name {
	font-weight: 600;
	color: #ffffff;
	font-size: 1.1rem;
}

.testimonial-role {
	font-size: 0.9rem;
	color: #a0a0a0;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
	.testimonial-box {
		padding: 25px 20px;
	}

	.testimonials-title {
		font-size: 2rem;
	}

	.testimonial-message {
		font-size: 1rem;
	}
}

/* Styles pour le bloc Avantages */
.advantages-section-dark {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1608 0%, #2d210a 50%, #1a1505 100%);
	color: rgba(200, 213, 219, 0.9);
	position: relative;
}

.advantages-section-dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(45, 122, 78, 0.1) 0%,
		transparent 50%
	);
	z-index: 1;
	pointer-events: none;
}

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

.section-title.text-gradient {
	background: linear-gradient(135deg, #efca44 0%, #dcb526 50%, #99751b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 2.2rem;
}

.text-muted {
	color: rgba(200, 213, 219, 0.7);
}

.image-wrapper img {
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.advantages-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.advantage-dark {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.03);
	transition: background 0.3s ease;
}

.advantage-dark:hover {
	background-color: rgba(255, 255, 255, 0.06);
}

.icon-circle {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 50%;
	background: rgba(45, 122, 78, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(45, 122, 78, 0.3);
	transition: all 0.3s ease;
}

.icon-circle:hover {
	background: rgba(45, 122, 78, 0.3);
	box-shadow: 0 0 30px rgba(45, 122, 78, 0.5);
	transform: scale(1.1);
}

.icon-circle span {
	color: #ef4444;
	font-size: 1.7rem;
}

.advantage-dark h5 {
	margin: 0 0 5px;
	font-size: 1.1rem;
	font-weight: 600;
}

.advantage-dark p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
	.advantages-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Styles pour le bloc Appel à l'action */
.cta-section-modern {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a0808 0%, #2d0a0a 50%, #1a0505 100%);
	position: relative;
	overflow: hidden;
}

.cta-section-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 30%,
			rgba(45, 122, 78, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 70%,
			rgba(27, 38, 59, 0.15) 0%,
			transparent 50%
		);
	z-index: 1;
	pointer-events: none;
}

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

.cta-modern-content {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.8) 0%,
		rgba(13, 26, 42, 0.9) 100%
	);
	padding: 60px 50px;
	border-radius: 24px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(10px);
}

.cta-modern-content:hover {
	transform: translateY(-5px);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 0 40px rgba(45, 122, 78, 0.2);
	border-color: rgba(45, 122, 78, 0.4);
}

.cta-modern-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.3;
}

.cta-modern-text {
	font-size: 1.15rem;
	color: rgba(200, 213, 219, 0.9);
	margin-bottom: 25px;
	line-height: 1.7;
}

.cta-modern-btn {
	display: inline-block;
	padding: 16px 36px;
	background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
	color: #fff;
	font-weight: 600;
	font-size: 1.05rem;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.cta-modern-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	transition: left 0.4s ease;
	z-index: -1;
}

.cta-modern-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(45, 122, 78, 0.5);
	border-color: #ef4444;
	color: #fff;
}

.cta-modern-btn:hover::before {
	left: 0;
}

.cta-visual {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	transition: all 0.4s ease;
}

.cta-visual:hover {
	transform: translateY(-5px);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(45, 122, 78, 0.2);
	border-color: rgba(45, 122, 78, 0.4);
}

.cta-modern-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 20px;
}

/* ============================================
   CONTACT SECTION - DARK THEME
   ============================================ */
.contact-section-new {
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#1a1908 0%,
		#2d260a 30%,
		#1a1705 70%,
		#1a160a 100%
	);
	position: relative;
	overflow: hidden;
}

.contact-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 60% 40%,
			rgba(45, 122, 78, 0.12) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 40% 60%,
			rgba(27, 38, 59, 0.15) 0%,
			transparent 40%
		);
	z-index: 1;
	pointer-events: none;
}

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

.contact-header-new {
	text-align: center;
	margin-bottom: 60px;
}

.contact-badge {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.3) 100%
	);
	border: 1px solid rgba(45, 122, 78, 0.4);
	border-radius: 50px;
	color: #ef4444;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.contact-title-new {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #c8d5db 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.contact-subtitle-new {
	font-size: 1.2rem;
	color: rgba(200, 213, 219, 0.8);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.contact-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-info-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-card-new {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.85) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border-radius: 20px;
	padding: 25px;
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(15px);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: all 0.4s ease;
}

.contact-card-new:hover {
	transform: translateY(-5px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(45, 122, 78, 0.3);
	border-color: rgba(45, 122, 78, 0.5);
}

.contact-icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.3) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(45, 122, 78, 0.3);
	flex-shrink: 0;
	box-shadow: 0 0 20px rgba(45, 122, 78, 0.3);
}

.contact-icon-wrapper .material-icons {
	color: #ef4444;
	font-size: 28px;
	filter: drop-shadow(0 0 5px rgba(45, 122, 78, 0.5));
}

.contact-info-content {
	flex: 1;
}

.contact-label-new {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: rgba(200, 213, 219, 0.95);
}

.contact-link-new {
	color: #ef4444;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	display: inline-block;
	margin-bottom: 8px;
}

.contact-link-new:hover {
	color: #dc2626;
	transform: translateX(5px);
}

.contact-description {
	color: rgba(200, 213, 219, 0.8);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.contact-description-small {
	color: rgba(200, 213, 219, 0.7);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 4px 0;
}

.contact-form-section {
	position: relative;
}

.contact-form-new {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.9) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	padding: 40px;
	border-radius: 24px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(15px);
}

.form-heading-new {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 15px;
}

.form-input-new,
.form-textarea-new {
	width: 100%;
	background: rgba(13, 26, 42, 0.6);
	border: 1px solid rgba(45, 122, 78, 0.3);
	padding: 16px 20px;
	margin-bottom: 15px;
	border-radius: 12px;
	color: rgba(200, 213, 219, 0.95);
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Copse', serif;
}

.form-input-new:focus,
.form-textarea-new:focus {
	outline: none;
	border-color: #dc2626;
	background: rgba(13, 26, 42, 0.8);
	box-shadow: 0 0 20px rgba(45, 122, 78, 0.3);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
	color: rgba(200, 213, 219, 0.5);
}

.form-textarea-new {
	resize: vertical;
	min-height: 120px;
}

.btn-submit-new {
	width: 100%;
	padding: 16px 24px;
	background: linear-gradient(135deg, #dcb526 0%, #efc744 100%);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(45, 122, 78, 0.4);
	position: relative;
	overflow: hidden;
}

.btn-submit-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #efc744 0%, #dcb526 100%);
	transition: left 0.4s ease;
	z-index: -1;
}

.btn-submit-new:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 122, 78, 0.5);
}

.btn-submit-new:hover::before {
	left: 0;
}

@media (max-width: 991.98px) {
	.contact-content-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-title-new {
		font-size: 2.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.contact-section-new {
		padding: 80px 0;
	}

	.contact-title-new {
		font-size: 2rem;
	}

	.contact-subtitle-new {
		font-size: 1rem;
	}

	.contact-form-new {
		padding: 25px;
	}
}

/* ============================================
   FAQ SECTION - DARK THEME
   ============================================ */
.faq-section-new {
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#0a0f1a 0%,
		#1a0505 30%,
		#2d0a0a 70%,
		#1a0808 100%
	);
	position: relative;
	overflow: hidden;
}

.faq-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 50% 30%,
			rgba(45, 122, 78, 0.12) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 50% 70%,
			rgba(27, 38, 59, 0.15) 0%,
			transparent 40%
		);
	z-index: 1;
	pointer-events: none;
}

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

.faq-header-new {
	text-align: center;
	margin-bottom: 60px;
}

.faq-badge {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.3) 100%
	);
	border: 1px solid rgba(45, 122, 78, 0.4);
	border-radius: 50px;
	color: #ef4444;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.faq-title-new {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #c8d5db 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.faq-subtitle-new {
	font-size: 1.2rem;
	color: rgba(200, 213, 219, 0.8);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.faq-content-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.accordion-new {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.accordion-new .accordion-item {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.85) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border: 1px solid rgba(45, 122, 78, 0.2);
	border-radius: 16px;
	overflow: hidden;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	transition: all 0.4s ease;
}

.accordion-new .accordion-item:hover {
	border-color: rgba(45, 122, 78, 0.4);
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(45, 122, 78, 0.2);
}

.accordion-new .accordion-header {
	margin: 0;
}

.accordion-new .accordion-button {
	background: transparent;
	color: rgba(200, 213, 219, 0.95);
	font-size: 1.1rem;
	font-weight: 600;
	padding: 25px 30px;
	border: none;
	box-shadow: none;
	position: relative;
	transition: all 0.3s ease;
}

.accordion-new .accordion-button:not(.collapsed) {
	background: rgba(45, 122, 78, 0.15);
	color: #fff;
	box-shadow: none;
}

.accordion-new .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d9f6f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(180deg);
}

.accordion-new .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d9f6f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	filter: brightness(0) saturate(100%) invert(60%) sepia(50%) saturate(500%)
		hue-rotate(100deg) brightness(90%);
	transition: transform 0.3s ease;
}

.accordion-new .accordion-button:hover {
	background: rgba(45, 122, 78, 0.1);
	color: #fff;
}

.accordion-new .accordion-collapse {
	transition: all 0.4s ease;
}

.accordion-new .accordion-body {
	padding: 0 30px 25px;
	color: rgba(200, 213, 219, 0.9);
	font-size: 1rem;
	line-height: 1.8;
	background: transparent;
}

@media (max-width: 991.98px) {
	.faq-title-new {
		font-size: 2.5rem;
	}

	.faq-content-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 767.98px) {
	.faq-section-new {
		padding: 80px 0;
	}

	.faq-title-new {
		font-size: 2rem;
	}

	.faq-subtitle-new {
		font-size: 1rem;
	}

	.accordion-new .accordion-button {
		padding: 20px;
		font-size: 1rem;
	}

	.accordion-new .accordion-body {
		padding: 0 20px 20px;
		font-size: 0.95rem;
	}
}

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

/* new styles */

/* ============================================
   BUSINESS CATEGORY SECTION - DARK THEME
   ============================================ */
.business-category-new {
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#0a0f1a 0%,
		#1a0505 30%,
		#2d0a0a 70%,
		#1a0808 100%
	);
	position: relative;
	overflow: hidden;
}

.business-category-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 30%,
			rgba(45, 122, 78, 0.15) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 70% 70%,
			rgba(27, 38, 59, 0.2) 0%,
			transparent 40%
		);
	z-index: 1;
	pointer-events: none;
}

.business-category-new .container {
	position: relative;
	z-index: 2;
}

.business-category-header {
	text-align: center;
	margin-bottom: 60px;
}

.category-badge {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.2) 0%,
		rgba(27, 38, 59, 0.3) 100%
	);
	border: 1px solid rgba(45, 122, 78, 0.4);
	border-radius: 50px;
	color: #ef4444;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.category-main-title {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #c8d5db 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.category-subtitle {
	font-size: 1.2rem;
	color: rgba(200, 213, 219, 0.8);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.service-grid-new {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card-new {
	background: linear-gradient(
		135deg,
		rgba(27, 38, 59, 0.85) 0%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border-radius: 24px;
	overflow: hidden;
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(45, 122, 78, 0.2);
	backdrop-filter: blur(15px);
	display: flex;
	flex-direction: column;
	position: relative;
}

.service-card-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		#dc2626 50%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
}

.service-card-new:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(45, 122, 78, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	border-color: rgba(45, 122, 78, 0.6);
}

.service-card-new:hover::before {
	opacity: 1;
}

.service-card-featured {
	background: linear-gradient(
		135deg,
		rgba(45, 122, 78, 0.25) 0%,
		rgba(27, 38, 59, 0.9) 50%,
		rgba(13, 26, 42, 0.95) 100%
	);
	border: 2px solid #dc2626;
	box-shadow:
		0 20px 60px rgba(45, 122, 78, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

.service-card-featured:hover {
	transform: translateY(-12px) scale(1.07);
	box-shadow:
		0 30px 80px rgba(45, 122, 78, 0.6),
		0 0 50px rgba(45, 122, 78, 0.5);
	border-color: #ef4444;
}

.service-featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
	color: #fff;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(45, 122, 78, 0.5);
}

.service-image-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

.service-card-new:hover .service-image-wrapper img {
	transform: scale(1.1);
}

.service-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(13, 26, 42, 0.8) 100%
	);
	z-index: 1;
}

.service-content-new {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.service-icon-badge {
	font-size: 2.5rem;
	margin-bottom: 15px;
	filter: drop-shadow(0 0 10px rgba(45, 122, 78, 0.5));
}

.service-title-new {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 15px;
}

.service-description {
	font-size: 1rem;
	color: rgba(200, 213, 219, 0.85);
	line-height: 1.7;
	margin-bottom: 20px;
	flex: 1;
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-new {
	display: inline-block;
	background: rgba(45, 122, 78, 0.2);
	border: 1px solid rgba(45, 122, 78, 0.4);
	color: #ef4444;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 50px;
}

@media (max-width: 991.98px) {
	.service-grid-new {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-card-featured {
		transform: scale(1);
	}

	.service-card-featured:hover {
		transform: translateY(-12px) scale(1.02);
	}

	.category-main-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 767.98px) {
	.business-category-new {
		padding: 80px 0;
	}

	.category-main-title {
		font-size: 2rem;
	}

	.category-subtitle {
		font-size: 1rem;
	}
}

/* ============================================
   MODERN HEADER STYLES
   ============================================ */
.modern-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(15, 22, 36, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(45, 122, 78, 0.2);
	transition: all 0.3s ease;
}

.modern-header.scrolled {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	gap: 2rem;
}

.header-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

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

.logo-icon {
	font-size: 2rem;
	line-height: 1;
}

.logo-text {
	font-size: 1.75rem;
	font-weight: 700;
	background: linear-gradient(135deg, #dcd926 0%, #dc2626 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.header-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.5rem;
}

.nav-item {
	position: relative;
	padding: 0.75rem 1.25rem;
	color: rgba(200, 213, 219, 0.9);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.nav-item::before {
	content: '';
	position: absolute;
	bottom: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #dcd926 0%, #dc2626 100%);
	transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
	color: #dcd926;
	background: rgba(45, 122, 78, 0.15);
}

.nav-item:hover::before,
.nav-item.active::before {
	width: 60%;
}

.header-cta-btn {
	padding: 0.75rem 1.75rem;
	background: linear-gradient(135deg, #dcd926 0%, #ef4444 100%);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(45, 122, 78, 0.4);
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 122, 78, 0.5);
	color: #fff;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: rgba(200, 213, 219, 0.9);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 991.98px) {
	.header-nav {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		background: linear-gradient(
			135deg,
			rgba(13, 26, 42, 0.98) 0%,
			rgba(27, 38, 59, 0.98) 100%
		);
		backdrop-filter: blur(20px);
		padding: 20px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
		border-top: 1px solid rgba(45, 122, 78, 0.3);
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 1000;
		opacity: 0;
		pointer-events: none;
	}

	.header-nav.active {
		transform: translateX(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-menu {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.nav-item {
		padding: 15px 0;
		border-bottom: 1px solid rgba(45, 122, 78, 0.2);
		display: block;
		width: 100%;
	}

	.mobile-menu-toggle {
		display: flex;
	}
}

/* ============================================
   MODERN FOOTER STYLES
   ============================================ */
.modern-footer {
	background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
	color: #fff;
}

.footer-top {
	padding: 4rem 0 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
}

.footer-brand {
	max-width: 300px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
	font-size: 2rem;
}

.footer-logo .logo-text {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #dcd926 0%, #dc2626 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-tagline {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-link:hover {
	background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
	color: #fff;
	transform: translateY(-3px);
}

.footer-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(135deg, #dcd926 0%, #dc2626 100%);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: #ef4444;
	transform: translateX(5px);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.contact-icon {
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-item div {
	flex: 1;
}

.contact-item strong {
	display: block;
	color: #fff;
	margin-bottom: 0.25rem;
	font-size: 0.95rem;
}

.contact-item p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.5;
}

.contact-item a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #ef4444;
}

.footer-bottom {
	padding: 1.5rem 0;
	background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom-content p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #ef4444;
}

.footer-bottom-links span {
	color: rgba(255, 255, 255, 0.3);
}

/* Responsive Header & Footer */
@media (max-width: 991.98px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.header-cta-btn {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.footer-brand {
		max-width: 100%;
		grid-column: 1 / -1;
	}
}

@media (max-width: 767.98px) {
	.header-container {
		padding: 0 1.5rem;
	}

	.header-content {
		height: 70px;
	}

	.logo-text {
		font-size: 1.5rem;
	}

	.logo-icon {
		font-size: 1.75rem;
	}

	.header-cta-btn {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-top {
		padding: 3rem 0 1.5rem;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-container {
		padding: 0 1.5rem;
	}
}

/* Add padding to body for fixed header */
body {
	padding-top: 80px;
}

@media (max-width: 767.98px) {
	body {
		padding-top: 70px;
	}
}
