/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #23170f;
	--default-color: #ffffff;
	--heading-color: #f79b55;
	--accent-color: #f6975c;
	--surface-color: #1a1a2e;
	--contrast-color: #ffffff;
	--bg-color: #16213e;
	--nav-color: #e2e8f0;
	--nav-hover-color: #f79055;
	--nav-mobile-background-color: #2e211a;
	--nav-dropdown-background-color: #3e1f16;
	--nav-dropdown-color: #ffffff;
	--nav-dropdown-hover-color: #f78b55;
}

/* Color Presets */

.light-background {
	--background-color: #3e3716;
	--surface-color: #2e231a;
}

.dark-background {
	--background-color: #2c1f1a;
	--default-color: #e2e8f0;
	--heading-color: #ffffff;
	--surface-color: #48382d;
	--contrast-color: #ffffff;
}

.dark-section {
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

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

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

.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
	color: #ffffff;
}

.dark-section p {
	color: #cbd5e0;
}

.dark-section .feature-card {
	background: rgba(26, 26, 46, 0.8);
	border: 1px solid rgba(168, 85, 247, 0.3);
	backdrop-filter: blur(10px);
}

.dark-section .feature-card:hover {
	background: rgba(26, 26, 46, 0.9);
	border-color: rgba(168, 85, 247, 0.5);
}

/*--------------------------------------------------------------
# New About Section Styles
--------------------------------------------------------------*/
.sitename {
	border-radius: 50%;
}
.about-content {
	padding: 40px 0;
}

.about-content h3 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--default-color);
}

.about-content .lead {
	font-size: 1.25rem;
	line-height: 1.6;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 2rem;
}

.about-features {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.about-features .feature-item {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	background: var(--surface-color);
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid var(--accent-color);
}

.about-features .feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-features .feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-color), #c53030);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
}

.about-features .feature-icon i {
	font-size: 24px;
	color: var(--contrast-color);
}

.about-features .feature-content h5 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--default-color);
}

.about-features .feature-content p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 0;
	line-height: 1.5;
}

.about-image {
	position: relative;
	text-align: center;
}

.about-image img {
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.about-image .image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(229, 62, 62, 0.8),
		rgba(43, 108, 176, 0.8)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
	opacity: 1;
}

.about-image .overlay-content {
	text-align: center;
	color: var(--contrast-color);
}

.about-image .overlay-content i {
	font-size: 48px;
	margin-bottom: 15px;
}

.about-image .overlay-content h4 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

@media (max-width: 768px) {
	.about-content h3 {
		font-size: 2rem;
	}

	.about-features .feature-item {
		padding: 15px;
	}

	.about-features .feature-icon {
		width: 40px;
		height: 40px;
		margin-right: 15px;
	}

	.about-features .feature-icon i {
		font-size: 20px;
	}
}

/*--------------------------------------------------------------
# Section Intro Styles
--------------------------------------------------------------*/
.faq-intro,
.testimonials-intro,
.contact-intro {
	background: var(--surface-color);
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

/*--------------------------------------------------------------
# Futuristic Sections (About + Feature Details)
--------------------------------------------------------------*/
.future-section {
	position: relative;
	background: radial-gradient(
			1200px 600px at 10% -10%,
			rgba(43, 108, 176, 0.15),
			transparent 60%
		),
		radial-gradient(
			1000px 500px at 110% 10%,
			rgba(229, 62, 62, 0.12),
			transparent 60%
		),
		var(--background-color);
	overflow: hidden;
}

/* Make section titles in future-section visibly distinct without changing HTML */
.future-section .section-title {
	position: relative;
	padding-bottom: 28px;
}

.future-section .section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}

/* If h2 not marked with neo-title, still give it a strong visual in future-section */
.future-section .section-title h2:not(.neo-title) {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0.5px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.future-section .section-title p {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	font-size: 1.125rem;
}

.future-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 24px;
}

.neo-title {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: var(--contrast-color);
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.neon-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--contrast-color);
	background: linear-gradient(
		135deg,
		rgba(168, 85, 247, 0.2),
		rgba(124, 58, 237, 0.2)
	);
	border: 1px solid rgba(168, 85, 247, 0.4);
	box-shadow:
		0 0 0 2px rgba(168, 85, 247, 0.1) inset,
		0 10px 30px rgba(168, 85, 247, 0.1);
}

.holo-card {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
	border: 1px solid rgba(168, 85, 247, 0.3);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 28px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
	box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.holo-card:hover {
	transform: translateY(-6px);
	border-color: rgba(168, 85, 247, 0.5);
	box-shadow:
		0 25px 60px rgba(168, 85, 247, 0.2),
		0 0 0 1px rgba(168, 85, 247, 0.2) inset;
}

.holo-card .icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--contrast-color);
	background: linear-gradient(135deg, var(--accent-color), #7c3aed);
	margin-bottom: 14px;
	box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.holo-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.holo-badge {
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 0.3px;
	color: var(--contrast-color);
	background: linear-gradient(
		135deg,
		rgba(168, 85, 247, 0.3),
		rgba(124, 58, 237, 0.3)
	);
	border: 1px solid rgba(168, 85, 247, 0.4);
	box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.future-illustration {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.future-illustration::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		600px 200px at 80% 10%,
		rgba(255, 255, 255, 0.08),
		transparent 60%
	);
	pointer-events: none;
}

/* Futuristic Journey (feature-details) */
.neo-journey {
	position: relative;
}

.neo-step {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1.2fr;
	gap: 32px;
	align-items: center;
	margin-bottom: 64px;
}

.neo-step .neo-number {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: var(--contrast-color);
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	box-shadow: 0 10px 24px rgba(168, 85, 247, 0.3);
	margin-bottom: 18px;
}

.neo-step .neo-box {
	border-radius: 18px;
	padding: 28px;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
	border: 1px solid rgba(168, 85, 247, 0.3);
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.neo-step .neo-features {
	display: grid;
	gap: 14px;
}

.neo-step .neo-feature {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.neo-step .neo-feature i {
	color: var(--accent-color);
	margin-top: 3px;
}

.neo-media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.neo-media .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(62, 115, 229, 0.55),
		rgba(121, 43, 176, 0.55)
	);
	opacity: 0;
	transition: opacity 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--contrast-color);
}

.neo-media:hover .overlay {
	opacity: 1;
}

@media (max-width: 991.98px) {
	.neo-step {
		grid-template-columns: 1fr;
	}
}

.faq-intro::before,
.testimonials-intro::before,
.contact-intro::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.faq-intro h3,
.testimonials-intro h3,
.contact-intro h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--default-color);
}

.faq-intro p,
.testimonials-intro p,
.contact-intro p {
	font-size: 1.125rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.faq-intro,
	.testimonials-intro,
	.contact-intro {
		padding: 30px 20px;
	}

	.faq-intro h3,
	.testimonials-intro h3,
	.contact-intro h3 {
		font-size: 1.5rem;
	}
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 400;
	color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .navmenu {
		order: 3;
	}
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 8px 11px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
		border-radius: 999px;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li a {
		margin: 0 1rem;
	}

	/* Underline indicator (hidden by default) */
	.navmenu a::after {
		content: '';
		position: absolute;
		left: 12px;
		right: 12px;
		bottom: 4px;
		height: 2px;
		border-radius: 999px;
		background: linear-gradient(
			90deg,
			var(--accent-color),
			var(--heading-color)
		);
		transform: scaleX(0);
		transform-origin: center;
		transition: transform 0.25s ease;
		opacity: 0.9;
	}

	/* New hover/active: soft pill background + glow + underline */
	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
		background: color-mix(in srgb, var(--accent-color), transparent 85%);
		box-shadow: 0 6px 18px rgba(168, 85, 247, 0.18);
	}

	.navmenu li:hover > a::after,
	.navmenu .active::after,
	.navmenu .active:focus::after {
		transform: scaleX(1);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;

		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;

		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;

		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
	color: #ffffff;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}

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

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

/* Compact Footer Layout */
.footer-compact {
	padding: 24px 0;
}

.footer-compact .footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-compact .brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: #ffffff;
}

.footer-compact .brand img {
	height: 28px;
}

.footer-compact .nav-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.footer-compact .nav-links a {
	color: #cbd5e0;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-compact .nav-links a:hover {
	color: var(--accent-color);
}

.footer-compact .social {
	display: flex;
	gap: 10px;
}

.footer-compact .social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #cbd5e0;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(229, 62, 62, 0.25);
	text-decoration: none;
	transition: all 0.2s ease;
}

.footer-compact .social a:hover {
	color: #fff;
	background: var(--accent-color);
}

.footer-compact .copy {
	color: #a0aec0;
	font-size: 13px;
}

@media (max-width: 768px) {
	.footer-compact .footer-row {
		justify-content: center;
		text-align: center;
	}
}

/* Footer Newsletter Section */
.footer-newsletter {
	background: rgba(45, 55, 72, 0.8);
	padding: 60px 0;
	border-radius: 20px;
	margin: 40px 0;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(229, 62, 62, 0.2);
}

.footer-newsletter h4 {
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.footer-newsletter p {
	color: #cbd5e0;
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

.footer-newsletter .newsletter-form {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 8px;
	border: 1px solid rgba(229, 62, 62, 0.3);
	transition: all 0.3s ease;
}

.footer-newsletter .newsletter-form:focus-within {
	border-color: var(--accent-color);
	box-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
}

.footer-newsletter .newsletter-form input[type='email'] {
	border: 0;
	padding: 15px 20px;
	width: 100%;
	background: transparent;
	color: #ffffff;
	font-size: 16px;
}

.footer-newsletter .newsletter-form input[type='email']::placeholder {
	color: #a0aec0;
}

.footer-newsletter .newsletter-form input[type='email']:focus-visible {
	outline: none;
}

.footer-newsletter .newsletter-form input[type='submit'] {
	border: 0;
	font-size: 16px;
	padding: 15px 30px;
	background: linear-gradient(135deg, var(--accent-color), #c53030);
	color: #ffffff;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.footer-newsletter .newsletter-form input[type='submit']:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

/* Footer Main Content */
.footer-top {
	padding: 80px 0 60px 0;
}

.footer-brand {
	margin-bottom: 2rem;
}

.footer-brand h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.footer-brand p {
	color: #cbd5e0;
	line-height: 1.6;
	margin-bottom: 2rem;
}

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

.footer-social a {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(229, 62, 62, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cbd5e0;
	font-size: 20px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer-social a:hover {
	background: var(--accent-color);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

/* Footer Links */
.footer-links h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 10px;
}

.footer-links h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-color), #c53030);
}

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

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li a {
	color: #cbd5e0;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	font-size: 15px;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
	transform: translateX(5px);
}

.footer-links ul li a::before {
	content: '→';
	margin-right: 8px;
	opacity: 0;
	transition: all 0.3s ease;
}

.footer-links ul li a:hover::before {
	opacity: 1;
	color: var(--accent-color);
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-links {
	margin-bottom: 30px;
}

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

.footer .footer-links ul i {
	margin-right: 3px;
	font-size: 12px;
	line-height: 0;
	color: var(--accent-color);
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	display: inline-block;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-about a {
	color: var(--heading-color);
	font-size: 24px;
	font-weight: 600;
	font-family: var(--heading-font);
}

.footer .footer-contact p {
	margin-bottom: 5px;
}

/* Footer Copyright */
.footer-copyright {
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.2);
}

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

.footer-copyright p {
	margin: 0;
	color: #a0aec0;
	font-size: 14px;
}

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

.footer-copyright .footer-links a {
	color: #a0aec0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
	.footer-copyright .container {
		flex-direction: column;
		text-align: center;
	}

	.footer-copyright .footer-links {
		justify-content: center;
	}
}

.footer .credits {
	margin-top: 6px;
	font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: '';
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	position: relative;
}

.page-title h1 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
	content: '/';
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 70vh;
	position: relative;
	padding: 120px 0 60px 0;
	display: flex;
	align-items: center;
}

.hero h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.hero p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 5px 0 10px 0;
	font-size: 20px;
	font-weight: 400;
}

.hero .download-btn {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color) 90%, #2d3748 50%);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 15px;
	padding: 8px 30px 10px 30px;
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .download-btn + .download-btn {
	margin-left: 20px;
}

.hero .download-btn:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}

.hero .download-btn i {
	font-size: 16px;
	line-height: 0;
	margin-right: 8px;
}

@media (max-width: 768px) {
	.hero h2 {
		font-size: 28px;
		line-height: 36px;
	}

	.hero p {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	.hero .download-btn {
		font-size: 14px;
		padding: 8px 20px 10px 20px;
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
	list-style: none;
	padding: 0;
}

.about ul li {
	padding-bottom: 5px;
	display: flex;
	align-items: center;
}

.about ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}

.about .read-more {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1.2px;
	padding: 12px 32px;
	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	user-select: none;
	text-decoration: none;
}

.about .read-more i {
	font-size: 18px;
	margin-left: 8px;
	line-height: 0;
	transition: transform 0.3s ease;
}

.about .read-more:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
	transform: translateX(6px);
}

/*--------------------------------------------------------------
# Success Journey Section
--------------------------------------------------------------*/
.success-journey {
	background-color: var(--background-color);
}

.success-step {
	margin-bottom: 80px;
}

.success-step:last-child {
	margin-bottom: 0;
}

.success-content {
	padding: 40px 0;
}

.step-number {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-color), #c53030);
	color: var(--contrast-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

.success-content h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--default-color);
}

.success-content .lead {
	font-size: 18px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 30px;
	line-height: 1.6;
}

.success-features {
	display: grid;
	gap: 20px;
}

.success-features .feature-item {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	background: var(--surface-color);
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.success-features .feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.success-features .feature-item i {
	font-size: 24px;
	color: var(--accent-color);
	margin-right: 15px;
	margin-top: 5px;
	flex-shrink: 0;
}

.success-features .feature-item h5 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--default-color);
}

.success-features .feature-item p {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 0;
	line-height: 1.5;
}

.success-image {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

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

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

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(229, 62, 62, 0.8),
		rgba(43, 108, 176, 0.8)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.success-image:hover .image-overlay {
	opacity: 1;
}

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

.overlay-content i {
	font-size: 48px;
	margin-bottom: 15px;
}

.overlay-content h4 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

/*--------------------------------------------------------------
# Success Features Section
--------------------------------------------------------------*/
.success-features {
	background: linear-gradient(135deg, var(--bg-color), var(--background-color));
}

.feature-card {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
	backdrop-filter: blur(10px);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #7c3aed);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(168, 85, 247, 0.2);
	border-color: rgba(168, 85, 247, 0.4);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), #7c3aed);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
	font-size: 32px;
	color: var(--contrast-color);
}

.feature-content h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--default-color);
}

.feature-content p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 16px;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	text-align: left;
}

.feature-list li {
	padding: 8px 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	position: relative;
	padding-left: 25px;
	font-size: 14px;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

.feature-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--accent-color), #7c3aed);
	color: var(--contrast-color);
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 20px;
	box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.cta-section {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
	padding: 50px 40px;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.2);
	backdrop-filter: blur(10px);
}

.cta-section h3 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--default-color);
}

.cta-section p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 18px;
	margin-bottom: 30px;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--accent-color), #c53030);
	color: var(--contrast-color);
	padding: 15px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.success-content {
		padding: 20px 0;
	}

	.success-content h3 {
		font-size: 24px;
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.success-image img {
		height: 250px;
	}

	.feature-card {
		padding: 30px 20px;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
	}

	.feature-icon i {
		font-size: 24px;
	}

	.cta-section {
		padding: 30px 20px;
	}

	.cta-section h3 {
		font-size: 24px;
	}
}

.feature-item strong {
	font-size: 18px;
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

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

.testimonial-card {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
	padding: 40px 30px;
	box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
	position: relative;
	transition: all 0.3s ease;
	height: 100%;
	border-radius: 15px;
	border: 1px solid rgba(168, 85, 247, 0.2);
	backdrop-filter: blur(10px);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(168, 85, 247, 0.2);
	border-color: rgba(168, 85, 247, 0.4);
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
	background-color: var(--surface-color);
	padding: 60px 40px;
	box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
	height: 100%;
	position: relative;
}

.pricing h3 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
}

.pricing h4 {
	font-size: 48px;
	color: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 400;
}

.pricing h4 sup {
	font-size: 28px;
}

.pricing h4 span {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 18px;
}

.pricing ul {
	padding: 20px 0;
	list-style: none;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	text-align: left;
	line-height: 20px;
}

.pricing ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.pricing ul i {
	color: #16a34a;
	font-size: 24px;
	padding-right: 3px;
}

.pricing ul .na {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
	text-decoration: line-through;
}

.pricing .buy-btn {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	background-color: var(--background-color);
	display: inline-block;
	padding: 8px 35px 10px 35px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	transition: none;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--heading-font);
	transition: 0.3s;
}

.pricing .buy-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--contrast-color);
}

.pricing .featured {
	z-index: 10;
}

.pricing .featured .pricing-item {
	background: var(--accent-color);
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
	color: var(--contrast-color);
}

.pricing .featured .buy-btn {
	background: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
	background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
	background-color: var(--background-color);
}

.faq-accordion {
	max-width: 100%;
}

.faq-item {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
	border-radius: 15px;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.2);
	overflow: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.faq-item:hover {
	box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
	transform: translateY(-2px);
	border-color: rgba(168, 85, 247, 0.4);
}

.faq-item.active {
	box-shadow: 0 25px 50px rgba(168, 85, 247, 0.3);
	border-color: var(--accent-color);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
}

.faq-question:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq-item.active .faq-question {
	background: linear-gradient(135deg, var(--accent-color), #c53030);
	color: var(--contrast-color);
}

.faq-question-content {
	display: flex;
	align-items: center;
	flex: 1;
}

.faq-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-color), #7c3aed);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.faq-item.active .faq-icon {
	background: var(--contrast-color);
	color: var(--accent-color);
}

.faq-icon i {
	font-size: 20px;
	color: var(--contrast-color);
}

.faq-item.active .faq-icon i {
	color: var(--accent-color);
}

.faq-question h4 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	color: var(--default-color);
	transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
	color: var(--contrast-color);
}

.faq-toggle {
	width: 40px;
	height: 40px;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
	background: var(--contrast-color);
}

.faq-toggle i {
	font-size: 16px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.faq-item.active .faq-toggle i {
	color: var(--accent-color);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
}

.faq-answer-content {
	padding: 0 30px 30px 30px;
}

.faq-answer-content p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 16px;
}

.faq-answer-content ul {
	margin: 20px 0;
	padding-left: 20px;
}

.faq-answer-content li {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 8px;
	line-height: 1.6;
}

/* FAQ Content Styles */
.faq-features {
	display: grid;
	gap: 15px;
	margin-top: 20px;
}

.feature-item {
	padding: 15px;
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	border-radius: 10px;
	border-left: 4px solid var(--accent-color);
}

.feature-item strong {
	color: var(--accent-color);
}

.target-groups {
	display: grid;
	gap: 15px;
	margin-top: 20px;
}

.group-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.group-item:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 95%);
	transform: translateX(5px);
}

.group-item i {
	font-size: 24px;
	color: var(--accent-color);
	margin-right: 15px;
	width: 30px;
	text-align: center;
}

.group-item strong {
	color: var(--accent-color);
}

.time-investment {
	display: grid;
	gap: 15px;
	margin-top: 20px;
}

.time-option {
	display: flex;
	align-items: center;
	padding: 15px;
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	border-radius: 10px;
	border-left: 4px solid var(--heading-color);
}

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

.time-icon i {
	color: var(--contrast-color);
	font-size: 18px;
}

.time-option strong {
	color: var(--heading-color);
}

.start-steps {
	display: grid;
	gap: 20px;
	margin-top: 20px;
}

.step-item {
	display: flex;
	align-items: center;
	padding: 20px;
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.step-item:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 95%);
	transform: translateX(10px);
}

.step-number {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent-color), #c53030);
	color: var(--contrast-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	margin-right: 20px;
	flex-shrink: 0;
}

.step-content strong {
	color: var(--accent-color);
}

.community-features {
	display: grid;
	gap: 15px;
	margin-top: 20px;
}

.community-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.community-item:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 95%);
	transform: translateX(5px);
}

.community-item i {
	font-size: 24px;
	color: var(--accent-color);
	margin-right: 15px;
	width: 30px;
	text-align: center;
}

.community-item strong {
	color: var(--accent-color);
}

.security-features {
	display: grid;
	gap: 15px;
	margin-top: 20px;
}

.security-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	border-radius: 10px;
	border-left: 4px solid var(--heading-color);
}

.security-item i {
	font-size: 24px;
	color: var(--heading-color);
	margin-right: 15px;
	width: 30px;
	text-align: center;
}

.security-item strong {
	color: var(--heading-color);
}

/* Responsive Design */
@media (max-width: 768px) {
	.faq-question {
		padding: 20px;
	}

	.faq-answer-content {
		padding: 0 20px 20px 20px;
	}

	.faq-icon {
		width: 40px;
		height: 40px;
		margin-right: 15px;
	}

	.faq-icon i {
		font-size: 16px;
	}

	.faq-question h4 {
		font-size: 16px;
	}

	.faq-toggle {
		width: 35px;
		height: 35px;
	}

	.faq-toggle i {
		font-size: 14px;
	}

	.step-item {
		padding: 15px;
	}

	.step-number {
		width: 35px;
		height: 35px;
		font-size: 16px;
		margin-right: 15px;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
	background-color: var(--background-color);
}

.contact-card {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.9),
		rgba(22, 33, 62, 0.9)
	);
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(168, 85, 247, 0.2);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #7c3aed);
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(168, 85, 247, 0.2);
	border-color: rgba(168, 85, 247, 0.4);
}

.contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), #7c3aed);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.contact-card:hover .contact-icon {
	transform: scale(1.1);
}

.contact-icon i {
	font-size: 32px;
	color: var(--contrast-color);
}

.contact-card h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--default-color);
}

.contact-card p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	line-height: 1.6;
	margin-bottom: 20px;
}

.contact-details {
	margin: 20px 0;
	padding: 15px;
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	border-radius: 10px;
}

.contact-details p {
	margin-bottom: 5px;
	font-size: 14px;
}

.contact-details p:last-child {
	margin-bottom: 0;
}

.contact-btn {
	display: inline-flex;
	align-items: center;
	background: var(--accent-color);
	color: var(--contrast-color);
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 2px solid var(--accent-color);
}

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

.contact-form-wrapper {
	background: var(--surface-color);
	padding: 50px 40px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header h3 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--default-color);
}

.form-header p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 16px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--default-color);
	font-size: 14px;
}

.contact-form .form-control {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
	border-radius: 10px;
	font-size: 16px;
	transition: all 0.3s ease;
	background-color: var(--surface-color);
	color: var(--default-color);
}

.contact-form .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
	outline: none;
}

.contact-form .form-control::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-form select.form-control {
	cursor: pointer;
}

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

.form-check {
	margin: 25px 0;
}

.form-check-input {
	margin-top: 0.25em;
}

.form-check-label {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1.5;
}

.form-check-label a {
	color: var(--accent-color);
	text-decoration: none;
}

.form-check-label a:hover {
	text-decoration: underline;
}

.submit-btn {
	background: linear-gradient(135deg, var(--accent-color), #c53030);
	color: var(--contrast-color);
	border: none;
	padding: 15px 40px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
	transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-card {
		padding: 30px 20px;
		margin-bottom: 30px;
	}

	.contact-form-wrapper {
		padding: 30px 20px;
	}

	.contact-icon {
		width: 60px;
		height: 60px;
	}

	.contact-icon i {
		font-size: 24px;
	}
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

#cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	transform: translateX(-50%);
	background: #dedede;
	color: #333;
	border: none;
	padding: 20px;
	font-family: 'Heebo', sans-serif;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	font-size: 14px;
	max-width: 400px;
	z-index: 1000;
	display: none;
	opacity: 0;
	/* Start invisible */
	transform: translateY(30px);
	/* Slide up effect */
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
}

#cookie-popup.show {
	opacity: 1;
	transform: translateY(0);
}

#cookie-popup p {
	margin: 0;
	padding: 0;
}

#cookie-popup .popup-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookie-popup button {
	background: var(--accent-color);
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
	background: var(--accent-color);
}

#cookie-popup .popup-message {
	max-width: 80%;
}

#cookie-popup .popup-message a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
	color: var(--accent-color);
}

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

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

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

.about_elem {
	margin-bottom: 2rem;
}

.swiper-slide {
	opacity: 0.4;
	transform: scale(0.92);
	transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

.swiper-pagination-bullet {
	background-color: #888;
	opacity: 0.6;
	transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid var(--bg-color);
	color: var(--accent-color);
	width: 40px;
	height: 40px;
	transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--bg-color);
	color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
}

.swiper-pagination {
	position: absolute;
	bottom: -10px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background-color: #999;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
	background-color: #dc2626;
}

.swiper-pagination .swiper-pagination-bullet:hover {
	background-color: #ef4444;
}

.swiper-pagination.hidden {
	display: none;
}

.swiper-pagination .swiper-pagination-button {
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
	font-size: 20px;
	color: #dc2626;
	transition: color 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
	color: #ef4444;
}

.testimonial-img {
	width: 100%;
	max-width: 350px;
	max-height: 350px;
	height: 350px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.growth {
	background-image: url('assets/img/background-image.png');
	background-size: cover;
	background-position: center;
	color: var(--light-text);
	padding: 100px 0;
}

.lead {
	color: var(--accent-color);
	font-weight: 500;
}

/*--------------------------------------------------------------
# New Hero Section Styles
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 80vh;
	position: relative;
	padding: 100px 0;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
	overflow: hidden;
}

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

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

.hero-content {
	padding: 40px 0;
}

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

.text-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.6;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 2rem;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-buttons .btn {
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
	background: linear-gradient(135deg, var(--accent-color), #7c3aed);
	border: none;
	box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.hero-buttons .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.hero-buttons .btn-outline-primary {
	border: 2px solid var(--accent-color);
	color: var(--accent-color);
	background: transparent;
}

.hero-buttons .btn-outline-primary:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-2px);
}

.hero-image {
	position: relative;
	text-align: center;
}

.hero-image img {
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

/* Hero stats removed */

@media (max-width: 768px) {
	.hero {
		min-height: 60vh;
		padding: 60px 0;
	}

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

	.hero-description {
		font-size: 1.125rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	/* Hero stats removed */
}
