/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@300;400;500;600;700;800&display=swap');

:root {
	--default-font: 'Spectral', serif, system-ui, -apple-system, 'Segoe UI',
		sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
		'Noto Color Emoji';
	--heading-font: 'Spectral', serif;
	--nav-font: 'Spectral', serif;
}

/* Global Colors - Green Energy and Sustainability Theme */
:root {
	--background-color: #515743;
	--default-color: #e8f5e8;
	--heading-color: #312f1d;
	--accent-color: #afa54c;
	--surface-color: #2e2c1a;
	--contrast-color: #ffffff;
	--nav-color: #e8f5e8;
	--nav-hover-color: #afa54c;
	--nav-mobile-background-color: #2e281a;
	--nav-dropdown-background-color: #0a0f0a;
	--nav-dropdown-color: #e8f5e8;
	--nav-dropdown-hover-color: #afa54c;

	/* Green Energy Color Palette */
	--green-primary: #afa54c;
	--green-secondary: #312f1d;
	--green-accent: #66bb6a;
	--green-light: #81c784;
	--green-dark: #1b5e20;
	--green-teal: #26a69a;
	--green-forest: #2e7d32;
	--green-mint: #a5d6a7;
	--green-sage: #8bc34a;
	--green-lime: #cddc39;
	--green-white: #ffffff;
	--green-black: #0a0f0a;
	--green-gray: #2c3e2c;
	--green-light-gray: #f1f8e9;
	--green-dark-gray: #1a2e1a;

	/* Gradient Colors */
	--gradient-primary: linear-gradient(135deg, #afa54c 0%, #312f1d 100%);
	--gradient-secondary: linear-gradient(135deg, #26a69a 0%, #afa54c 100%);
	--gradient-green: linear-gradient(
		135deg,
		#312f1d 0%,
		#afa54c 50%,
		#66bb6a 100%
	);
	--gradient-energy: linear-gradient(
		135deg,
		#afa54c 0%,
		#26a69a 50%,
		#66bb6a 100%
	);
	--gradient-sustainability: linear-gradient(
		135deg,
		#8bc34a 0%,
		#afa54c 25%,
		#26a69a 50%,
		#312f1d 75%,
		#1b5e20 100%
	);
}

/* Color Presets */

.light-background {
	--background-color: #f1f8e9;
	--default-color: #2e7d32;
	--heading-color: #1b5e20;
	--surface-color: #ffffff;
	--contrast-color: #2e7d32;
}

.dark-background {
	--background-color: #0a0f0a;
	--default-color: #e8f5e8;
	--heading-color: #afa54c;
	--surface-color: #1a2e1a;
	--contrast-color: #ffffff;
}

.green-background {
	--background-color: #0a0f0a;
	--default-color: #e8f5e8;
	--heading-color: #afa54c;
	--surface-color: #1a2e1a;
	--contrast-color: #ffffff;
}

.energy-background {
	--background-color: #1a2e1a;
	--default-color: #a5d6a7;
	--heading-color: #66bb6a;
	--surface-color: #2c3e2c;
	--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);
	overflow-x: hidden;
}

/* Green Energy Background Effects */
.green-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(76, 175, 80, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(45, 90, 45, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 40%,
			rgba(38, 166, 154, 0.1) 0%,
			transparent 50%
		);
	animation: float 20s ease-in-out infinite;
}

.energy-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background: var(--gradient-sustainability);
	border-radius: 50%;
	opacity: 0.1;
	animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.1;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 0.2;
	}
}

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;
	border-radius: 50%;
	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 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;
	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: 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;
		transition: 0.3s;
	}

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

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

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

	.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;
		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 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;
		border-radius: 6px;
		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;
		border-radius: 50%;
		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 {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	position: relative;
}

.footer .footer-newsletter {
	background-color: color-mix(in srgb, var(--default-color), transparent 97%);
	padding: 50px 0;
}

.footer .footer-newsletter h4 {
	font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 6px 8px;
	position: relative;
	border-radius: 4px;
	background-color: var(--surface-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
	display: flex;
	transition: 0.3s;
	border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
	border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type='email'] {
	border: 0;
	padding: 4px;
	width: 100%;
	background-color: var(--surface-color);
	color: var(--default-color);
}

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

.footer .footer-newsletter .newsletter-form input[type='submit'] {
	border: 0;
	font-size: 16px;
	padding: 0 20px;
	margin: -7px -8px -7px 0;
	background: var(--accent-color);
	color: var(--contrast-color);
	transition: 0.3s;
	border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type='submit']:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
	padding-top: 50px;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-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 {
	padding: 25px 0;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
	margin-bottom: 0;
}

.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;
	border-radius: 50%;
	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;
	border-radius: 4px;
	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: 60vh;
	position: relative;
	padding: 0 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%, black 50%);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 15px;
	padding: 8px 30px 10px 30px;
	border-radius: 3px;
	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;
	border-radius: 8px;
	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);
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.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;
		transform: scale(1.2);
		border-radius: 25px;
		transition: none;
	}
}

/*--------------------------------------------------------------
# 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: #ffc107;
	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;
	transform: scale(-1, -1);
}

.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: #059652;
	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%);
	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);
}

@media (min-width: 992px) {
	.pricing .featured .pricing-item {
		transform: scale(1.02, 1.1);
	}
}

.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 .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;
	transition: 0.3s;
}

.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;
	transition: 0.3s;
	cursor: pointer;
}

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

.faq .faq-container .faq-item h3:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	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;
	transition: 0.3s;
	color: var(--accent-color);
}

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

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

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

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.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;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
	background: color-mix(in srgb, var(--default-color), transparent 96%);
	padding: 30px;
}

.contact .info-item i {
	font-size: 38px;
	line-height: 0;
	color: var(--accent-color);
}

.contact .info-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 20px 0 10px 0;
}

.contact .info-item p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.contact .php-email-form {
	background: color-mix(in srgb, var(--default-color), transparent 96%);
	padding: 30px;
	height: 100%;
}

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'],
.contact .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: color-mix(
		in srgb,
		var(--background-color),
		transparent 50%
	);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type='text']:focus,
.contact .php-email-form input[type='email']:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--accent-color);
}

.contact .php-email-form input[type='text']::placeholder,
.contact .php-email-form input[type='email']::placeholder,
.contact .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type='submit'] {
	background: var(--accent-color);
	color: var(--contrast-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type='submit']:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

#cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	transform: translateX(-50%);
	background: #dedede;
	color: #333;
	border: none;
	padding: 20px;
	font-family: 'Urbanist', sans-serif;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	border-radius: 25px;
	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;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
	background: #0056b3;
}

#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: #0056b3;
}

#features-slider {
	position: relative;
}

.swiper-slide {
	transition: filter 0.3s ease;
}

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

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

.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;
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
	cursor: default;
	margin: 10px;
}
.card-item:hover {
	box-shadow: 0 8px 24px var(--heading-color);
	transform: translateY(-5px);
}
.card-content {
	display: flex;
	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;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	height: 100%;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.success-story-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.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 rgba(212, 175, 55, 0.2);
}

.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, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
	overflow: hidden;
	padding: 100px 0;
}

.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, #d4af37, transparent),
		radial-gradient(2px 2px at 40px 70px, #ff6b6b, transparent),
		radial-gradient(1px 1px at 90px 40px, #00d4ff, transparent),
		radial-gradient(1px 1px at 130px 80px, #d4af37, transparent),
		radial-gradient(2px 2px at 160px 30px, #ff6b6b, transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: float 20s linear infinite;
	opacity: 0.3;
}

@keyframes float {
	0% {
		transform: translateY(0px) translateX(0px);
	}
	33% {
		transform: translateY(-30px) translateX(30px);
	}
	66% {
		transform: translateY(30px) translateX(-20px);
	}
	100% {
		transform: translateY(0px) translateX(0px);
	}
}

.gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgba(212, 175, 55, 0.1) 0%,
		transparent 25%,
		transparent 75%,
		rgba(255, 107, 107, 0.1) 100%
	);
	animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.6;
	}
}

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

.section-badge {
	display: inline-block;
	background: linear-gradient(45deg, #d4af37, #ff6b6b);
	color: #000;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
	animation: pulse 2s ease-in-out infinite;
}

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

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

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

.title-line.highlight {
	background: linear-gradient(45deg, #d4af37, #ff6b6b, #00d4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
	0%,
	100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.3);
	}
}

.futuristic-subtitle {
	font-size: 1.2rem;
	color: #b8b8b8;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.futuristic-card {
	position: relative;
	background: rgba(26, 26, 46, 0.8);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.futuristic-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: rgba(212, 175, 55, 0.8);
	box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #d4af37, #ff6b6b, #00d4ff, #d4af37);
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.futuristic-card:hover .card-glow {
	opacity: 1;
	animation: rotate 3s linear infinite;
}

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

.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,
		rgba(212, 175, 55, 0.2),
		rgba(255, 107, 107, 0.2)
	);
	border-radius: 50%;
	animation: iconPulse 2s ease-in-out infinite;
}

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

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

.futuristic-card h3 {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.futuristic-card p {
	color: #b8b8b8;
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: center;
}

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

.tech-indicator {
	display: inline-block;
	background: rgba(212, 175, 55, 0.2);
	color: #d4af37;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.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: #ffffff;
}

.process-badge {
	display: block;
	background: linear-gradient(45deg, #00d4ff, #d4af37);
	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, #d4af37, #ff6b6b, #00d4ff, #d4af37);
	z-index: 1;
	animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 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, #d4af37, #ff6b6b);
	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);
	animation: stepPulse 2s ease-in-out infinite;
}

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

.step-content h4 {
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.step-content p {
	color: #b8b8b8;
	font-size: 0.9rem;
	line-height: 1.4;
}

.step-connector {
	position: absolute;
	top: 30px;
	right: -50%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #d4af37, 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(26, 26, 46, 0.6);
	border-radius: 30px;
	border: 1px solid rgba(212, 175, 55, 0.3);
	backdrop-filter: blur(10px);
	margin-top: 80px;
}

.cta-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #d4af37, #ff6b6b, #00d4ff, #d4af37);
	border-radius: 32px;
	z-index: -1;
	opacity: 0.3;
	animation: rotate 4s linear infinite;
}

.cta-section-futuristic h3 {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-section-futuristic p {
	color: #b8b8b8;
	font-size: 1.1rem;
	margin-bottom: 30px;
}

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

.btn-futuristic:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
	color: #000;
}

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

.btn-futuristic:hover .btn-glow {
	left: 100%;
}

/* 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, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
	overflow: hidden;
	padding: 100px 0;
}

.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;
	animation: geometricFloat 15s ease-in-out infinite;
}

@keyframes geometricFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-20px) rotate(2deg);
	}
	66% {
		transform: translateY(10px) rotate(-1deg);
	}
}

.gradient-overlay-about {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.1) 0%,
		transparent 30%,
		transparent 70%,
		rgba(212, 175, 55, 0.1) 100%
	);
	animation: gradientShiftAbout 10s ease-in-out infinite;
}

@keyframes gradientShiftAbout {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.6;
	}
}

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

.section-badge-about {
	display: inline-block;
	background: linear-gradient(45deg, #00d4ff, #d4af37);
	color: #000;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
	animation: pulseAbout 2.5s ease-in-out infinite;
}

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

.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, #ffffff, #00d4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-line-about.highlight-about {
	background: linear-gradient(45deg, #00d4ff, #d4af37, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: textGlowAbout 3.5s ease-in-out infinite;
}

@keyframes textGlowAbout {
	0%,
	100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.4);
	}
}

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

.about-card-futuristic {
	position: relative;
	background: rgba(15, 15, 35, 0.8);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.about-card-futuristic:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: rgba(0, 212, 255, 0.8);
	box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.card-glow-about {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #00d4ff, #d4af37, #ff6b6b, #00d4ff);
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.about-card-futuristic:hover .card-glow-about {
	opacity: 1;
	animation: rotateAbout 3s linear infinite;
}

@keyframes rotateAbout {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.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,
		rgba(0, 212, 255, 0.2),
		rgba(212, 175, 55, 0.2)
	);
	border-radius: 50%;
	animation: iconPulseAbout 2.5s ease-in-out infinite;
}

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

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

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

.about-card-futuristic p {
	color: #b8b8b8;
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: center;
}

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

.tech-badge-about {
	display: inline-block;
	background: rgba(0, 212, 255, 0.2);
	color: #00d4ff;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 1px solid rgba(0, 212, 255, 0.3);
}

.mission-statement {
	position: relative;
	background: rgba(15, 15, 35, 0.6);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 30px;
	padding: 50px;
	backdrop-filter: blur(10px);
	margin-top: 60px;
}

.mission-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #00d4ff, #d4af37, #ff6b6b, #00d4ff);
	border-radius: 32px;
	z-index: -1;
	opacity: 0.3;
	animation: rotateAbout 4s linear infinite;
}

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

.mission-content h3 {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 25px;
}

.mission-content p {
	color: #b8b8b8;
	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: #00d4ff;
	margin-bottom: 10px;
	animation: statPulse 2s ease-in-out infinite;
}

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

.stat-label-about {
	color: #b8b8b8;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

.futuristic-faq {
	position: relative;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
	overflow: hidden;
	padding: 100px 0;
}

.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%, #d4af37 100%),
		linear-gradient(0deg, transparent 98%, #ff6b6b 100%),
		linear-gradient(45deg, transparent 98%, #00d4ff 100%);
	background-size:
		50px 50px,
		30px 30px,
		80px 80px;
	background-position:
		0 0,
		25px 25px,
		40px 40px;
	opacity: 0.1;
	animation: circuitFlow 20s linear infinite;
}

@keyframes circuitFlow {
	0% {
		transform: translateX(0px) translateY(0px);
	}
	100% {
		transform: translateX(50px) translateY(50px);
	}
}

.gradient-overlay-faq {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgba(255, 107, 107, 0.1) 0%,
		transparent 25%,
		transparent 75%,
		rgba(212, 175, 55, 0.1) 100%
	);
	animation: gradientShiftFaq 12s ease-in-out infinite;
}

@keyframes gradientShiftFaq {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.6;
	}
}

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

.section-badge-faq {
	display: inline-block;
	background: linear-gradient(45deg, #ff6b6b, #d4af37);
	color: #000;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
	animation: pulseFaq 3s ease-in-out infinite;
}

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

.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, #ffffff, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-line-faq.highlight-faq {
	background: linear-gradient(45deg, #ff6b6b, #d4af37, #00d4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: textGlowFaq 4s ease-in-out infinite;
}

@keyframes textGlowFaq {
	0%,
	100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.5);
	}
}

.futuristic-subtitle-faq {
	font-size: 1.2rem;
	color: #b8b8b8;
	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(26, 26, 46, 0.8);
	border: 1px solid rgba(255, 107, 107, 0.3);
	border-radius: 20px;
	margin-bottom: 20px;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.faq-item-futuristic:hover {
	border-color: rgba(255, 107, 107, 0.8);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.faq-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #ff6b6b, #d4af37, #00d4ff, #ff6b6b);
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.faq-item-futuristic:hover .faq-glow {
	opacity: 1;
	animation: rotateFaq 3s linear infinite;
}

@keyframes rotateFaq {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.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,
		rgba(255, 107, 107, 0.2),
		rgba(212, 175, 55, 0.2)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.faq-icon-futuristic {
	font-size: 1.5rem;
	color: #ff6b6b;
}

.faq-header h3 {
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0;
	flex: 1;
}

.faq-toggle-futuristic {
	width: 30px;
	height: 30px;
	background: rgba(255, 107, 107, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.faq-toggle-futuristic i {
	color: #ff6b6b;
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.faq-item-futuristic:hover .faq-toggle-futuristic {
	background: rgba(255, 107, 107, 0.4);
	transform: scale(1.1);
}

.faq-content-futuristic {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.faq-content-futuristic p {
	color: #b8b8b8;
	line-height: 1.6;
	margin: 0;
}

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

/*--------------------------------------------------------------
# New Spiritual Design Styles
--------------------------------------------------------------*/

/* Logo Icon */
.logo-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	animation: rotate 10s linear infinite;
}

.logo-icon i {
	font-size: 20px;
	color: var(--green-white);
}

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

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

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

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

.hero-badge {
	display: inline-block;
	background: var(--gradient-green);
	color: var(--green-white);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
	}
	to {
		box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
	}
}

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

.hero-title .title-line {
	display: block;
	color: var(--default-color);
}

.hero-title .title-line.highlight {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 40px;
	color: var(--default-color);
	opacity: 0.9;
}

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

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gradient-primary);
	color: var(--green-white);
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
	color: var(--green-white);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--accent-color);
	padding: 15px 30px;
	border: 2px solid var(--accent-color);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

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

.hero-image img {
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-glow {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: var(--gradient-aura);
	border-radius: 30px;
	opacity: 0.3;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

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

.element {
	position: absolute;
	font-size: 2rem;
	animation: float 6s ease-in-out infinite;
}

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

.element-2 {
	top: 20%;
	right: 10%;
	animation-delay: 1.5s;
}

.element-3 {
	bottom: 20%;
	left: 20%;
	animation-delay: 3s;
}

.element-4 {
	bottom: 10%;
	right: 20%;
	animation-delay: 4.5s;
}

/* Section Headers */
.section-header {
	margin-bottom: 60px;
}

.section-badge {
	display: inline-block;
	background: var(--gradient-secondary);
	color: var(--green-white);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.section-title .title-line {
	display: block;
	color: var(--default-color);
}

.section-title .title-line.highlight {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--default-color);
	opacity: 0.8;
	max-width: 600px;
	margin: 0 auto;
}

/* About Cards */
.about-card {
	background: var(--surface-color);
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	border: 1px solid rgba(76, 175, 80, 0.1);
	height: 100%;
}

.about-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(76, 175, 80, 0.2);
}

.card-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	font-size: 2rem;
	color: var(--green-white);
}

.about-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--heading-color);
}

.about-card p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 0;
}

.card-glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-aura);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.about-card:hover .card-glow {
	opacity: 0.1;
}

/* Practice Cards */
.practice-card {
	background: var(--surface-color);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(76, 175, 80, 0.1);
	height: 100%;
}

.practice-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(76, 175, 80, 0.2);
}

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

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

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

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.practice-card:hover .image-overlay {
	opacity: 1;
}

.image-overlay i {
	font-size: 3rem;
	color: var(--green-white);
}

.practice-content {
	padding: 30px;
}

.practice-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--heading-color);
}

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

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

.practice-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--default-color);
}

.practice-features i {
	color: var(--green-teal);
	font-size: 1.2rem;
}

/* Journey Timeline */
.journey-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.journey-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: var(--gradient-primary);
}

.timeline-item {
	position: relative;
	margin-bottom: 60px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-number {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--spiritual-white);
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.timeline-content {
	background: var(--surface-color);
	padding: 30px;
	border-radius: 20px;
	flex: 1;
	position: relative;
	border: 1px solid rgba(76, 175, 80, 0.1);
}

.timeline-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--heading-color);
}

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

.timeline-icon {
	position: absolute;
	top: -15px;
	right: 20px;
	width: 30px;
	height: 30px;
	background: var(--gradient-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--spiritual-white);
}

/* FAQ Styles */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--surface-color);
	border-radius: 15px;
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid rgba(76, 175, 80, 0.1);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(76, 175, 80, 0.05);
}

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
	color: var(--heading-color);
	flex: 1;
}

.faq-question i {
	font-size: 1.2rem;
	color: var(--green-primary);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 30px 25px;
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-answer p {
	color: var(--default-color);
	line-height: 1.6;
	margin: 0;
	opacity: 0.8;
}

/* Contact Form */
.contact-form {
	background: var(--surface-color);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-form .form-control {
	background: var(--background-color);
	border: 1px solid rgba(76, 175, 80, 0.2);
	border-radius: 10px;
	padding: 15px 20px;
	color: var(--default-color);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus {
	border-color: var(--green-teal);
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
	background: var(--background-color);
	color: var(--default-color);
}

.contact-form .form-control::placeholder {
	color: var(--default-color);
	opacity: 0.6;
}

.contact-info {
	padding: 40px 0;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 40px;
}

.info-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-white);
	font-size: 1.2rem;
	flex-shrink: 0;
}

.info-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--heading-color);
}

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

/* Newsletter Form */
.newsletter-form {
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-input {
	display: flex;
	background: var(--surface-color);
	border-radius: 50px;
	padding: 5px;
	border: 1px solid rgba(76, 175, 80, 0.2);
}

.newsletter-input input {
	flex: 1;
	background: transparent;
	border: none;
	padding: 15px 20px;
	color: var(--default-color);
	font-size: 1rem;
}

.newsletter-input input:focus {
	outline: none;
}

.newsletter-input input::placeholder {
	color: var(--default-color);
	opacity: 0.6;
}

.newsletter-input button {
	background: var(--gradient-primary);
	color: var(--spiritual-white);
	border: none;
	padding: 15px 25px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.newsletter-input button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Footer Updates */
.footer-about .logo-icon {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.footer-about .logo-icon i {
	font-size: 16px;
}

.footer-bottom {
	border-top: 1px solid rgba(76, 175, 80, 0.1);
	padding: 20px 0;
	margin-top: 40px;
}

.footer-bottom p {
	margin: 0;
	color: var(--default-color);
	opacity: 0.6;
}

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

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

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.timeline-item {
		flex-direction: column !important;
		text-align: center;
	}

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

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

	.floating-elements {
		display: none;
	}
}

.faq-active-futuristic .faq-toggle-futuristic i {
	transform: rotate(180deg);
}

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

/* ===============================================
   Contact Info Container Styles
   =============================================== */

.contact-info-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: 100%;
}

/* Contact Quick Section */
.contact-quick {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(76, 175, 80, 0.2);
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.contact-quick:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(76, 175, 80, 0.4);
	transform: translateY(-2px);
}

.contact-quick h3 {
	color: var(--green-primary);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
}

.contact-quick h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(76, 175, 80, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-method::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(76, 175, 80, 0.05) 0%,
		rgba(38, 166, 154, 0.05) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-method:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(76, 175, 80, 0.3);
	transform: translateX(4px);
}

.contact-method:hover::before {
	opacity: 1;
}

.method-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: var(--gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.method-icon i {
	font-size: 1.25rem;
	color: white;
}

.method-content {
	flex: 1;
	position: relative;
	z-index: 2;
}

.method-content h4 {
	color: var(--green-primary);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.method-content p {
	color: var(--default-color);
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.method-note {
	color: var(--green-light);
	font-size: 0.875rem;
	font-style: italic;
}

/* Contact Benefits Section */
.contact-benefits {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(76, 175, 80, 0.2);
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.contact-benefits:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(76, 175, 80, 0.4);
	transform: translateY(-2px);
}

.contact-benefits h3 {
	color: var(--green-primary);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
}

.contact-benefits h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.benefits-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	border: 1px solid rgba(76, 175, 80, 0.1);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(76, 175, 80, 0.3);
	transform: translateX(4px);
}

.benefit-item i {
	color: var(--green-primary);
	font-size: 1.1rem;
	flex-shrink: 0;
}

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

/* Contact CTA Section */
.contact-cta {
	margin-top: auto;
}

.cta-card {
	background: var(--gradient-primary);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.cta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cta-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.cta-card:hover::before {
	opacity: 1;
}

.cta-card h4 {
	color: white;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	position: relative;
	z-index: 2;
}

.cta-card p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

.cta-card .btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
	backdrop-filter: blur(10px);
}

.cta-card .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-secondary i {
	font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-info-container {
		gap: 1.5rem;
	}

	.contact-quick,
	.contact-benefits {
		padding: 1.5rem;
	}

	.contact-quick h3,
	.contact-benefits h3 {
		font-size: 1.3rem;
	}

	.contact-method {
		padding: 1rem;
	}

	.method-icon {
		width: 40px;
		height: 40px;
	}

	.method-icon i {
		font-size: 1.1rem;
	}

	.cta-card {
		padding: 1.5rem;
	}

	.cta-card h4 {
		font-size: 1.2rem;
	}
}

@media (max-width: 576px) {
	.contact-methods {
		gap: 1rem;
	}

	.contact-method {
		flex-direction: column;
		text-align: center;
		gap: 0.75rem;
	}

	.method-icon {
		align-self: center;
	}

	.benefits-list {
		gap: 0.75rem;
	}

	.benefit-item {
		padding: 0.5rem 0.75rem;
	}
}
