/* 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: #f8f9fa; /* light background */
	--default-color: #2c3e50; /* dark text */
	--heading-color: #22e6d2; /* orange */
	--accent-color: #ae27ae; /* dark green */
	--surface-color: #ffffff; /* white surface */
	--contrast-color: #ffffff; /* white for contrast */
	--nav-color: #2c3e50; /* dark text for nav */
	--nav-hover-color: #22e6d2; /* orange for nav hover */
	--nav-mobile-background-color: #ecf0f1; /* light gray */
	--nav-dropdown-background-color: #ffffff; /* white */
	--nav-dropdown-color: #2c3e50; /* dark text */
	--nav-dropdown-hover-color: #22e6d2; /* orange hover */
	--success-color: #ae27ae; /* dark green for success states */
	--warning-color: #22e6d2; /* orange for warnings */
	--star-color: #22e6d2; /* orange for stars */
	--border-light: rgba(230, 126, 34, 0.1); /* light orange border */
	--border-medium: rgba(230, 126, 34, 0.2); /* medium orange border */
	--border-strong: rgba(230, 126, 34, 0.3); /* strong orange border */
	--accent-light: rgba(174, 39, 165, 0.1); /* light dark green */
	--accent-medium: rgba(174, 39, 165, 0.2); /* medium dark green */
	--accent-strong: rgba(167, 39, 174, 0.3); /* strong dark green */
	--gradient-primary: linear-gradient(
		45deg,
		var(--heading-color),
		var(--accent-color)
	);
	--gradient-reverse: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color)
	);
	--gradient-multi: linear-gradient(
		45deg,
		var(--heading-color),
		var(--accent-color),
		var(--heading-color)
	);
	--shadow-color: rgba(230, 126, 34, 0.15);
	--text-muted: color-mix(in srgb, var(--default-color), transparent 30%);
	--text-light: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* Color Presets */

.light-background {
	--background-color: #f8f9fa;
	--default-color: #2c3e50;
	--heading-color: #e67e22;
	--surface-color: #ffffff;
	--contrast-color: #2c3e50;
}

.dark-background {
	--background-color: #2c3e50;
	--default-color: #ffffff;
	--heading-color: #e67e22;
	--surface-color: #34495e;
	--contrast-color: #ffffff;
}

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

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: var(--contrast-color);
	background: var(--success-color);
	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;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
}

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

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

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.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;
	border-radius: 50px;
}

@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: 18px 15px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
	}

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

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.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;
		border-radius: 4px;
		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 .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}
}

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

	.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;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		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;
	}

	.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;
		border-radius: 50%;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

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

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

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

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

/*--------------------------------------------------------------
# Global Footer - Futuristic
--------------------------------------------------------------*/
.footer-futuristic {
	background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
	color: #2c3e50;
	position: relative;
	overflow: hidden;
	border-top: 3px solid var(--heading-color);
}

.footer-futuristic::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 10% 20%,
			var(--accent-light) 0%,
			transparent 50%
		),
		radial-gradient(circle at 90% 80%, var(--accent-light) 0%, transparent 50%);
	z-index: 1;
}

.footer-newsletter-futuristic {
	background: rgba(230, 126, 34, 0.05);
	border-bottom: 1px solid rgba(230, 126, 34, 0.2);
	padding: 60px 0;
	position: relative;
	z-index: 2;
}

.newsletter-content {
	text-align: center;
}

.newsletter-content h3 {
	color: var(--heading-color);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.newsletter-content p {
	color: var(--default-color);
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-form-futuristic {
	max-width: 500px;
	margin: 0 auto;
}

.input-group {
	display: flex;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(230, 126, 34, 0.3);
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.input-group:focus-within {
	border-color: var(--heading-color);
	box-shadow: 0 0 0 3px var(--accent-light);
}

.input-group input[type='email'] {
	flex: 1;
	background: transparent;
	border: none;
	padding: 15px 20px;
	color: var(--default-color);
	font-size: 1rem;
	outline: none;
}

.input-group input[type='email']::placeholder {
	color: #7f8c8d;
}

.btn-newsletter {
	background: var(--gradient-primary);
	border: none;
	color: #ffffff;
	padding: 15px 25px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-main-futuristic {
	padding: 60px 0 40px;
	position: relative;
	z-index: 2;
}

.footer-brand .brand-link {
	text-decoration: none;
	color: var(--default-color);
}

.brand-name {
	font-size: 2rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.brand-description {
	color: var(--default-color);
	margin: 20px 0;
	line-height: 1.6;
}

.contact-info {
	margin-top: 20px;
}

.contact-info .contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--default-color);
}

.contact-info .contact-item i {
	color: var(--heading-color);
	font-size: 1.1rem;
}

.footer-links h4 {
	color: var(--default-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
}

.footer-links h4::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--gradient-primary);
}

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

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

.footer-links ul li a {
	color: var(--default-color);
	text-decoration: none;
	display: block;
	padding: 5px 0;
	transition: color 0.3s ease;
}

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

.footer-about h4 {
	color: var(--default-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
}

.footer-about h4::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--gradient-primary);
}

.footer-about p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 25px;
}

.social-links {
	display: flex;
	gap: 15px;
}

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

.social-link:hover {
	background: var(--heading-color);
	color: #ffffff;
	transform: translateY(-2px);
}

.footer-bottom-futuristic {
	background: rgba(230, 126, 34, 0.1);
	border-top: 1px solid rgba(230, 126, 34, 0.2);
	padding: 20px 0;
	position: relative;
	z-index: 2;
}

.copyright,
.made-with {
	color: var(--default-color);
	margin: 0;
	font-size: 0.9rem;
}

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

	.input-group {
		flex-direction: column;
		border-radius: 15px;
	}

	.btn-newsletter {
		border-radius: 0 0 15px 15px;
	}

	.social-links {
		justify-content: center;
	}
}

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

#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;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}

/*--------------------------------------------------------------
# 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;
	border-radius: 4px;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
}

/*--------------------------------------------------------------
# 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 - Modern
--------------------------------------------------------------*/
.hero-modern {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 50%, #d5dbdb 100%);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 20% 20%,
			rgba(204, 34, 230, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(39, 147, 174, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 60%,
			rgba(230, 126, 34, 0.05) 0%,
			transparent 50%
		);
	animation: float 20s ease-in-out infinite;
}

.hero-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(34, 227, 230, 0.05) 0%,
		transparent 30%,
		transparent 70%,
		rgba(138, 39, 174, 0.05) 100%
	);
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(2deg);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 60px 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(230, 126, 34, 0.1);
	color: var(--heading-color);
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 30px;
	border: 1px solid rgba(230, 126, 34, 0.2);
	backdrop-filter: blur(10px);
}

.hero-badge i {
	font-size: 16px;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 30px;
}

.title-primary {
	display: block;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-secondary {
	display: block;
	color: var(--default-color);
	font-size: 3rem;
}

.title-accent {
	display: block;
	color: var(--accent-color);
	font-size: 2.5rem;
}

.hero-description {
	font-size: 1.3rem;
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 500px;
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--heading-color);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--default-color);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	color: #ffffff;
	padding: 18px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(230, 126, 34, 0.4);
	color: #ffffff;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--default-color);
	padding: 18px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid var(--border-medium);
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	transform: translateY(-3px);
	background: var(--heading-color);
	color: #ffffff;
	border-color: var(--heading-color);
}

.hero-visual {
	position: relative;
	z-index: 2;
	padding: 60px 0;
}

.hero-image-container {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	padding: 20px;
}

.hero-image {
	width: 100%;
	height: auto;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

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

.hero-overlay {
	position: absolute;
	top: 30px;
	right: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tech-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--heading-color);
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 600;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-badge i {
	font-size: 14px;
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-element {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}

.element-1 {
	width: 60px;
	height: 60px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.element-2 {
	width: 40px;
	height: 40px;
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.element-3 {
	width: 80px;
	height: 80px;
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
}

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

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

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

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

	.hero-stats {
		gap: 20px;
	}

	.stat-number {
		font-size: 2rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		justify-content: center;
	}
}

/*--------------------------------------------------------------
# About Section - Modern
--------------------------------------------------------------*/
.about-modern {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.about-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 10% 20%,
			rgba(230, 126, 34, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 90% 80%,
			rgba(39, 174, 96, 0.05) 0%,
			transparent 50%
		);
	z-index: 1;
}

.about-content {
	position: relative;
	z-index: 2;
	padding-right: 40px;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(230, 126, 34, 0.1);
	color: var(--heading-color);
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 30px;
	border: 1px solid rgba(230, 126, 34, 0.2);
	backdrop-filter: blur(10px);
}

.section-badge i {
	font-size: 16px;
}

.section-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 30px;
}

.title-highlight {
	display: block;
	color: var(--default-color);
	font-size: 2.5rem;
}

.title-gradient {
	display: block;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 3rem;
}

.section-description {
	font-size: 1.2rem;
	color: var(--default-color);
	line-height: 1.7;
	margin-bottom: 50px;
	max-width: 500px;
}

.about-features {
	margin-bottom: 50px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	border: 1px solid rgba(230, 126, 34, 0.1);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(230, 126, 34, 0.1);
	border-color: var(--heading-color);
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.feature-content h4 {
	color: var(--default-color);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.feature-content p {
	color: var(--default-color);
	line-height: 1.6;
	margin: 0;
}

.about-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	color: var(--default-color);
	padding: 18px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid var(--border-medium);
}

.btn-outline:hover {
	background: var(--heading-color);
	color: #ffffff;
	border-color: var(--heading-color);
	transform: translateY(-3px);
}

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

.visual-container {
	position: relative;
	height: 500px;
}

.main-image {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	padding: 20px;
}

.main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

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

.image-overlay {
	position: absolute;
	top: 30px;
	right: 30px;
	background: rgba(255, 255, 255, 0.95);
	padding: 15px 20px;
	border-radius: 25px;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.overlay-content {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--heading-color);
	font-weight: 600;
	font-size: 14px;
}

.overlay-content i {
	font-size: 16px;
}

.floating-cards {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(230, 126, 34, 0.2);
	display: flex;
	align-items: center;
	gap: 15px;
	animation: float 6s ease-in-out infinite;
}

.card-1 {
	top: 10%;
	left: -10%;
	animation-delay: 0s;
}

.card-2 {
	top: 60%;
	right: -15%;
	animation-delay: 2s;
}

.card-3 {
	bottom: 10%;
	left: 10%;
	animation-delay: 4s;
}

.card-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.card-icon i {
	font-size: 1.2rem;
	color: #ffffff;
}

.card-number {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--heading-color);
	line-height: 1;
	margin-bottom: 5px;
}

.card-label {
	font-size: 0.8rem;
	color: var(--default-color);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	.about-content {
		padding-right: 0;
		margin-bottom: 50px;
	}

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

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

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

	.about-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn-primary,
	.btn-outline {
		width: 100%;
		justify-content: center;
	}

	.visual-container {
		height: 400px;
	}

	.floating-cards {
		display: none;
	}
}

/*--------------------------------------------------------------
# Features Section - Modern
--------------------------------------------------------------*/
.features-modern {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.features-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(39, 174, 96, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(230, 126, 34, 0.05) 0%,
			transparent 50%
		);
	z-index: 1;
}

.section-header {
	position: relative;
	z-index: 2;
	margin-bottom: 80px;
}

.feature-card-modern {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(230, 126, 34, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	z-index: 2;
}

.feature-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border-color: var(--heading-color);
}

.feature-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

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

.feature-card-modern:hover .feature-image img {
	transform: scale(1.1);
}

.feature-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(230, 126, 34, 0.8) 0%,
		rgba(39, 174, 96, 0.8) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-overlay {
	opacity: 1;
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-icon i {
	font-size: 2.5rem;
	color: #ffffff;
}

.feature-content {
	padding: 30px;
}

.feature-badge {
	display: inline-block;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.feature-content h3 {
	color: var(--default-color);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
}

.feature-content p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 25px;
}

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

.feature-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	color: var(--default-color);
	font-weight: 500;
}

.feature-list i {
	color: var(--accent-color);
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

/* Legacy Features Section */
.features .icon-box {
	display: flex;
}

.features .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px 0;
}

.features .icon-box i {
	font-size: 44px;
	line-height: 44px;
	color: var(--accent-color);
	margin-right: 15px;
}

.features .icon-box p {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section - Futuristic
--------------------------------------------------------------*/
.features-item-futuristic {
	padding: 20px;
}

.feature-card {
	background: var(--surface-color);
	border: 1px solid var(--border-medium);
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px var(--shadow-color);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-primary);
	opacity: 0.05;
	z-index: 1;
}

.feature-image {
	position: relative;
	height: 300px;
	overflow: hidden;
}

.feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8) contrast(1.1);
}

.feature-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(128, 0, 32, 0.7) 0%,
		rgba(20, 83, 45, 0.7) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.feature-content {
	padding: 30px;
	position: relative;
	z-index: 2;
}

.feature-badge {
	display: inline-block;
	background: var(--gradient-primary);
	color: var(--contrast-color);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.feature-content h3 {
	color: var(--heading-color);
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
}

.feature-description {
	color: var(--text-muted);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 25px;
	font-style: italic;
}

.feature-benefits {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
}

.benefit-item i {
	font-size: 1.2rem;
	color: var(--accent-color);
	width: 20px;
	text-align: center;
}

.benefit-item span {
	color: var(--default-color);
	font-weight: 500;
	font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.features-item-futuristic {
		padding: 15px;
	}

	.feature-image {
		height: 250px;
	}

	.feature-content {
		padding: 25px 20px;
	}

	.feature-content h3 {
		font-size: 1.5rem;
	}

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

	.feature-icon i {
		font-size: 2rem;
	}
}

/* Legacy feature-details styles for backward compatibility */
.feature-details .features-item {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item + .features-item {
	margin-top: 100px;
}

@media (max-width: 640px) {
	.feature-details .features-item + .features-item {
		margin-top: 40px;
	}
}

.feature-details .features-item h3 {
	font-weight: 700;
	font-size: 26px;
}

.feature-details .features-item ul {
	list-style: none;
	padding: 0;
}

.feature-details .features-item ul li {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
}

.feature-details .features-item ul li:last-child {
	padding-bottom: 0;
}

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

.feature-details .features-item p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
	overflow: hidden;
}

.gallery .swiper-wrapper {
	height: auto;
}

.gallery .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
	background-color: var(--background-color);
	border: 1px solid var(--accent-color);
	width: 12px;
	height: 12px;
	opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
	text-align: center;
}

@media (min-width: 992px) {
	.gallery .swiper-wrapper {
		padding: 60px 0;
	}

	.gallery .swiper-slide-active {
		background: var(--background-color);
		border: 6px solid var(--accent-color);
		padding: 4px;
		z-index: 1;
		border-radius: 25px;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	background-color: var(--surface-color);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 30px 15px;
	min-height: 200px;
	position: relative;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid var(--background-color);
	position: absolute;
	left: -45px;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
	margin: 0;
}

.testimonials .testimonial-item .stars {
	margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
	color: var(--star-color);
	margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, var(--accent-color), transparent 60%);
	font-size: 26px;
	line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--background-color);
	opacity: 1;
	border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0;
	}

	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
		overflow: hidden;
	}

	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px;
	}

	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto;
	}
}

/*--------------------------------------------------------------
# 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: var(--success-color);
	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-radius: 4px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 16px;
	font-weight: 500;
	font-family: var(--heading-font);
}

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

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

@media (min-width: 992px) {
}

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
	margin-top: 15px;
}

.faq .faq-container .faq-item {
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	position: relative;
	padding: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
	margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin: 0 30px 0 32px;
	cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
	position: absolute;
	top: 22px;
	left: 20px;
	font-size: 20px;
	line-height: 0;
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	cursor: pointer;
}

.faq .faq-container .faq-active {
	background-color: var(--accent-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
	color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

/*--------------------------------------------------------------
# Contact Section - Futuristic
--------------------------------------------------------------*/
.contact-futuristic {
	background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	border-top: 3px solid var(--accent-color);
}

.contact-futuristic::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(255, 107, 53, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(78, 205, 196, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 60%,
			rgba(255, 107, 53, 0.05) 0%,
			transparent 50%
		);
	z-index: 1;
}

.contact-info-futuristic {
	position: relative;
	z-index: 2;
	padding-right: 30px;
}

.contact-info-futuristic h2 {
	color: var(--default-color);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-subtitle {
	color: var(--default-color);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 40px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(230, 126, 34, 0.2);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 16px rgba(230, 126, 34, 0.1);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.contact-text h4 {
	color: var(--default-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.contact-text p {
	color: var(--default-color);
	margin: 0;
	line-height: 1.5;
}

.contact-form-futuristic {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--border-medium);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(230, 126, 34, 0.1);
}

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

.form-control-futuristic {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(230, 126, 34, 0.3);
	border-radius: 10px;
	color: var(--default-color);
	font-size: 1rem;
}

.form-control-futuristic:focus {
	outline: none;
	border-color: var(--heading-color);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 0 3px var(--accent-light);
}

.form-control-futuristic::placeholder {
	color: #7f8c8d;
}

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

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

.loading,
.error-message,
.sent-message {
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 15px;
	display: none;
}

.loading {
	background: var(--accent-light);
	color: var(--accent-color);
	border: 1px solid rgba(78, 205, 196, 0.3);
}

.error-message {
	background: rgba(255, 107, 53, 0.1);
	color: var(--heading-color);
	border: 1px solid rgba(255, 107, 53, 0.3);
}

.sent-message {
	background: var(--accent-light);
	color: var(--accent-color);
	border: 1px solid rgba(78, 205, 196, 0.3);
}

.btn-contact-futuristic {
	position: relative;
	background: var(--gradient-primary);
	color: #ffffff;
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
}

.btn-contact-futuristic .btn-glow {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
}

@media (max-width: 768px) {
	.contact-info-futuristic {
		padding-right: 0;
		margin-bottom: 40px;
	}

	.contact-futuristic h2 {
		font-size: 2rem;
	}

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
	/* Add your styles here */
}

#cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background: var(--surface-color);
	color: var(--default-color);
	border: 1px solid var(--border-strong);
	padding: 25px;
	font-family: var(--default-font);
	box-shadow: 0 8px 25px var(--shadow-color);
	border-radius: 20px;
	font-size: 14px;
	max-width: 420px;
	z-index: 1000;
	display: none;
	opacity: 0;
	backdrop-filter: blur(10px);
}

#cookie-popup.show {
	opacity: 1;
}

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

#cookie-popup .popup-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
}

#cookie-popup button {
	background: var(--gradient-primary);
	color: var(--contrast-color);
	border: none;
	padding: 12px 24px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--default-font);
	align-self: flex-end;
	box-shadow: 0 4px 12px var(--shadow-color);
}

#cookie-popup .popup-message {
	max-width: 100%;
	line-height: 1.5;
}

#cookie-popup .popup-message a {
	color: var(--heading-color);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid var(--border-medium);
}

#features-slider {
	position: relative;
}

.swiper-slide {
}

.swiper-button-prev,
.swiper-button-next {
	color: var(--accent-color);
	background: var(--nav-dropdown-background-color);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
}
@media (max-width: 768px) {
	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}
}

.swiper-button-next {
	right: 5%;
}

.swiper-button-prev {
	left: 5%;
}

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

.list-cards {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.card-item {
	background: var(--background-color);
	border-radius: 12px;
	box-shadow: 0 4px 12px var(--heading-color);
	padding: 5px 10px;
	display: flex;
	align-items: flex-start;
	cursor: default;
	margin: 10px;
}
.card-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.icon {
	font-size: 1.8rem;
	color: var(--accent-color);
	flex-shrink: 0;
}
.card-item p {
	margin: 0;
	font-size: 1rem;
	color: var(--accent-color);
	font-weight: 500;
	line-height: 1.4;
}
@media (max-width: 768px) {
	.list-cards {
		flex-direction: column;
	}
	.card-item {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
	padding: 80px 0;
}

.success-story-item {
	background: var(--surface-color);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	height: 100%;
	border: 1px solid var(--border-light);
}

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

.success-story-item h3 {
	color: var(--heading-color);
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.story-meta {
	color: var(--accent-color);
	font-size: 0.9rem;
	margin-bottom: 15px;
	font-weight: 500;
}

.story-content {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 20px;
	font-style: italic;
}

.story-result {
	margin-top: 20px;
}

.result-badge {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-block;
}

.cta-section {
	background: var(--surface-color);
	padding: 40px;
	border-radius: 15px;
	border: 1px solid var(--border-medium);
}

.cta-section h3 {
	color: var(--heading-color);
	margin-bottom: 15px;
}

.cta-section p {
	color: var(--default-color);
	margin-bottom: 25px;
}

@media (max-width: 768px) {
	.success-story-item {
		padding: 20px;
	}

	.story-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

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

/*--------------------------------------------------------------
# Futuristic Benefits Section
--------------------------------------------------------------*/

.futuristic-benefits {
	position: relative;
	background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 50%, #d5dbdb 100%);
	overflow: hidden;
	padding: 100px 0;
	border-top: 3px solid var(--heading-color);
	border-bottom: 3px solid var(--accent-color);
}

.futuristic-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.floating-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			2px 2px at 20px 30px,
			var(--heading-color),
			transparent
		),
		radial-gradient(2px 2px at 40px 70px, var(--accent-color), transparent),
		radial-gradient(1px 1px at 90px 40px, var(--heading-color), transparent),
		radial-gradient(1px 1px at 130px 80px, var(--accent-color), transparent),
		radial-gradient(2px 2px at 160px 30px, var(--heading-color), transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	opacity: 0.3;
}

.gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		var(--accent-light) 0%,
		transparent 25%,
		transparent 75%,
		var(--accent-light) 100%
	);
}

.title-wrapper {
	position: relative;
	z-index: 2;
	text-align: center;
}

.section-badge {
	display: inline-block;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	color: #000;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.futuristic-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
}

.title-line {
	display: block;
	background: linear-gradient(
		45deg,
		var(--default-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.futuristic-subtitle {
	font-size: 1.2rem;
	color: var(--default-color);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.futuristic-card {
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--border-medium);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	backdrop-filter: blur(10px);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(230, 126, 34, 0.1);
	transition: all 0.3s ease;
}

.futuristic-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(230, 126, 34, 0.2);
	border-color: var(--heading-color);
}

.card-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		var(--heading-color),
		var(--accent-color),
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
}

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

.benefit-icon-wrapper {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
}

.icon-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--accent-light), var(--accent-light));
	border-radius: 50%;
}

.benefit-icon {
	position: relative;
	z-index: 2;
	font-size: 2.5rem;
	color: var(--heading-color);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.futuristic-card h3 {
	color: var(--default-color);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.futuristic-card p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: center;
}

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

.tech-indicator {
	display: inline-block;
	background: var(--accent-light);
	color: var(--accent-color);
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 1px solid var(--accent-strong);
}

.process-overview-futuristic {
	position: relative;
	z-index: 2;
	margin-top: 80px;
}

.process-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
	color: var(--default-color);
}

.process-badge {
	display: block;
	background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
	color: #000;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.process-timeline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.process-timeline::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--heading-color),
		var(--accent-color),
		var(--accent-color),
		var(--heading-color)
	);
	z-index: 1;
}

.process-step-futuristic {
	position: relative;
	z-index: 2;
	text-align: center;
	flex: 1;
}

.step-number-futuristic {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 auto 20px;
	border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-content h4 {
	color: var(--default-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.step-content p {
	color: var(--default-color);
	font-size: 0.9rem;
	line-height: 1.4;
}

.step-connector {
	position: absolute;
	top: 30px;
	right: -50%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--heading-color), transparent);
	z-index: 1;
}

.process-step-futuristic:last-child .step-connector {
	display: none;
}

.cta-section-futuristic {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 60px 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 30px;
	border: 2px solid var(--border-medium);
	backdrop-filter: blur(10px);
	margin-top: 80px;
	box-shadow: 0 8px 32px rgba(230, 126, 34, 0.1);
}

.cta-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		var(--heading-color),
		var(--accent-color),
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 32px;
	z-index: -1;
	opacity: 0.3;
}

.cta-section-futuristic h3 {
	color: var(--default-color);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-section-futuristic p {
	color: var(--default-color);
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.btn-futuristic {
	position: relative;
	display: inline-block;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	color: #000;
	padding: 15px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	overflow: hidden;
}

.btn-glow {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
}

/* Responsive Design */
@media (max-width: 768px) {
	.futuristic-title {
		font-size: 2.5rem;
	}

	.futuristic-card {
		padding: 20px;
	}

	.process-timeline {
		flex-direction: column;
		gap: 40px;
	}

	.process-timeline::before {
		display: none;
	}

	.step-connector {
		display: none;
	}

	.cta-section-futuristic {
		padding: 40px 20px;
	}

	.cta-section-futuristic h3 {
		font-size: 2rem;
	}
}

/*--------------------------------------------------------------
# Futuristic About Section
--------------------------------------------------------------*/

.futuristic-about {
	position: relative;
	background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 50%, #d5dbdb 100%);
	overflow: hidden;
	padding: 100px 0;
	border-top: 3px solid var(--accent-color);
	border-bottom: 3px solid var(--heading-color);
}

.futuristic-bg-about {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: polygon(20% 0%, 40% 20%, 20% 40%, 0% 20%),
		polygon(80% 0%, 100% 20%, 80% 40%, 60% 20%),
		polygon(20% 60%, 40% 80%, 20% 100%, 0% 80%),
		polygon(80% 60%, 100% 80%, 80% 100%, 60% 80%);
	background-size:
		100px 100px,
		80px 80px,
		120px 120px,
		90px 90px;
	background-position:
		0% 0%,
		100% 0%,
		0% 100%,
		100% 100%;
	background-repeat: no-repeat;
	opacity: 0.1;
}

.gradient-overlay-about {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--accent-light) 0%,
		transparent 30%,
		transparent 70%,
		var(--accent-light) 100%
	);
}

.title-wrapper-about {
	position: relative;
	z-index: 2;
	text-align: center;
}

.section-badge-about {
	display: inline-block;
	background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
	color: #000;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.futuristic-title-about {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
}

.title-line-about {
	display: block;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-line-about.highlight-about {
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--accent-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.futuristic-subtitle-about {
	font-size: 1.2rem;
	color: var(--default-color);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.about-card-futuristic {
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--border-medium);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	backdrop-filter: blur(10px);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(230, 126, 34, 0.1);
	transition: all 0.3s ease;
}

.about-card-futuristic:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(230, 126, 34, 0.2);
	border-color: var(--heading-color);
}

.card-glow-about {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--accent-color),
		var(--accent-color)
	);
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
}

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

.icon-wrapper-about {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
}

.icon-bg-about {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--accent-light), var(--accent-light));
	border-radius: 50%;
}

.icon-about {
	position: relative;
	z-index: 2;
	font-size: 2.5rem;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.about-card-futuristic h3 {
	color: var(--default-color);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.about-card-futuristic p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: center;
}

.card-footer-about {
	text-align: center;
}

.tech-badge-about {
	display: inline-block;
	background: var(--accent-light);
	color: var(--accent-color);
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 1px solid var(--accent-strong);
}

.mission-statement {
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--border-medium);
	border-radius: 30px;
	padding: 50px;
	backdrop-filter: blur(10px);
	margin-top: 60px;
	box-shadow: 0 8px 32px rgba(230, 126, 34, 0.1);
}

.mission-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--accent-color),
		var(--accent-color)
	);
	border-radius: 32px;
	z-index: -1;
	opacity: 0.3;
}

.mission-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

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

.mission-content p {
	color: var(--default-color);
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.mission-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}

.stat-item-about {
	text-align: center;
}

.stat-number-about {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.stat-label-about {
	color: var(--default-color);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Futuristic FAQ Section
--------------------------------------------------------------*/

.futuristic-faq {
	position: relative;
	background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 50%, #d5dbdb 100%);
	overflow: hidden;
	padding: 100px 0;
	border-top: 3px solid var(--heading-color);
	border-bottom: 3px solid var(--accent-color);
}

.futuristic-bg-faq {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.circuit-pattern {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
			90deg,
			transparent 98%,
			var(--heading-color) 100%
		),
		linear-gradient(0deg, transparent 98%, var(--accent-color) 100%),
		linear-gradient(45deg, transparent 98%, var(--accent-color) 100%);
	background-size:
		50px 50px,
		30px 30px,
		80px 80px;
	background-position:
		0 0,
		25px 25px,
		40px 40px;
	opacity: 0.1;
}

.gradient-overlay-faq {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		var(--accent-light) 0%,
		transparent 25%,
		transparent 75%,
		var(--accent-light) 100%
	);
}

.title-wrapper-faq {
	position: relative;
	z-index: 2;
	text-align: center;
}

.section-badge-faq {
	display: inline-block;
	background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
	color: #000;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.futuristic-title-faq {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
}

.title-line-faq {
	display: block;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-line-faq.highlight-faq {
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--accent-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.futuristic-subtitle-faq {
	font-size: 1.2rem;
	color: var(--default-color);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

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

.faq-item-futuristic {
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--border-medium);
	border-radius: 20px;
	margin-bottom: 20px;
	backdrop-filter: blur(10px);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(230, 126, 34, 0.1);
	transition: all 0.3s ease;
}

.faq-item-futuristic:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(230, 126, 34, 0.15);
	border-color: var(--heading-color);
}

.faq-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--accent-color),
		var(--accent-color)
	);
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
}

.faq-content-wrapper {
	position: relative;
	z-index: 2;
	padding: 30px;
}

.faq-header {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
}

.faq-icon-wrapper-faq {
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, var(--accent-light), var(--accent-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

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

.faq-header h3 {
	color: var(--default-color);
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0;
	flex: 1;
}

.faq-toggle-futuristic {
	width: 30px;
	height: 30px;
	background: var(--accent-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-toggle-futuristic i {
	color: var(--accent-color);
	font-size: 1rem;
}

.faq-content-futuristic {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--accent-light);
}

.faq-content-futuristic p {
	color: var(--default-color);
	line-height: 1.6;
	margin: 0;
}

.faq-active-futuristic .faq-content-futuristic {
	display: block;
}

/* Responsive Design for About and FAQ */
@media (max-width: 768px) {
	.futuristic-title-about,
	.futuristic-title-faq {
		font-size: 2.5rem;
	}

	.about-card-futuristic,
	.faq-content-wrapper {
		padding: 20px;
	}

	.mission-statement {
		padding: 30px 20px;
	}

	.mission-stats {
		gap: 30px;
	}

	.stat-number-about {
		font-size: 2rem;
	}

	.faq-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.faq-header h3 {
		font-size: 1.1rem;
	}
}
