/********** Template CSS **********/
:root {
	--primary: #ff5100;
	--light: #1a1a1a;
	--dark: #000000;
	--dark-bg: #0a0a0a;
	--light-bg: #1a1a1a;
	--accent: #ff5e00;
	--accent-hover: #ff4400;
	--auxiliary: #ff4400;
	--light-text: #ffffff;
	--dark-text: #ffffff;
	--white: #ffffff;
	--light-gray: #2a2a2a;
	--background-color: #251c19;
	--text-color: #ffffff;
	--accent-color: #ff5900;

	--light-accent: rgba(255, 215, 0, 0.1);
	--header-height: 80px;
	--transition: all 0.3s ease;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.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: var(--white);
}

.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: var(--white);
	font-size: 15px;
	text-transform: uppercase;
	outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: var(--primary);
}

@media (max-width: 991.98px) {
	.navbar-dark .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
}

/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: rgba(135, 80, 109, 0.6); */
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.page-header {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-header-inner {
	background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
	color: var(--light);
}

.booking {
	position: relative;
	margin-top: -100px !important;
	z-index: 1;
}

/*** Footer ***/
.newsletter {
	position: relative;
	z-index: 1;
}

.footer {
	position: relative;
	/* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
	margin-right: 5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	border: 1px solid var(--light-gray);
	border-radius: 35px;
	transition: 0.3s;
}

.footer .btn.btn-social:hover {
	color: var(--accent);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 10px;
	margin: 6px;
	border: 1px solid var(--accent);
	border-radius: 12px;
	text-align: left;
	color: var(--accent);
	font-size: 15px;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link:hover {
	box-shadow: none;
	color: var(--background-color);
	background-color: var(--accent-hover);
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
	color: var(--accent-color);
}

.footer .footer-menu a {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

/* Google Fonts - Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* Bootstrap Icons */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

/* Основной шрифт для всего сайта */
* {
	font-family: 'Playfair Display', serif !important;
}

body {
	font-family: 'Playfair Display', serif !important;
}

/* Принудительно применяем Playfair Display ко всем элементам */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
select,
label,
li,
ul,
ol,
table,
th,
td,
form,
nav,
header,
footer,
section,
article,
aside,
main {
	font-family: 'Playfair Display', serif !important;
}

/* Специально для Bootstrap элементов */
.navbar,
.navbar-nav,
.nav-link,
.btn,
.form-control,
.form-label,
.card,
.card-title,
.card-text,
.modal,
.modal-title,
.modal-body,
.alert,
.badge,
.dropdown-menu,
.dropdown-item {
	font-family: 'Playfair Display', serif !important;
}

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

.cookie-wrapper {
	position: fixed;
	bottom: 0px;
	right: 0;
	width: 40%;
	background: var(--light-bg);
	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: 8100f9;
	font-size: 32px;
	text-align: center;
}

header h2 {
	color: 8100f9;
	font-weight: 500;
	text-align: center;
}

.data {
	text-align: center;
}

.data p a {
	color: 8100f9;
	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 var(--accent);
	color: var(--white);
	padding: 8px 0;
	background: var(--accent);
	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: var(--accent);
}

#declineBtn {
	background-color: var(--light-bg);
	color: var(--accent);
}

#declineBtn:hover {
	background-color: var(--accent);
	color: var(--white);
}

/* Footer styles */
.footer {
	padding-top: 4rem;
	background-color: var(--background-color) !important;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, var(--accent), var(--auxiliary));
}

.footer .brand-link {
	font-size: 26px;
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all 0.3s ease;
}

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

.footer .brand-link::after {
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

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

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

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

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

.footer .contact-email {
	color: var(--accent-color);
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.footer .contact-email:hover {
	transform: translateX(5px);
	color: var(--accent-hover);
}

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

@media (max-width: 767.98px) {
	.footer {
		padding-top: 3rem;
	}

	.footer .brand-link {
		margin-bottom: 1.5rem;
		display: inline-block;
	}

	.footer .contact-info {
		margin-top: 1.5rem;
	}
}

/* new styles  */
/* Styles généraux */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-color);
}

.btn-accent {
	background-color: var(--accent-color);
	color: white;
	border: none;
	transition: var(--transition);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 500;
	padding: 12px 30px;
}

.btn-accent:hover {
	background-color: var(--accent-hover);
	color: white;
	transform: translateY(-2px);
}

/* Styles pour le header */
.site-header {
	background-color: var(--auxiliary);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 1000;
	box-shadow: var(--shadow);
	transition: var(--transition);
	padding-top: 10px;
}

.site-header.scrolled {
	height: 60px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-logo {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-color);
	text-decoration: none;
	position: relative;
}

.site-logo span {
	color: var(--accent-color);
}

.nav-link {
	color: var(--text-color);
	font-weight: 500;
	padding: 8px 16px !important;
	transition: var(--transition);
	position: relative;
}

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

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

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

/* Styles pour le bloc principal (hero) */
.hero-section {
	background-color: var(--dark-bg);
	padding: 140px 0;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background-color: var(--light-accent);
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: var(--white);
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	font-weight: 400;
	max-width: 600px;
	color: var(--white);
}

.hero-title span,
.highlight {
	color: var(--accent-color);
	position: relative;
}

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

.hero-pattern {
	position: absolute;
	width: 200px;
	height: 200px;
	background-color: var(--light-accent);
	border-radius: 50%;
	top: -30px;
	left: -30px;
	z-index: -1;
}

.hero-image {
	border-radius: 8px;
	box-shadow: var(--shadow);
	position: relative;
	z-index: 2;
}

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

	.hero-section::before {
		width: 100%;
		clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
		height: 50%;
		top: auto;
		bottom: 0;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-image-container {
		margin-top: 3rem;
	}
}

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

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-section {
		padding: 180px 0;
	}
}

/* Styles pour le bloc À propos de nous */
.about-section {
	padding: 100px 0;
	position: relative;
}

.about-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background-color: var(--light-accent);
	clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
	z-index: 1;
}

.about-content {
	position: relative;
	z-index: 2;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.about-card {
	background-color: var(--light-bg);
	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(--white);
}

.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: var(--dark-bg);
	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(--light-bg);
	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;
	}
}

/* Styles pour le bloc Nos formules d'abonnement */
.pricing-section {
	padding: 100px 0;
	background-color: var(--dark-bg);
	position: relative;
}

.pricing-card {
	background-color: var(--light-bg);
	border-radius: 12px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
	height: 100%;
	position: relative;
	z-index: 2;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
	border: 2px solid var(--accent-color);
	transform: scale(1.05);
}

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

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

.pricing-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.pricing-subtitle {
	color: var(--accent-color);
	font-weight: 500;
	margin-bottom: 20px;
}

.pricing-img-container {
	width: 100%;
	height: 180px;
	overflow: hidden;
	position: relative;
}

.pricing-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.pricing-card:hover .pricing-img {
	transform: scale(1.05);
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--white);
	margin: 25px 0 15px;
}

.pricing-price span {
	font-size: 1rem;
	font-weight: 400;
	opacity: 0.7;
}

.pricing-features {
	padding: 30px 25px;
}

.pricing-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.pricing-feature:last-child {
	margin-bottom: 0;
}

.pricing-feature-icon {
	color: var(--accent-color);
	margin-right: 15px;
	flex-shrink: 0;
}

.pricing-cta {
	padding: 0 25px 30px;
	text-align: center;
}

.pricing-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--accent-color);
	color: white;
	font-size: 0.8rem;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 500;
	z-index: 2;
}

/* Styles pour le bloc Témoignages */
.testimonials-section {
	padding: 100px 0;
	background-color: var(--dark-bg);
	position: relative;
}

.testimonial-card {
	background-color: var(--light-bg);
	border-radius: 12px;
	padding: 30px 30px;
	box-shadow: var(--shadow);
	position: relative;
	transition: var(--transition);
	height: 100%;
	margin: 1rem 0;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
	font-size: 3rem;
	color: var(--accent-color);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	left: 20px;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

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

.testimonial-author-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	border: 2px solid var(--accent-color);
}

.testimonial-author-name {
	font-weight: 600;
	margin-bottom: 3px;
}

.testimonial-author-title {
	font-size: 0.9rem;
	opacity: 0.7;
}

.testimonial-rating {
	display: flex;
	margin-bottom: 15px;
}

.rating-star {
	color: var(--accent-color);
	margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.pricing-section,
	.testimonials-section {
		padding: 70px 0;
	}

	.pricing-card.featured {
		transform: scale(1);
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}
}

@media (max-width: 767.98px) {
	.pricing-price {
		font-size: 2rem;
	}

	.pricing-title {
		font-size: 1.3rem;
	}

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

/* Styles pour le bloc Avantages */
.advantages-section {
	padding: 100px 0;
	position: relative;
	background-color: var(--dark-bg);
}

.advantages-section::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: var(--light-accent);
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

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

.advantages-image-container {
	position: relative;
	margin-bottom: 30px;
}

.advantages-image {
	border-radius: 10px;
	box-shadow: var(--shadow);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advantages-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	background-color: var(--auxiliary);
	color: var(--light);
	border-radius: 2rem;
	padding: 3rem;
}

.advantage-item {
	display: flex;
	align-items: flex-start;
	background-color: var(--dark-text);
	padding: 2rem;
	border-radius: 2rem;
}

.advantage-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background-color: var(--background-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.advantage-icon span {
	color: var(--accent-color);
	font-size: 1.5rem;
}

.advantage-text h4 {
	color: var(--light);
	font-size: 1.1rem;
	margin-bottom: 8px;
	font-weight: 600;
}

.advantage-text p {
	color: var(--light);
	margin: 0;
	line-height: 1.6;
}

/* Styles pour le bloc Appel à l'action */
.cta-section {
	padding: 100px 0;
	background-color: var(--background-color);
	position: relative;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-image-container {
	position: relative;
	z-index: 2;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.cta-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-text {
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	position: relative;
	z-index: 3;
}

.cta-section.image-right .cta-text {
	margin-right: -50px;
}

.cta-section.image-left .cta-text {
	margin-left: -50px;
}

.cta-title {
	font-size: 2rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.cta-description {
	margin-bottom: 30px;
	font-size: 1.1rem;
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 100px 0;
	background-color: var(--dark-bg);
	position: relative;
}

.contact-info {
	margin-bottom: 30px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background-color: var(--light-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.contact-icon span {
	color: var(--accent-color);
	font-size: 1.5rem;
}

.contact-details h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-details p,
.contact-details a {
	margin: 0;
	line-height: 1.6;
	color: var(--text-color);
	text-decoration: none;
	transition: var(--transition);
}

.contact-details a:hover {
	color: var(--accent-color);
}

.social-links {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--light-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: var(--transition);
	color: var(--accent-color);
	text-decoration: none;
}

.social-link:hover {
	background-color: var(--accent-color);
	color: white;
	transform: translateY(-3px);
}

/* Styles pour le formulaire */
.form-section {
	padding: 0 0 100px;
	background-color: var(--dark-bg);
}

.form-container {
	background-color: var(--light-bg);
	border-radius: 10px;
	padding: 40px;
	box-shadow: var(--shadow);
}

.form-title {
	margin-bottom: 30px;
	font-size: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
}

.form-floating {
	margin-bottom: 20px;
}

.form-control {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 15px;
	height: auto;
	font-size: 1rem;
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.25rem rgba(138, 101, 13, 0.25);
}

.btn-primary {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	transition: var(--transition);
}

.btn-primary:hover {
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
	transform: translateY(-2px);
}

/* Media queries */
@media (max-width: 991.98px) {
	.advantages-section,
	.cta-section,
	.contact-section,
	.form-section {
		padding: 70px 0;
	}

	.advantages-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cta-section.image-right .cta-text,
	.cta-section.image-left .cta-text {
		margin-right: 0;
		margin-left: 0;
		margin-top: 30px;
	}

	.cta-image-container {
		height: 300px;
	}
}

@media (max-width: 767.98px) {
	.cta-title {
		font-size: 1.8rem;
	}

	.form-container {
		padding: 30px 20px;
	}
}

.footer_links {
	display: flex;
	flex-direction: row;
}

/* Kraftspüren specific styles */
.cta-section {
	background: linear-gradient(
		135deg,
		var(--light-bg) 0%,
		rgba(0, 0, 0, 0.3) 100%
	);
	padding: 4rem 0;
}

.cta-title {
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.advantages-section {
	background: linear-gradient(
		135deg,
		var(--light-bg) 0%,
		rgba(0, 0, 0, 0.3) 100%
	);
	padding: 4rem 0;
}

.advantage-item {
	background: linear-gradient(135deg, var(--white) 0%, rgba(0, 0, 0, 0.2) 100%);
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	border-color: var(--accent);
}

.advantage-icon {
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	color: var(--white);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 28px;
}

.pricing-card {
	background: linear-gradient(135deg, var(--white) 0%, rgba(0, 0, 0, 0.2) 100%);
	border: 2px solid rgba(0, 0, 0, 0.3);
	border-radius: 25px;
	padding: 2.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		to right,
		var(--accent),
		var(--auxiliary),
		var(--primary)
	);
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
	border-color: var(--accent);
}

.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured::before {
	background: linear-gradient(to right, var(--accent), var(--primary));
	height: 6px;
}

.testimonial-card {
	background: linear-gradient(135deg, var(--white) 0%, rgba(0, 0, 0, 0.2) 100%);
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
	border-color: var(--accent);
}

.rating-star {
	color: var(--accent);
	font-size: 20px;
}

.btn-accent {
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	border: none;
	color: var(--white);
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
	background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}

.btn-outline-secondary {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.site-header {
	background: var(--light-bg);
	border-bottom: 2px solid var(--primary);
	box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.site-logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-link {
	color: var(--white) !important;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

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

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

.nav-link:hover {
	color: var(--primary) !important;
}

/* Spinner customization */
#spinner .spinner-border {
	color: var(--primary);
}

/* Back to top button */
.back-to-top {
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	border: none;
	color: var(--white);
	box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}

.back-to-top .bi {
	font-size: 1.2rem;
	color: var(--white);
}

.back-to-top:hover {
	background: linear-gradient(135deg, var(--auxiliary), var(--primary));
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

/* Cookie banner customization */
.cookie-wrapper {
	background: linear-gradient(
		135deg,
		var(--white) 0%,
		rgba(30, 64, 175, 0.02) 100%
	);
	border: 2px solid var(--primary);
	box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
}

.cookie-button {
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	border: none;
	color: var(--white);
	border-radius: 20px;
}

.cookie-button:hover {
	background: linear-gradient(135deg, var(--auxiliary), var(--primary));
	transform: translateY(-2px);
}

/* Form customization */
.form-container {
	background: linear-gradient(
		135deg,
		var(--white) 0%,
		rgba(30, 64, 175, 0.02) 100%
	);
	border: 2px solid rgba(30, 64, 175, 0.1);
	border-radius: 25px;
	padding: 3rem;
	box-shadow: 0 8px 30px rgba(30, 64, 175, 0.1);
}

.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	border: none;
	border-radius: 25px;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
	background: linear-gradient(135deg, var(--auxiliary), var(--primary));
}

/* Animations and effects for Kraftspüren */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

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

@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% center;
	}
	100% {
		background-position: 200% center;
	}
}

/* Floating elements */
.cta-image-container {
	animation: float 6s ease-in-out infinite;
}

.advantage-icon {
	animation: pulse 3s ease-in-out infinite;
}

/* Gradient text effects */
.section-title {
	background: linear-gradient(
		135deg,
		var(--primary),
		var(--auxiliary),
		var(--accent)
	);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradient-shift 4s ease infinite;
	font-weight: 700;
}

/* Shimmer effect for buttons */
.btn-accent::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 0, 0, 0.5),
		transparent
	);
	transition: left 0.5s;
}

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

/* Glow effects */
.pricing-card.featured {
	box-shadow:
		0 8px 30px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 0, 0, 0.4);
}

.advantage-item:hover .advantage-icon {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	animation: pulse 1s ease-in-out infinite;
}

/* Parallax-like effects */
.cta-section {
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
	animation: float 20s ease-in-out infinite;
	pointer-events: none;
}

/* Enhanced hover effects */
.testimonial-card:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 8px 30px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(0, 0, 0, 0.4);
}

/* Loading animation for spinner */
#spinner .spinner-border {
	background: conic-gradient(
		from 0deg,
		var(--primary),
		var(--auxiliary),
		var(--accent),
		var(--primary)
	);
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Enhanced form focus effects */
.form-control:focus {
	border-color: var(--primary);
	box-shadow:
		0 0 0 0.2rem rgba(30, 64, 175, 0.25),
		0 0 20px rgba(30, 64, 175, 0.1);
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

/* Navigation enhancement */
.nav-link::after {
	background: linear-gradient(
		to right,
		var(--accent),
		var(--primary),
		var(--auxiliary)
	);
	background-size: 200% 100%;
	animation: gradient-shift 3s ease infinite;
}

/* Footer enhancement */
.footer::before {
	background: linear-gradient(
		to right,
		var(--accent),
		var(--auxiliary),
		var(--primary),
		var(--accent)
	);
	background-size: 200% 100%;
	animation: gradient-shift 4s ease infinite;
}

/* Back to top enhancement */
.back-to-top {
	background: linear-gradient(
		135deg,
		var(--primary),
		var(--auxiliary),
		var(--accent)
	);
	background-size: 200% 200%;
	animation: gradient-shift 3s ease infinite;
}

.back-to-top:hover {
	animation: pulse 1s ease-in-out infinite;
}

/* Cookie banner enhancement */
.cookie-wrapper {
	border: 2px solid;
	border-image: linear-gradient(
			135deg,
			var(--primary),
			var(--auxiliary),
			var(--accent)
		)
		1;
}

/* Responsive animations */
@media (max-width: 768px) {
	.cta-image-container {
		animation: none;
	}

	.advantage-icon {
		animation: pulse 2s ease-in-out infinite;
	}
}

/* New CTA Section Styles */
.cta-section {
	background: linear-gradient(
		135deg,
		var(--light-bg) 0%,
		rgba(30, 64, 175, 0.05) 100%
	);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(30, 64, 175, 0.03) 0%,
		transparent 70%
	);
	animation: float 20s ease-in-out infinite;
	pointer-events: none;
}

.main-cta-card {
	background: linear-gradient(
		135deg,
		var(--light-bg) 0%,
		rgba(255, 215, 0, 0.1) 100%
	);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 30px;
	padding: 3rem;
	box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.main-cta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		to right,
		var(--accent),
		var(--auxiliary),
		var(--primary)
	);
}

.cta-main-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-main-description {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	color: var(--white);
}

.cta-features {
	margin-bottom: 2rem;
}

.cta-feature {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.cta-feature .bi {
	color: var(--accent);
	margin-right: 1rem;
	font-size: 1.5rem;
}

.cta-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

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

.cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.8),
		rgba(255, 165, 0, 0.8)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cta-image-wrapper:hover .cta-overlay {
	opacity: 1;
}

.cta-image-wrapper:hover .cta-main-image {
	transform: scale(1.05);
}

.cta-overlay-content {
	text-align: center;
	color: var(--white);
}

.cta-overlay-content .bi {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.cta-overlay-content h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
}

.cta-feature-card {
	background: linear-gradient(
		135deg,
		var(--white) 0%,
		rgba(30, 64, 175, 0.02) 100%
	);
	border: 1px solid rgba(30, 64, 175, 0.1);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
	height: 100%;
}

.cta-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
	border-color: var(--accent);
}

.cta-feature-card.featured {
	border-color: var(--accent);
	box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.cta-feature-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--dark-text);
}

.cta-feature-card p {
	color: var(--dark-text);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.feature-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}

.feature-link:hover {
	color: var(--accent);
	transform: translateX(5px);
}

.feature-link .bi {
	margin-left: 0.5rem;
	font-size: 1.2rem;
}

.bottom-cta {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	padding: 3rem;
	border-radius: 25px;
	color: var(--white);
	box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.bottom-cta h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.bottom-cta p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

/* New Methods Section Styles */
.methods-section {
	background: var(--dark-bg);
	padding: 5rem 0;
}

.method-card {
	background: linear-gradient(
		135deg,
		var(--light-bg) 0%,
		rgba(255, 215, 0, 0.1) 100%
	);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 25px;
	padding: 2.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.method-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		to right,
		var(--accent),
		var(--auxiliary),
		var(--primary)
	);
}

.method-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
	border-color: var(--accent);
}

.method-card.featured {
	border-color: var(--accent);
	box-shadow: 0 12px 35px rgba(34, 197, 94, 0.3);
}

.method-card.featured::before {
	background: linear-gradient(to right, var(--accent), var(--primary));
	height: 6px;
}

.method-header {
	text-align: center;
	margin-bottom: 2rem;
}

.method-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.method-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.method-subtitle {
	color: var(--accent);
	font-weight: 500;
	font-size: 1rem;
}

.method-content {
	margin-bottom: 2rem;
}

.method-content p {
	color: var(--white);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.method-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.method-tag {
	background: rgba(30, 64, 175, 0.1);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid rgba(30, 64, 175, 0.2);
}

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

.btn-method {
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	color: var(--white);
	border: none;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-method:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
	background: linear-gradient(135deg, var(--auxiliary), var(--primary));
	color: var(--white);
}

.btn-method.featured {
	background: linear-gradient(135deg, var(--accent), var(--primary));
	box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.methods-cta {
	background: linear-gradient(135deg, var(--light-bg), rgba(30, 64, 175, 0.1));
	padding: 3rem;
	border-radius: 25px;
	border: 2px solid rgba(30, 64, 175, 0.1);
}

.methods-cta h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--dark-text);
}

.methods-cta p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: var(--dark-text);
}

/* New Footer Styles */
.footer {
	background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark) 100%);
	color: var(--white);
	padding: 4rem 0 2rem;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		to right,
		var(--accent),
		var(--auxiliary),
		var(--primary)
	);
}

.footer-main {
	margin-bottom: 3rem;
}

.footer-brand {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 2rem;
}

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

.social-link {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.social-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
	background: linear-gradient(135deg, var(--auxiliary), var(--primary));
	color: var(--white);
}

.footer-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--white);
}

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

.footer-menu li {
	margin-bottom: 0.8rem;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-menu a:hover {
	color: var(--primary);
	transform: translateX(5px);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.contact-item .bi {
	color: var(--primary);
	margin-right: 1rem;
	margin-top: 0.2rem;
	font-size: 1.5rem;
}

.contact-label {
	font-weight: 600;
	margin-bottom: 0.3rem;
	color: var(--white);
}

.contact-item a,
.contact-item p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	text-decoration: none;
}

.contact-item a:hover {
	color: var(--primary);
}

.footer-newsletter {
	margin-bottom: 3rem;
}

.newsletter-content {
	background: rgba(255, 255, 255, 0.05);
	padding: 3rem;
	border-radius: 25px;
	border: 1px solid rgba(30, 64, 175, 0.2);
}

.newsletter-content h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--white);
}

.newsletter-content p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
}

.newsletter-form .input-group {
	max-width: 400px;
	margin: 0 auto;
}

.newsletter-form .form-control {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(30, 64, 175, 0.3);
	color: var(--white);
	padding: 15px 20px;
	border-radius: 25px 0 0 25px;
}

.newsletter-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--primary);
	box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
	color: var(--white);
}

.btn-newsletter {
	background: linear-gradient(135deg, var(--primary), var(--auxiliary));
	border: none;
	color: var(--white);
	padding: 15px 20px;
	border-radius: 0 25px 25px 0;
	transition: all 0.3s ease;
}

.btn-newsletter:hover {
	background: linear-gradient(135deg, var(--auxiliary), var(--primary));
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
	color: var(--white);
}

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

.footer-legal {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

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

.footer-legal a:hover {
	color: var(--primary);
}

.footer-copyright {
	text-align: right;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

/* Button Styles */
.btn-cta-primary {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: var(--white);
	border: none;
	padding: 15px 40px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
	text-decoration: none;
	display: inline-block;
}

.btn-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
	background: linear-gradient(135deg, var(--accent), var(--primary));
	color: var(--white);
}

.btn-cta-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
	padding: 15px 40px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-cta-secondary:hover {
	background: var(--white);
	color: var(--dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
	.cta-main-title {
		font-size: 2rem;
	}

	.method-card {
		margin-bottom: 2rem;
	}

	.footer-legal {
		justify-content: center;
		margin-bottom: 1rem;
	}

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

@media (max-width: 767.98px) {
	.cta-section {
		padding: 6rem 0 3rem 0;
	}

	.main-cta-card {
		padding: 2rem;
	}

	.cta-main-title {
		font-size: 1.8rem;
	}

	.bottom-cta {
		padding: 2rem;
	}

	.bottom-cta h3 {
		font-size: 1.5rem;
	}

	.methods-section {
		padding: 3rem 0;
	}

	.newsletter-content {
		padding: 2rem;
	}

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