/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--accent-color: #198b15;
	--bg-color: #0f1419;
	--nav-color: #1a1f3a;
	--background-color: #0c1c0e;
	--surface-color: #151b26;
	--default-color: #1a6b1e;
	--heading-color: #edf6e8;
	--contrast-color: #b8bcc8;
	--nav-hover-color: #20a026;
	--nav-mobile-background-color: #153416;
	--nav-dropdown-background-color: #1a3a1e;
	--nav-dropdown-color: #e8eaf6;
	--nav-dropdown-hover-color: #1f8b15;
	--dark-burgundy: #114a0e;
	--light-burgundy: #2fa020;
}

/* Light background text styling - Updated for dark theme */
.light-background h1,
.light-background h2,
.light-background h3,
.light-background h4,
.light-background h5,
.light-background h6 {
	color: var(--heading-color) !important;
}

.light-background p,
.light-background li,
.light-background span {
	color: var(--contrast-color) !important;
}

.light-background .content {
	color: var(--contrast-color) !important;
}

/* Specific styling for about sections with light background */
.light-background .about section,
.light-background .section {
	background-color: var(--surface-color) !important;
}

.light-background .section-title h2 {
	color: var(--heading-color) !important;
}

.light-background .section-title p {
	color: var(--contrast-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	color: var(--bg-color);
	background-color: var(--heading-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .logo {
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.header .logo:hover {
	transform: translateY(-2px);
}

.logo-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* border-radius: 50%; */
	/* overflow: hidden; */
	/* background: var(--background-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.logo-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--background-color);
	line-height: 1.2;
	margin: 0;
}

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

.header .logo h1,
.header .logo h2 {
	font-size: 30px;
	margin: 0;
	font-weight: 400;
}

.nav-menu-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 8px;
}

.nav-link {
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
	color: var(--background-color);
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--accent-color);
	background: rgba(139, 21, 56, 0.15);
}

.btn-header-cta {
	padding: 10px 24px;
	background: var(--accent-color);
	color: var(--bg-color);
	border-radius: 6px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-left: 16px;
	box-shadow: 0 2px 8px rgba(139, 21, 56, 0.3);
}

.btn-header-cta:hover {
	background: var(--nav-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(139, 21, 56, 0.4);
	color: var(--bg-color);
}

/* Hide CTA button on mobile devices */
@media (max-width: 1199.98px) {
	.btn-header-cta {
		display: none !important;
	}
}

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

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

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

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

	.header .navmenu {
		order: 3;
	}
}

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

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

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

	.navmenu li {
		position: relative;
	}

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

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

	.navmenu li a,
	.navmenu .nav-link {
		border-bottom: 2px solid transparent;
		margin: 0 1rem;
		border-radius: 4px;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus,
	.navmenu .nav-link:hover,
	.navmenu .nav-link.active {
		color: var(--accent-color);
		border-color: var(--accent-color);
		background-color: rgba(37, 99, 235, 0.1);
	}

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

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

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

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

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

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

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

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

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

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

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

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 20px;
		margin: 0;
		border-radius: 20px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero .download-btn {
	color: var(--contrast-color);
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 15px;
	padding: 8px 30px 10px 30px;
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
}

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

.hero .download-btn:hover {
	background: linear-gradient(
		135deg,
		var(--default-color),
		var(--accent-color)
	);
	color: var(--contrast-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Features Images */
.features-image-container {
	position: relative;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(139, 0, 0, 0.15);
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.features-image-container:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(139, 0, 0, 0.25);
}

.features-main-img,
.features-secondary-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.features-image-container:hover .features-main-img,
.features-image-container:hover .features-secondary-img {
	transform: scale(1.1);
}

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

.features-image-container:hover .features-image-overlay {
	opacity: 1;
}

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

.overlay-content h4 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
	font-size: 1rem;
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.features .icon-box {
	display: flex;
	align-items: center;
	width: 30%;
	margin: 1rem;
}

.features .icon-box {
	background: rgba(139, 21, 56, 0.15);
	border: 2px solid var(--accent-color);
	border-radius: 1rem;
	padding: 0.5rem 0;
	backdrop-filter: blur(10px);
}

.features .icon-box:hover {
	border-color: var(--default-color);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
	transform: translateY(-3px);
	background: rgba(139, 21, 56, 0.25);
}

.faq-elem:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.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;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.feature-item-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
}

.feature-item {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 5px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 1rem;
	background-color: var(--background-color);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	font-size: 40px;
	color: var(--accent-color);
	margin-right: 15px;
}

.feature-text {
	font-size: 16px;
	color: #333;
	line-height: 1.5;
}

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

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

/* Styles pour le bloc Témoignages */
.testimonials-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f0fdfa, #e6fffa);
	position: relative;
}

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

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

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

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

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

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

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

.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: var(--contrast-color);
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	display: inline-block;
	padding: 8px 35px 10px 35px;
	border: none;
	transition: none;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--heading-font);
	transition: 0.3s;
	border-radius: 0.5rem;
	box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
}

.pricing .buy-btn:hover {
	background: linear-gradient(
		135deg,
		var(--default-color),
		var(--accent-color)
	);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.5);
	color: var(--contrast-color);
}

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

.pricing .featured .pricing-item {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4);
}

.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;
	border-radius: 1rem;
}

.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;
	color: var(--heading-color);
	background-color: var(--surface-color);
	border-color: rgba(139, 21, 56, 0.3);
}

.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: var(--contrast-color);
	opacity: 0.6;
}

.contact .php-email-form button[type='submit'] {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	color: var(--bg-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
}

.contact .php-email-form button[type='submit']:hover {
	background: linear-gradient(
		135deg,
		var(--default-color),
		var(--accent-color)
	);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.5);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
	padding: 60px 0;
	background-color: var(--background-color);
}

#cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--bg-color), var(--surface-color));
	color: var(--heading-color);
	border: 3px solid var(--accent-color);
	padding: 25px;
	font-family: 'Rhodium Libre', serif;
	box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
	font-size: 14px;
	max-width: 450px;
	z-index: 1000;
	display: none;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
	border-radius: 15px;
	backdrop-filter: blur(10px);
}

#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: linear-gradient(
		135deg,
		var(--accent-color),
		var(--light-burgundy)
	);
	color: var(--bg-color);
	border: none;
	padding: 12px 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#cookie-popup button:hover {
	background: linear-gradient(
		135deg,
		var(--light-burgundy),
		var(--accent-color)
	);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* New Section Styles */

/* About Section */
.about-features {
	margin-top: 40px;
}

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

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

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

.feature-content h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 8px;
}

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

.about-visual {
	position: relative;
	height: 400px;
}

.progress-ring {
	position: relative;
	width: 100%;
	height: 100%;
}

.ring {
	position: absolute;
	border: 3px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.15),
		rgba(26, 31, 58, 0.1)
	);
	backdrop-filter: blur(10px);
}

.ring-1 {
	width: 120px;
	height: 120px;
	top: 20%;
	left: 20%;
	animation: rotate 20s linear infinite;
}

.ring-2 {
	width: 80px;
	height: 80px;
	top: 50%;
	right: 30%;
	animation: rotate 15s linear infinite reverse;
}

.ring-3 {
	width: 100px;
	height: 100px;
	bottom: 20%;
	left: 50%;
	animation: rotate 25s linear infinite;
}

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

.ring-content i {
	font-size: 1.5rem;
	color: var(--default-color);
	margin-bottom: 5px;
}

.ring-content span {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

/* Features Section */
.feature-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border: 2px solid var(--accent-color);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(139, 21, 56, 0.4);
	border-color: var(--default-color);
}

.feature-card .feature-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
}

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

.feature-card h4 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.feature-card p {
	color: var(--contrast-color);
	line-height: 1.6;
	margin-bottom: 20px;
}

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

.tag {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

/* Contact Section */
.contact-form {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border: 2px solid var(--accent-color);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
}

.contact-form .form-control {
	background: var(--surface-color);
	border: 2px solid rgba(139, 21, 56, 0.3);
	border-radius: 10px;
	color: var(--heading-color);
	padding: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--default-color);
	box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.3);
	color: var(--contrast-color);
}

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

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

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 2px solid var(--accent-color);
	padding: 25px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--default-color),
		var(--accent-color)
	);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

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

.contact-details h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 5px;
}

.contact-details p {
	color: var(--contrast-color);
	margin: 0;
	line-height: 1.4;
}

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

	.hero-stats {
		flex-direction: column;
		gap: 20px;
	}

	.hero-buttons {
		flex-direction: column;
	}

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

	.floating-cards .card {
		position: relative;
		margin-bottom: 20px;
	}

	.contact-item {
		flex-direction: column;
		text-align: center;
	}
}

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

#cookie-popup .popup-message a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
	color: var(--light-burgundy);
	border-bottom-color: var(--light-burgundy);
	text-shadow: 0 1px 2px rgba(139, 0, 0, 0.2);
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	text-align: center;
}

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

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

.about_elem {
	margin-bottom: 2rem;
}

.swiper-container {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	padding: 0 3%;
}

.swiper-wrapper {
	display: flex;
	transition: transform 0.3s ease;
}

.swiper-slide {
	width: 33.33%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.swiper-slide-active {
	opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
	opacity: 0.5;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	padding: 10px;
	border-radius: 50%;
	font-size: 24px;
	z-index: 10;
	cursor: pointer;
}

.swiper-button-prev {
	left: 10px;
}

.swiper-button-next {
	right: 10px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

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

.lead {
	color: var(--contrast-color);
	font-weight: 500;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--bg-color) 100%
	);
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

/* Animated Background Shapes */
.hero-animated-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.bg-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.15),
		rgba(26, 31, 58, 0.1)
	);
	animation: floatShape 20s ease-in-out infinite;
}

.bg-shape-1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.bg-shape-2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: 10%;
	animation-delay: 2s;
}

.bg-shape-3 {
	width: 250px;
	height: 250px;
	bottom: 15%;
	left: 15%;
	animation-delay: 4s;
}

.bg-shape-4 {
	width: 180px;
	height: 180px;
	top: 30%;
	right: 25%;
	animation-delay: 6s;
}

.bg-shape-5 {
	width: 220px;
	height: 220px;
	bottom: 30%;
	right: 5%;
	animation-delay: 8s;
}

@keyframes floatShape {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}
	25% {
		transform: translate(30px, -30px) scale(1.1);
		opacity: 0.5;
	}
	50% {
		transform: translate(-20px, 20px) scale(0.9);
		opacity: 0.4;
	}
	75% {
		transform: translate(20px, 30px) scale(1.05);
		opacity: 0.5;
	}
}

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

.hero-badge {
	display: inline-block;
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--light-burgundy)
	);
	color: var(--bg-color);
	padding: 8px 20px;
	/* border-radius: 25px; */
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

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

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

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

.hero-btn-primary,
.hero-btn-secondary {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-btn-primary::before,
.hero-btn-secondary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	/* border-radius: 50%; */
	/* background: rgba(255, 255, 255, 0.2); */
	transform: translate(-50%, -50%);
	transition:
		width 0.6s,
		height 0.6s;
}

.hero-btn-primary:hover::before,
.hero-btn-secondary:hover::before {
	width: 300px;
	height: 300px;
}

.hero-stats {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.hero-stat-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	flex: 1;
	min-width: 150px;
}

.hero-stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
	background: rgba(255, 255, 255, 1);
}

.stat-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-color);
	font-size: 1.5rem;
}

.stat-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark-burgundy);
	margin: 0;
	line-height: 1;
}

.stat-content p {
	font-size: 0.9rem;
	color: var(--dark-burgundy);
	margin: 5px 0 0 0;
}

.btn-primary {
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--light-burgundy)
	);
	border: none;
	color: var(--bg-color);
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
	/* border-radius: 8px; */
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
	color: var(--bg-color);
}

.btn-outline-secondary {
	border: 2px solid var(--default-color);
	color: var(--default-color);
	background: transparent;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
	background: var(--default-color);
	color: var(--bg-color);
	transform: translateY(-2px);
}

/* Floating Cards */
.floating-cards {
	position: relative;
	height: 400px;
	width: 100%;
}

.floating-cards .card {
	position: absolute;
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(26, 35, 50, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 15px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--contrast-color);
	font-weight: 600;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	animation: float 6s ease-in-out infinite;
}

.floating-cards .card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(139, 21, 56, 0.3);
}

.floating-cards .card i {
	font-size: 2rem;
	color: var(--default-color);
	margin-bottom: 10px;
}

.floating-cards .card.card-1 {
	top: 20px;
	left: 20px;
	animation-delay: 0s;
}

.floating-cards .card.card-2 {
	top: 80px;
	right: 40px;
	animation-delay: 1.5s;
}

.floating-cards .card.card-3 {
	bottom: 100px;
	left: 60px;
	animation-delay: 3s;
}

.floating-cards .card.card-4 {
	bottom: 20px;
	right: 20px;
	animation-delay: 4.5s;
}

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

/* Section Badges */
.section-badge {
	display: inline-block;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	color: var(--bg-color);
	padding: 8px 20px;

	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

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

/* Features Section */
.features {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	background: linear-gradient(
			135deg,
			rgba(15, 20, 25, 0.85),
			rgba(10, 14, 20, 0.85)
		),
		url('../img/bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.features-animated-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.feature-bg-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.2),
		rgba(26, 31, 58, 0.15)
	);
	filter: blur(50px);
	animation: featureFloat 18s ease-in-out infinite;
}

.feature-shape-1 {
	width: 450px;
	height: 450px;
	top: -100px;
	left: -100px;
	animation-delay: 0s;
}

.feature-shape-2 {
	width: 350px;
	height: 350px;
	top: 25%;
	right: -80px;
	animation-delay: 3s;
}

.feature-shape-3 {
	width: 400px;
	height: 400px;
	bottom: -100px;
	left: 15%;
	animation-delay: 6s;
}

.feature-shape-4 {
	width: 300px;
	height: 300px;
	top: 55%;
	right: 12%;
	animation-delay: 9s;
}

.feature-shape-5 {
	width: 380px;
	height: 380px;
	bottom: 15%;
	right: -60px;
	animation-delay: 12s;
}

@keyframes featureFloat {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
		opacity: 0.5;
	}
	33% {
		transform: translate(50px, -50px) rotate(120deg) scale(1.15);
		opacity: 0.7;
	}
	66% {
		transform: translate(-40px, 40px) rotate(240deg) scale(0.95);
		opacity: 0.6;
	}
}

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

.features .section-title,
.features .section-description {
	position: relative;
	z-index: 2;
}

/* Feature Cards New */
.feature-card-new {
	position: relative;
	height: 100%;
	/* border-radius: 30px; */
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	background: var(--bg-color);
	margin-bottom: 30px;
}

.feature-card-image-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	border-radius: 30px 30px 0 0;
}

.feature-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-content {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	padding: 35px;
	position: relative;
	z-index: 2;
	transition: all 0.5s ease;
	border-radius: 0 0 30px 30px;
}

.feature-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.feature-card-badge {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
	transition: all 0.4s ease;
}

.feature-card-content h3 {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 18px;
	transition: all 0.3s ease;
	line-height: 1.3;
}

.feature-card-content p {
	color: var(--contrast-color);
	line-height: 1.8;
	margin-bottom: 28px;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.feature-card-features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 30px;
}

.feature-card-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--contrast-color);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	padding: 8px 0;
}

.feature-card-feature i {
	color: var(--accent-color);
	font-size: 1.2rem;
	transition: all 0.4s ease;
	flex-shrink: 0;
}

.feature-card-feature span {
	font-weight: 500;
	font-size: 0.95rem;
}

.feature-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--accent-color);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	padding: 12px 28px;
	border-radius: 12px;
	background: #fff;
	border: 2px solid var(--accent-color);
	position: relative;
	overflow: hidden;
}

.feature-card-cta:hover {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);

	border-color: var(--accent-color);
}

.feature-card-cta i {
	transition: transform 0.4s ease;
	font-size: 1.1rem;
}

.feature-card-cta:hover i {
	transform: translateX(5px);
}

.feature-card-hover-effect {
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.2),
		rgba(26, 31, 58, 0.15)
	);
	border-radius: 33px;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
	pointer-events: none;
	filter: blur(15px);
}

.feature-card-new:hover .feature-card-hover-effect {
	opacity: 1;
}

/* Feature Cards */
.feature-card,
.tech-card {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(26, 35, 50, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.feature-card:hover,
.tech-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(139, 21, 56, 0.3);
	border-color: var(--accent-color);
}

.feature-icon,
.tech-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-icon i,
.tech-icon i {
	font-size: 2rem;
	color: var(--bg-color);
}

.feature-card h4,
.tech-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.feature-card p,
.tech-card p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 20px;
}

.feature-tags,
.tech-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tag {
	background: rgba(139, 21, 56, 0.25);
	color: var(--default-color);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

/* About Features */
.about-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

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

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

.feature-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 5px;
}

.feature-content p {
	color: var(--contrast-color);
	opacity: 0.8;
	margin: 0;
	font-size: 0.95rem;
}

/* Progress Ring */
.progress-ring {
	position: relative;
	width: 300px;
	height: 300px;
	margin: 0 auto;
}

.ring {
	position: absolute;
	border: 3px solid var(--default-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: rotate 20s linear infinite;
}

.ring-1 {
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 0s;
}

.ring-2 {
	width: 150px;
	height: 150px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -7s;
}

.ring-3 {
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -14s;
}

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

.ring-content i {
	font-size: 1.5rem;
	color: var(--default-color);
	margin-bottom: 5px;
	display: block;
}

.ring-content span {
	font-size: 0.9rem;
	font-weight: 600;
}

@keyframes rotate {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

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

.faq-item {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(26, 35, 50, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 15px;
	margin-bottom: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.faq-item:hover {
	border-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(139, 21, 56, 0.2);
}

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

.faq-header:hover {
	background: rgba(139, 21, 56, 0.1);
}

.faq-header h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--heading-color);
	margin: 0;
}

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

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

.faq-content {
	padding: 0 25px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-content {
	padding: 0 25px 25px;
	max-height: 200px;
}

.faq-content p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin: 0;
}

/* Step Cards */
.step-card {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(26, 35, 50, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	position: relative;
	text-align: center;
}

.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(139, 21, 56, 0.3);
	border-color: var(--accent-color);
}

.step-card.featured {
	border-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.step-number {
	position: absolute;
	top: -15px;
	left: 30px;
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	color: var(--bg-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
}

.step-icon i {
	font-size: 2rem;
	color: var(--bg-color);
}

.step-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.step-card p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 20px;
}

.step-features {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.step-feature {
	background: rgba(139, 21, 56, 0.25);
	color: var(--default-color);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

/* Testimonials Section */
.testimonials {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--bg-color) 100%
	);
}

.testimonials-animated-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.testimonial-bg-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.12),
		rgba(26, 31, 58, 0.08)
	);
	animation: testimonialFloat 25s ease-in-out infinite;
}

.testimonial-shape-1 {
	width: 400px;
	height: 400px;
	top: -100px;
	left: -100px;
	animation-delay: 0s;
}

.testimonial-shape-2 {
	width: 300px;
	height: 300px;
	top: 20%;
	right: -50px;
	animation-delay: 5s;
}

.testimonial-shape-3 {
	width: 350px;
	height: 350px;
	bottom: -100px;
	left: 20%;
	animation-delay: 10s;
}

.testimonial-shape-4 {
	width: 250px;
	height: 250px;
	bottom: 10%;
	right: 10%;
	animation-delay: 15s;
}

@keyframes testimonialFloat {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
		opacity: 0.3;
	}
	33% {
		transform: translate(50px, -50px) rotate(120deg);
		opacity: 0.5;
	}
	66% {
		transform: translate(-30px, 30px) rotate(240deg);
		opacity: 0.4;
	}
}

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

/* Testimonial Cards */
.testimonial-card-new {
	position: relative;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card-inner {
	background: #fff;

	padding: 35px;
	height: 100%;
	position: relative;
	z-index: 2;
	transition: all 0.4s ease;
}

.testimonial-card-hover-effect {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.15),
		rgba(26, 31, 58, 0.1)
	);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

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

.testimonial-quote-icon {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 4rem;
	color: rgba(37, 99, 235, 0.1);
	line-height: 1;
	transition: all 0.4s ease;
}

.testimonial-card-new:hover .testimonial-quote-icon {
	color: rgba(37, 99, 235, 0.2);
	transform: scale(1.2) rotate(5deg);
}

.testimonial-card {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(26, 35, 50, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(139, 21, 56, 0.3);
	border-color: var(--accent-color);
}

.testimonial-rating {
	display: flex;
	gap: 5px;
	margin-bottom: 20px;
	margin-top: 10px;
}

.testimonial-rating i {
	color: #ffd700;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.testimonial-card-new:hover .testimonial-rating i {
	transform: scale(1.2);
	color: #ffed4e;
}

.testimonial-text {
	color: var(--dark-burgundy);
	opacity: 0.9;
	line-height: 1.8;
	margin-bottom: 25px;
	font-style: italic;
	font-size: 1rem;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.testimonial-card-new:hover .testimonial-text {
	opacity: 1;
	color: var(--heading-color);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.testimonial-card-new:hover .testimonial-author {
	transform: translateX(5px);
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.testimonial-card-new:hover .author-avatar {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.author-avatar i {
	font-size: 2rem;
	color: var(--bg-color);
}

.author-info h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark-burgundy);
	margin: 0 0 5px 0;
}

.author-info span {
	color: var(--dark-burgundy);
	opacity: 0.7;
	font-size: 0.9rem;
}

/* Contact Form */
.php-email-form .form-control {
	background: rgba(26, 35, 50, 0.8);
	border: 2px solid var(--default-color);
	border-radius: 10px;
	color: var(--contrast-color);
	padding: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.php-email-form .form-control:focus {
	background: rgba(26, 35, 50, 0.9);
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
	color: var(--contrast-color);
}

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

.info-item {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(26, 35, 50, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.info-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(139, 21, 56, 0.3);
	border-color: var(--accent-color);
}

.info-item i {
	font-size: 2.5rem;
	color: var(--default-color);
	margin-bottom: 15px;
}

.info-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.info-item p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin: 0;
}

/* Hero Visual */
.hero-images-container {
	position: relative;
	height: 500px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero-image-main {
	position: relative;
	height: 60%;
	border-radius: 20px;
	overflow: hidden;
}

/* Hero Image Cards */
.hero-image-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.hero-card-main {
	height: 500px;
	margin-bottom: 20px;
}

.hero-card-secondary {
	height: 300px;
}

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

.hero-main-img,
.hero-secondary-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.85),
		rgba(26, 31, 58, 0.75)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.card-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	color: var(--bg-color);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
	z-index: 2;
}

.hero-image-card:hover .card-content {
	opacity: 1;
	transform: translateY(0);
}

.card-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 16px;

	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 15px;
	backdrop-filter: blur(10px);
}

.card-badge i {
	color: #ffd700;
}

.card-content h4 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.card-stats {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.card-stat {
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.9rem;
	font-weight: 500;
	backdrop-filter: blur(5px);
}

.card-stat i {
	color: #ffd700;
	font-size: 1rem;
}

.hero-achievements {
	text-align: center;
	color: var(--bg-color);
	padding: 20px;
}

.achievement-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 15px;
	backdrop-filter: blur(10px);
}

.achievement-badge i {
	color: #ffd700;
}

.hero-achievements h4 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-achievements p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.achievement-stats {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.achievement-stat {
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.9rem;
	font-weight: 500;
	backdrop-filter: blur(5px);
}

.achievement-stat i {
	color: #ffd700;
	font-size: 1rem;
}

.floating-tech-icons {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.tech-icon-item {
	position: absolute;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--accent-color);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: techIconFloat 4s ease-in-out infinite;
	transition: all 0.3s ease;
}

.hero-image-card:hover .tech-icon-item {
	transform: scale(1.2);
	background: var(--accent-color);
	color: var(--bg-color);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.tech-icon-item:nth-child(1) {
	top: 15%;
	left: 10%;
	animation-delay: 0s;
}

.tech-icon-item:nth-child(2) {
	top: 25%;
	right: 15%;
	animation-delay: 1s;
}

.tech-icon-item:nth-child(3) {
	bottom: 30%;
	left: 20%;
	animation-delay: 2s;
}

.tech-icon-item:nth-child(4) {
	bottom: 15%;
	right: 10%;
	animation-delay: 3s;
}

@keyframes techIconFloat {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(10deg);
	}
}

.floating-tech-icons {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 20px;
}

.tech-icon-item {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: iconFloat 3s ease-in-out infinite;
	box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.tech-icon-item i {
	font-size: 1.5rem;
	color: var(--accent-color);
}

.tech-icon-item:nth-child(1) {
	animation-delay: 0s;
}
.tech-icon-item:nth-child(2) {
	animation-delay: 0.5s;
}
.tech-icon-item:nth-child(3) {
	animation-delay: 1s;
}
.tech-icon-item:nth-child(4) {
	animation-delay: 1.5s;
}

@keyframes iconFloat {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* About Cards */
.about-card {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(45, 27, 78, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	position: relative;
	text-align: center;
}

.about-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
	border-color: var(--accent-color);
}

.about-card.featured {
	border-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.about-card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.about-card-icon i {
	font-size: 2rem;
	color: var(--bg-color);
}

.about-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.about-card p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 20px;
}

.about-card-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, var(--default-color), #ffed4e);
	color: var(--background-color);
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.about-card-badge i {
	font-size: 1.1rem;
}

/* Contact Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--heading-color);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group .form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid var(--surface-color);
	border-radius: 8px;
	background: var(--surface-color);
	color: var(--heading-color);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group .form-control:focus {
	outline: none;
	border-color: var(--default-color);
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
	background: var(--background-color);
}

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

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

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

/* Background Images for Sections */
.about.section {
	background-image: url('../img/bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.about.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 11, 46, 0.8);
	z-index: 1;
}

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

/* How It Works Section */
.how-it-works {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
}

.how-it-works-animated-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.how-bg-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.2),
		rgba(26, 31, 58, 0.15)
	);
	filter: blur(40px);
	animation: howFloat 20s ease-in-out infinite;
}

.how-shape-1 {
	width: 500px;
	height: 500px;
	top: -150px;
	right: -150px;
	animation-delay: 0s;
}

.how-shape-2 {
	width: 400px;
	height: 400px;
	top: 30%;
	left: -100px;
	animation-delay: 4s;
}

.how-shape-3 {
	width: 450px;
	height: 450px;
	bottom: -120px;
	right: 15%;
	animation-delay: 8s;
}

.how-shape-4 {
	width: 350px;
	height: 350px;
	bottom: 25%;
	left: 10%;
	animation-delay: 12s;
}

@keyframes howFloat {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
		opacity: 0.4;
	}
	25% {
		transform: translate(-60px, 60px) rotate(90deg) scale(1.2);
		opacity: 0.6;
	}
	50% {
		transform: translate(40px, -40px) rotate(180deg) scale(0.9);
		opacity: 0.5;
	}
	75% {
		transform: translate(-40px, 50px) rotate(270deg) scale(1.15);
		opacity: 0.6;
	}
}

.how-it-works .container {
	position: relative;
	z-index: 2;
}

.how-it-works .section-title,
.how-it-works .section-description {
	position: relative;
	z-index: 2;
}

/* Step Cards New */
.step-card-new {
	position: relative;
	height: 100%;
	border-radius: 30px;
	overflow: visible;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	margin-bottom: 30px;
}

.step-card-new:hover {
	transform: translateY(-20px);
}

.step-card-featured {
	border: 4px solid var(--accent-color);
	box-shadow: 0 15px 40px rgba(139, 21, 56, 0.35);
}

.step-card-featured:hover {
	box-shadow: 0 25px 70px rgba(37, 99, 235, 0.4);
	transform: translateY(-25px) scale(1.02);
}

.step-card-inner {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	padding: 50px 35px 40px;
	height: 100%;
	position: relative;
	z-index: 2;
	transition: all 0.5s ease;
	border-radius: 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 2px solid rgba(139, 21, 56, 0.2);
}

.step-card-new:hover .step-card-inner {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--surface-color)
	);
	box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
	border-color: rgba(37, 99, 235, 0.3);
}

.step-number-new {
	position: absolute;
	top: -25px;
	left: 35px;
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.8rem;
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.5);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 10;
	border: 4px solid #ffffff;
}

.step-card-new:hover .step-number-new {
	transform: scale(1.25) rotate(10deg);
	box-shadow: 0 12px 35px rgba(139, 21, 56, 0.6);
	top: -30px;
}

.step-card-featured .step-number-new {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: var(--heading-color);
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.step-card-featured:hover .step-number-new {
	box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.step-icon-new {
	width: 120px;
	height: 120px;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.12),
		rgba(26, 31, 58, 0.08)
	);
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto 30px;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 3px solid rgba(139, 21, 56, 0.25);
	position: relative;
}

.step-icon-new::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 35px;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.15),
		rgba(26, 31, 58, 0.1)
	);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}

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

.step-card-new:hover .step-icon-new {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-color: var(--accent-color);
	transform: scale(1.15) rotate(-8deg);
	box-shadow: 0 15px 40px rgba(139, 21, 56, 0.45);
}

.step-icon-new i {
	font-size: 3rem;
	color: var(--accent-color);
	transition: all 0.5s ease;
	position: relative;
	z-index: 1;
}

.step-card-new:hover .step-icon-new i {
	color: var(--bg-color);
	transform: scale(1.2) rotate(5deg);
}

.step-card-inner h4 {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 18px;
	text-align: center;
	transition: all 0.3s ease;
	line-height: 1.3;
}

.step-card-new:hover .step-card-inner h4 {
	color: var(--accent-color);
	transform: translateY(-3px);
}

.step-card-inner p {
	color: var(--contrast-color);
	line-height: 1.8;
	margin-bottom: 30px;
	text-align: center;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.step-card-new:hover .step-card-inner p {
	color: var(--heading-color);
}

.step-features-new {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 25px;
}

.step-feature-new {
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.15),
		rgba(26, 31, 58, 0.1)
	);
	color: var(--accent-color);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 2px solid rgba(139, 21, 56, 0.3);
	position: relative;
	overflow: hidden;
}

.step-feature-new::before {
	content: '';
	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;
}

.step-card-new:hover .step-feature-new::before {
	left: 100%;
}

.step-card-new:hover .step-feature-new {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);
	border-color: var(--accent-color);
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.step-card-hover-effect {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.25),
		rgba(26, 31, 58, 0.15)
	);
	border-radius: 32px;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
	pointer-events: none;
	filter: blur(10px);
}

.step-card-new:hover .step-card-hover-effect {
	opacity: 1;
}

/* Ensure text is readable on background images */
.about.section .section-title,
.about.section .section-description,
.about.section h4,
.about.section p,
.about.section .about-card,
.about.section .about-card h4,
.about.section .about-card p {
	color: var(--default-color) !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced card visibility on background images */
.about.section .about-card {
	background: rgba(45, 27, 78, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 215, 0, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.footer {
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
	color: var(--heading-color);
	padding: 4rem 0 2rem;
	position: relative;
	overflow: hidden;
	border-top: 3px solid var(--accent-color);
}

.footer-top {
	position: relative;
	z-index: 2;
	margin-bottom: 2rem;
}

.footer-logo-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.5rem;
}

.footer-logo-img {
	width: 60px;
	height: 60px;

	object-fit: cover;
}

.footer-brand-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-brand-text h3 {
	color: var(--accent-color);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
}

.footer-tagline {
	color: var(--contrast-color);
	font-size: 0.85rem;
	margin: 0;
	font-weight: 400;
}

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

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--contrast-color);
	font-size: 0.95rem;
}

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

.footer-links-title {
	color: var(--accent-color);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

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

.footer-links-list a {
	color: var(--contrast-color);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links-list a:hover {
	color: var(--accent-color);
	padding-left: 5px;
}

.newsletter-text {
	color: var(--contrast-color);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.newsletter-input-wrapper {
	display: flex;
	gap: 0;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
	flex: 1;
	padding: 12px 16px;
	border: none;
	border-right: none;
	border-radius: 6px 0 0 6px;
	background: var(--surface-color);
	color: var(--heading-color);
	font-size: 0.95rem;
	outline: none;
	transition: all 0.3s ease;
}

.newsletter-input:focus {
	border-color: var(--nav-color);
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.2);
}

.newsletter-btn {
	padding: 12px 20px;
	background: var(--accent-color);
	color: var(--bg-color);
	border: 2px solid var(--accent-color);
	border-left: none;
	border-radius: 0 6px 6px 0;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-btn:hover {
	background: var(--nav-color);
	border-color: var(--nav-color);
	transform: scale(1.05);
}

.newsletter-btn i {
	font-size: 1.1rem;
}

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

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

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.footer-logo img {
	margin-right: 1rem;
	border: 3px solid var(--accent-color);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.footer-logo img:hover {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.footer-logo h3 {
	color: var(--accent-color);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	text-shadow: 0 2px 4px rgba(139, 0, 0, 0.1);
}

.footer-description {
	color: var(--contrast-color);
	line-height: 1.6;
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

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

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: rgba(139, 0, 0, 0.1);
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	color: var(--accent-color);
	font-size: 1.2rem;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(139, 0, 0, 0.1);
}

.social-link:hover {
	background: var(--accent-color);
	color: var(--bg-color);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.footer-links h4 {
	color: var(--accent-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

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

.footer-links a {
	color: var(--contrast-color);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
	font-weight: 500;
}

.footer-links a::before {
	content: '→';
	position: absolute;
	left: -20px;
	opacity: 0;
	transition: all 0.3s ease;
	color: var(--accent-color);
	font-weight: bold;
}

.footer-links a:hover {
	color: var(--accent-color);
	padding-left: 20px;
	font-weight: 600;
}

.footer-links a:hover::before {
	opacity: 1;
	left: 0;
}

.footer-newsletter h4 {
	color: var(--accent-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-newsletter p {
	color: var(--contrast-color);
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

.newsletter-form .input-group {
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
	border: 2px solid var(--accent-color);
}

.newsletter-form .form-control {
	background: var(--surface-color);
	border: none;
	color: var(--heading-color);
	padding: 0.75rem 1rem;
	border-radius: 0;
	font-weight: 500;
}

.newsletter-form .form-control:focus {
	background: var(--surface-color);
	border-color: var(--accent-color);
	box-shadow: none;
	outline: none;
}

.newsletter-form .form-control::placeholder {
	color: var(--contrast-color);
}

.newsletter-form .btn {
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--light-burgundy)
	);
	border: none;
	color: var(--bg-color);
	padding: 0.75rem 1rem;
	border-radius: 0;
	transition: all 0.3s ease;
	font-weight: 600;
}

.newsletter-form .btn:hover {
	background: linear-gradient(
		45deg,
		var(--light-burgundy),
		var(--accent-color)
	);
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.copyright {
	color: var(--contrast-color);
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	text-align: center;
}

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

.footer-bottom-links a {
	color: var(--contrast-color);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 4px;
}

.footer-bottom-links a:hover {
	color: var(--accent-color);
	background: rgba(139, 0, 0, 0.1);
	transform: translateY(-1px);
}

.separator {
	color: var(--accent-color);
	font-weight: bold;
}

/* Pricing Section */
.pricing {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--bg-color) 100%
	);
	position: relative;
}

.pricing-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 25px;
	padding: 40px 30px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(139, 21, 56, 0.2);
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
	border-color: var(--accent-color);
}

.pricing-featured {
	border: 3px solid var(--accent-color);
	box-shadow: 0 12px 40px rgba(139, 21, 56, 0.35);
	transform: scale(1.05);
}

.pricing-featured:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 25px 60px rgba(139, 21, 56, 0.45);
}

.pricing-badge {
	position: absolute;
	top: -15px;
	right: 30px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
}

.pricing-header {
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.pricing-header h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.pricing-price {
	margin: 20px 0;
}

.price-amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent-color);
	line-height: 1;
}

.price-period {
	font-size: 1rem;
	color: var(--contrast-color);
	margin-left: 5px;
}

.pricing-description {
	color: var(--contrast-color);
	font-size: 0.95rem;
	margin-top: 10px;
}

.pricing-features {
	margin: 30px 0;
}

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

.pricing-features li {
	padding: 12px 0;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--heading-color);
	font-size: 0.95rem;
	border-bottom: 1px solid rgba(37, 99, 235, 0.05);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features i {
	color: var(--accent-color);
	font-size: 1.2rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.pricing-features .bi-x-circle {
	color: #cbd5e1;
}

.pricing-cta {
	margin-top: 30px;
}

.pricing-note {
	color: var(--contrast-color);
	font-size: 0.9rem;
	margin: 0;
}

.pricing-comparison-table {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	margin-top: 40px;
}

.pricing-comparison-table h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 30px;
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background: transparent;
}

.pricing-table,
.pricing-table tbody,
.pricing-table tbody tr,
.pricing-table tbody td {
	background: transparent !important;
}

.pricing-table thead {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);
}

.pricing-table thead th {
	padding: 18px 20px;
	text-align: left;
	font-weight: 700;
	font-size: 1rem;
	border: none;
}

.pricing-table tbody tr {
	border-bottom: 1px solid rgba(139, 21, 56, 0.2);
	transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
	background: rgba(139, 21, 56, 0.1) !important;
}

.pricing-table tbody td {
	padding: 15px 20px;
	color: var(--heading-color);
	font-size: 0.95rem;
}

.pricing-table tbody td:first-child {
	font-weight: 600;
	color: var(--heading-color);
}

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

/* About Page Styles */
.about-hero {
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
}

.about-hero-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 25px;
	line-height: 1.2;
}

.about-hero-description {
	font-size: 1.1rem;
	color: var(--contrast-color);
	line-height: 1.8;
	margin-bottom: 35px;
}

.about-hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 40px;
}

.about-hero-stats .hero-stat-item h3 {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.about-hero-stats .hero-stat-item p {
	color: var(--contrast-color);
	font-size: 0.95rem;
}

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

.timeline-section {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--bg-color) 100%
	);
}

.timeline-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 0;
}

.timeline-container::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--accent-color), var(--nav-color));
	transform: translateX(-50%);
}

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

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

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

.timeline-marker {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-color);
	font-size: 1.5rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
	border: 4px solid var(--bg-color);
}

.timeline-content {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 20px;
	padding: 30px;
	width: calc(50% - 50px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(139, 21, 56, 0.2);
	transition: all 0.3s ease;
}

.timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(139, 21, 56, 0.3);
	border-color: var(--accent-color);
}

.timeline-content h4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 10px;
}

.timeline-date {
	color: var(--accent-color);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.timeline-content p {
	color: var(--contrast-color);
	line-height: 1.8;
	margin: 0;
}

.mission-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 20px;
	padding: 35px 30px;
	height: 100%;
	text-align: center;
	transition: all 0.4s ease;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(139, 21, 56, 0.2);
}

.mission-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
	border-color: var(--accent-color);
}

.mission-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: var(--bg-color);
	font-size: 2rem;
	transition: all 0.3s ease;
}

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

.mission-card h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 18px;
}

.mission-card p {
	color: var(--contrast-color);
	line-height: 1.8;
	font-size: 1rem;
	margin: 0;
}

.value-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 20px;
	padding: 35px 30px;
	height: 100%;
	text-align: center;
	transition: all 0.4s ease;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(139, 21, 56, 0.2);
}

.value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
	border-color: var(--accent-color);
}

.value-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: var(--bg-color);
	font-size: 2rem;
	transition: all 0.3s ease;
}

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

.value-card h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 18px;
}

.value-card p {
	color: var(--contrast-color);
	line-height: 1.8;
	font-size: 1rem;
	margin: 0;
}

.stats-section {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
}

.stat-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(139, 21, 56, 0.2);
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
	border-color: var(--accent-color);
}

.stat-card .stat-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: var(--bg-color);
	font-size: 2rem;
}

.stat-card h3 {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.stat-card p {
	color: var(--contrast-color);
	font-size: 1rem;
}

/* Contact Page Styles */
.contact-hero {
	padding: 120px 0 60px;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
}

.contact-info-card {
	padding: 35px 30px;
	text-align: center;
	height: 100%;
	transition: all 0.4s ease;
}

.contact-info-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: var(--bg-color);
	font-size: 1.8rem;
}

.contact-info-card h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 20px;
}

.contact-info-card p {
	color: var(--contrast-color);
	margin-bottom: 8px;
	line-height: 1.6;
}

.contact-info-card a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-info-card a:hover {
	color: var(--nav-color);
}

.contact-note {
	font-size: 0.85rem;
	color: var(--contrast-color);
	font-style: italic;
	margin-top: 15px;
}

.contact-form-container {
	padding: 50px 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(139, 21, 56, 0.2);
}

.contact-form-header h3 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.contact-form-header p {
	color: var(--contrast-color);
	font-size: 1rem;
}

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

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.form-control {
	width: 100%;
	padding: 12px 18px;
	border: 2px solid rgba(139, 21, 56, 0.3);
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--surface-color);
	color: var(--heading-color);
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.2);
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	color: var(--contrast-color);
	font-size: 0.9rem;
}

.checkbox-label input[type='checkbox'] {
	margin-top: 3px;
	cursor: pointer;
}

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

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

/* New Contact Form Styles */
.contact-form-new {
	width: 100%;
}

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

.contact-form-new .form-label-new {
	display: block;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.contact-form-new .required-star {
	color: var(--accent-color);
	margin-left: 3px;
}

.contact-form-new .form-input-new,
.contact-form-new .form-textarea-new {
	width: 100%;
	padding: 12px 18px;
	border: 2px solid rgba(139, 21, 56, 0.3);
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--surface-color);
	color: var(--heading-color);
	font-family: var(--default-font);
}

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

.contact-form-new .form-input-new:focus,
.contact-form-new .form-textarea-new:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.2);
	background: var(--surface-color);
}

.contact-form-new .form-input-new::placeholder,
.contact-form-new .form-textarea-new::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.contact-form-new .form-input-new.is-invalid,
.contact-form-new .form-textarea-new.is-invalid {
	border-color: #dc3545;
}

.contact-form-new .form-input-new.is-valid,
.contact-form-new .form-textarea-new.is-valid {
	border-color: #28a745;
}

.contact-form-new .invalid-feedback {
	display: none;
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 5px;
}

.contact-form-new .form-input-new.is-invalid ~ .invalid-feedback,
.contact-form-new .form-textarea-new.is-invalid ~ .invalid-feedback {
	display: block;
}

.contact-form-new .form-submit-button {
	width: 100%;
	padding: 15px 30px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);
	border: none;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.contact-form-new .form-submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
}

.contact-form-new .form-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.contact-form-new .form-submit-button svg {
	transition: transform 0.3s ease;
}

.contact-form-new .form-submit-button:hover:not(:disabled) svg {
	transform: translateX(3px);
}

.contact-form-new .form-status {
	margin-top: 20px;
	text-align: center;
}

.contact-form-new .form-status .loading,
.contact-form-new .form-status .error-message,
.contact-form-new .form-status .sent-message {
	display: none;
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 600;
}

.contact-form-new .form-status .loading {
	display: block;
	background: rgba(139, 21, 56, 0.2);
	color: var(--heading-color);
}

.contact-form-new .form-status .error-message {
	background: rgba(220, 53, 69, 0.2);
	color: #dc3545;
}

.contact-form-new .form-status .sent-message {
	background: rgba(40, 167, 69, 0.2);
	color: #28a745;
}

.contact-faq {
	padding: 80px 0;
}

.faq-quick-item {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 15px;
	padding: 25px;
	height: 100%;
	border: 2px solid rgba(139, 21, 56, 0.2);
	transition: all 0.3s ease;
}

.faq-quick-item:hover {
	border-color: var(--accent-color);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.25);
}

.faq-quick-item h5 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.faq-quick-item h5 i {
	color: var(--accent-color);
}

.faq-quick-item p {
	color: var(--contrast-color);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* FAQ Page Styles */
.faq-hero {
	padding: 120px 0 60px;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
}

.faq-categories {
	padding: 40px 0;
	background: var(--surface-color);
	border-bottom: 2px solid rgba(37, 99, 235, 0.1);
	position: sticky;
	top: 80px;
	z-index: 10;
}

.faq-category-nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.faq-category-link {
	padding: 12px 24px;
	background: var(--bg-color);
	border: 2px solid rgba(139, 21, 56, 0.2);
	border-radius: 25px;
	color: var(--contrast-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.faq-category-link:hover,
.faq-category-link.active {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	color: var(--bg-color);
	border-color: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

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

.faq-section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}

.faq-section-title i {
	color: var(--accent-color);
}

.faq-cta {
	padding: 80px 0;
	text-align: center;
}

/* Legal Pages Styles */
.cookie-hero,
.privacy-hero,
.terms-hero {
	padding: 120px 0 60px;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
}

.legal-content {
	/* background: linear-gradient(135deg, var(--surface-color), var(--bg-color)); */
	border-radius: 25px;
	padding: 50px 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	/* border: 2px solid rgba(139, 21, 56, 0.2); */
}

.legal-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.legal-section h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.legal-section h2 i {
	color: var(--accent-color);
	margin-right: 10px;
}

.legal-section h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-top: 30px;
	margin-bottom: 15px;
}

.legal-section p {
	color: var(--contrast-color);
	line-height: 1.8;
	margin-bottom: 18px;
	font-size: 1rem;
}

.legal-list {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.legal-list li {
	padding: 12px 0 12px 30px;
	position: relative;
	color: var(--contrast-color);
	line-height: 1.7;
}

.legal-list li::before {
	content: '\f633';
	font-family: 'bootstrap-icons';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-size: 1.1rem;
}

.legal-list li strong {
	color: var(--heading-color);
	font-weight: 700;
}

.contact-box {
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.1),
		rgba(26, 31, 58, 0.05)
	);
	border-left: 4px solid var(--accent-color);
	border-radius: 10px;
	padding: 25px 30px;
	margin: 25px 0;
}

.contact-box p {
	margin-bottom: 8px;
	color: var(--heading-color);
}

.contact-box a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
}

.contact-box a:hover {
	text-decoration: underline;
}

.cookie-type-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 15px;
	padding: 30px;
	margin: 25px 0;
	border: 2px solid rgba(139, 21, 56, 0.2);
	transition: all 0.3s ease;
}

.cookie-type-card:hover {
	border-color: var(--accent-color);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.25);
}

.cookie-type-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.cookie-type-card h3 i {
	margin-right: 10px;
}

.cookie-details {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.cookie-details ul {
	list-style: none;
	padding-left: 0;
	margin: 10px 0;
}

.cookie-details ul li {
	padding: 6px 0 6px 25px;
	position: relative;
	color: var(--contrast-color);
}

.cookie-details ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
	font-size: 1.2rem;
}

.rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.right-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 15px;
	padding: 25px;
	border: 2px solid rgba(139, 21, 56, 0.2);
	transition: all 0.3s ease;
}

.right-card:hover {
	border-color: var(--accent-color);
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.25);
}

.right-card h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.right-card h4 i {
	color: var(--accent-color);
	margin-right: 8px;
}

.right-card p {
	color: var(--contrast-color);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* Thanks Page Styles */
.thanks-hero {
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		var(--bg-color) 0%,
		var(--background-color) 100%
	);
}

.thanks-icon-wrapper {
	margin-bottom: 30px;
}

.thanks-icon {
	width: 120px;
	height: 120px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	animation: thanksPulse 2s ease-in-out infinite;
	box-shadow: 0 10px 40px rgba(139, 21, 56, 0.4);
}

.thanks-icon i {
	font-size: 4rem;
	color: #ffffff;
}

@keyframes thanksPulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 10px 40px rgba(139, 21, 56, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 15px 50px rgba(139, 21, 56, 0.5);
	}
}

.thanks-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 25px;
	line-height: 1.2;
}

.thanks-description {
	font-size: 1.1rem;
	color: var(--contrast-color);
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

.whats-next {
	padding: 100px 0;
}

.next-step-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 20px;
	padding: 35px 30px;
	height: 100%;
	text-align: center;
	position: relative;
	border: 2px solid rgba(139, 21, 56, 0.2);
	transition: all 0.4s ease;
}

.next-step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
	border-color: var(--accent-color);
}

.next-step-card .step-number {
	position: absolute;
	top: -20px;
	left: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-color);
	font-weight: 800;
	font-size: 1.2rem;
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.next-step-card .step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.15),
		rgba(26, 31, 58, 0.1)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto 25px;
	transition: all 0.3s ease;
}

.next-step-card:hover .step-icon {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	transform: scale(1.1) rotate(5deg);
}

.next-step-card .step-icon i {
	font-size: 2.5rem;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.next-step-card:hover .step-icon i {
	color: var(--bg-color);
}

.next-step-card h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.next-step-card p {
	color: var(--contrast-color);
	line-height: 1.8;
	font-size: 1rem;
	margin: 0;
}

.quick-actions {
	padding: 80px 0;
}

.quick-actions-card {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	border-radius: 25px;
	padding: 50px 40px;
	color: var(--bg-color);
}

.quick-actions-card h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--bg-color);
}

.quick-actions-card p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
}

.quick-actions-card .btn-primary {
	background: var(--bg-color);
	color: var(--accent-color);
	border: none;
	padding: 15px 35px;
	font-weight: 700;
}

.quick-actions-card .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.additional-resources {
	padding: 100px 0;
}

.resource-card {
	background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
	border-radius: 20px;
	padding: 35px 30px;
	height: 100%;
	text-align: center;
	border: 2px solid rgba(139, 21, 56, 0.2);
	transition: all 0.4s ease;
}

.resource-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
	border-color: var(--accent-color);
}

.resource-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.15),
		rgba(26, 31, 58, 0.1)
	);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
	background: linear-gradient(135deg, var(--accent-color), var(--nav-color));
	transform: scale(1.1) rotate(5deg);
}

.resource-icon i {
	font-size: 2rem;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.resource-card:hover .resource-icon i {
	color: var(--bg-color);
}

.resource-card h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.resource-card p {
	color: var(--contrast-color);
	line-height: 1.7;
	font-size: 0.95rem;
	margin-bottom: 20px;
}

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

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

/* Responsive Hero & Testimonials */
@media (max-width: 992px) {
	.hero-stats {
		gap: 15px;
	}

	.hero-stat-item {
		flex: 1 1 calc(50% - 15px);
		min-width: 120px;
	}

	.hero-card-main {
		height: 400px;
	}

	.hero-card-secondary {
		height: 250px;
	}

	.feature-card-image-wrapper {
		height: 200px;
	}

	.step-icon-new {
		width: 80px;
		height: 80px;
		margin: 20px auto 20px;
	}

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

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

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

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

	.hero-stats {
		flex-direction: column;
		gap: 15px;
	}

	.hero-stat-item {
		width: 100%;
	}

	.hero-card-main {
		height: 350px;
		margin-bottom: 15px;
	}

	.hero-card-secondary {
		height: 200px;
	}

	.bg-shape {
		opacity: 0.2;
	}

	.testimonials {
		padding: 60px 0;
	}

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

	.testimonial-quote-icon {
		font-size: 3rem;
		top: 15px;
		right: 20px;
	}

	.features {
		padding: 80px 0;
	}

	.feature-card-image-wrapper {
		height: 220px;
	}

	.feature-card-content {
		padding: 30px 25px;
	}

	.feature-card-icon {
		width: 60px;
		height: 60px;
		font-size: 1.6rem;
	}

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

	.feature-bg-shape {
		opacity: 0.3;
	}

	.how-it-works {
		padding: 60px 0;
	}

	.step-card-inner {
		padding: 30px 20px;
	}

	.step-number-new {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
		top: -15px;
		left: 20px;
	}

	.step-icon-new {
		width: 70px;
		height: 70px;
		margin: 15px auto 15px;
	}

	.step-icon-new i {
		font-size: 1.8rem;
	}

	.feature-bg-shape,
	.how-bg-shape {
		opacity: 0.2;
	}

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

	.footer-social {
		justify-content: center;
		margin-top: 1rem;
	}

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

	.footer-logo {
		justify-content: center;
		text-align: center;
	}

	.footer-links {
		text-align: center;
		margin-bottom: 2rem;
	}

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

/* Dark Burgundy Section */
.dark-burgundy-section {
	color: var(--bg-color);
	position: relative;
	overflow: hidden;
}

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

.dark-burgundy-section .section-title,
.dark-burgundy-section .section-description,
.dark-burgundy-section h3,
.dark-burgundy-section h4,
.dark-burgundy-section p {
	color: var(--bg-color) !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.timeline-container::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--bg-color),
		rgba(255, 255, 255, 0.3)
	);
	transform: translateX(-50%);
}

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

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

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

.timeline-marker {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, var(--bg-color), rgba(255, 255, 255, 0.9));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-marker i {
	font-size: 1.5rem;
	color: var(--accent-color);
}

.timeline-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.1);
	padding: 25px;
	border-radius: 15px;
	margin: 0 30px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.timeline-content:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.timeline-content p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0;
}

/* Value Cards */
.value-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.value-card:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.value-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, var(--bg-color), rgba(255, 255, 255, 0.9));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.value-icon i {
	font-size: 2rem;
	color: var(--accent-color);
}

.value-card h4 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--bg-color);
}

.value-card p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0;
}

/* Team Stats */
.team-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.stat-box {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 30px 20px;
	border-radius: 20px;
	min-width: 150px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.stat-box:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--bg-color);
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* About Visual */
.about-image {
	position: relative;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-elements {
	position: relative;
	width: 100%;
	height: 100%;
}

.element {
	position: absolute;
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: elementFloat 8s ease-in-out infinite;
}

.element i {
	font-size: 2rem;
	color: var(--bg-color);
}

.element-1 {
	top: 20px;
	left: 20px;
	animation-delay: 0s;
}

.element-2 {
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	animation-delay: 2s;
}

.element-3 {
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	animation-delay: 4s;
}

@keyframes elementFloat {
	0%,
	100% {
		transform: translateY(0px) translateX(0px);
	}
	25% {
		transform: translateY(-20px) translateX(10px);
	}
	50% {
		transform: translateY(-10px) translateX(-10px);
	}
	75% {
		transform: translateY(-30px) translateX(5px);
	}
}

/* Tech Showcase Cards */
.tech-showcase-card {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(45, 27, 78, 0.8)
	);
	border: 2px solid var(--default-color);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	position: relative;
}

.tech-showcase-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
	border-color: var(--accent-color);
}

.tech-showcase-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.tech-showcase-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-showcase-icon i {
	font-size: 1.8rem;
	color: var(--bg-color);
}

.tech-showcase-badge {
	background: var(--accent-color);
	color: var(--bg-color);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.tech-showcase-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.tech-showcase-card p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 20px;
}

.tech-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
}

.tech-feature {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tech-feature i {
	color: var(--accent-color);
	font-size: 1rem;
}

.tech-feature span {
	color: var(--contrast-color);
	font-size: 0.9rem;
}

.tech-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--default-color);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

/* Solution Cards */
.solution-card {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(45, 27, 78, 0.7)
	);
	border: 2px solid var(--default-color);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.solution-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.9),
		rgba(249, 131, 131, 0.3)
	);
	z-index: 1;
	transition: all 0.3s ease;
}

.solution-card:hover::before {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95),
		rgba(255, 255, 255, 0.85)
	);
}

.solution-card > * {
	position: relative;
	z-index: 2;
}

.solution-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
	border-color: var(--accent-color);
}

/* Specific solution card styles */
.solution-card-ai {
	background-image: url('assets/img/features-main.jpg');
}

.solution-card-analytics {
	background-image: url('assets/img/features-tech.jpg');
}

.solution-card-community {
	background-image: url('assets/img/about-team.jpg');
}

.solution-card-security {
	background-image: url('assets/img/about-office.jpg');
}

.solution-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.solution-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-icon i {
	font-size: 1.8rem;
	color: var(--bg-color);
}

.solution-badge {
	background: var(--accent-color);
	color: var(--bg-color);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.solution-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.solution-card p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 20px;
}

.solution-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
}

.solution-feature {
	display: flex;
	align-items: center;
	gap: 10px;
}

.solution-feature i {
	color: var(--accent-color);
	font-size: 1rem;
}

.solution-feature span {
	color: var(--contrast-color);
	font-size: 0.9rem;
}

.solution-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--default-color);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form-container {
	padding: 40px;
	backdrop-filter: blur(10px);
}

.contact-form-header {
	text-align: center;
	margin-bottom: 30px;
}

.contact-form-header h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 10px;
}

.contact-form-header p {
	color: var(--contrast-color);
	opacity: 0.8;
}

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

.form-group label {
	display: block;
	color: var(--heading-color);
	font-weight: 600;
	margin-bottom: 8px;
}

.form-group .form-control {
	background: rgba(26, 11, 46, 0.8);
	border: 2px solid var(--default-color);
	border-radius: 10px;
	color: var(--contrast-color);
	padding: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	width: 100%;
}

.form-group .form-control:focus {
	background: rgba(26, 11, 46, 0.9);
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
	color: var(--contrast-color);
	outline: none;
}

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

/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-info-card {
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.contact-info-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.contact-info-icon i {
	font-size: 1.5rem;
	color: var(--bg-color);
}

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

.contact-info-card p {
	color: var(--contrast-color);
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 10px;
}

.contact-info-status {
	display: block;
	color: var(--accent-color);
	font-size: 0.9rem;
	font-weight: 500;
}

.contact-info-link {
	color: var(--default-color);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-info-link:hover {
	color: var(--accent-color);
}

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

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

	.hero-stats {
		gap: 20px;
	}

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

	.tech-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.tech-item {
		padding: 15px;
	}

	.about-card {
		padding: 20px;
	}

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

	.about-hero-title {
		font-size: 2rem;
	}

	.about-hero-stats {
		flex-direction: column;
		gap: 20px;
	}

	.faq-category-nav {
		flex-direction: column;
		align-items: stretch;
	}

	.faq-category-link {
		justify-content: center;
	}

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

	.stat-card h3 {
		font-size: 2.2rem;
	}

	.contact-info-card {
		padding: 25px 20px;
	}

	.timeline-container::before {
		left: 30px;
	}

	.timeline-item {
		flex-direction: row !important;
		padding-left: 70px;
	}

	.timeline-marker {
		left: 30px;
		transform: translateX(-50%);
	}

	.timeline-content {
		width: 100%;
		margin: 0;
	}

	.mission-card,
	.value-card {
		padding: 25px 20px;
	}

	.mission-icon,
	.value-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.legal-content {
		padding: 30px 20px;
	}

	.legal-section h2 {
		font-size: 1.5rem;
	}

	.legal-section h3 {
		font-size: 1.2rem;
	}

	.cookie-type-card {
		padding: 20px;
	}

	.rights-grid {
		grid-template-columns: 1fr;
	}

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

	.thanks-icon {
		width: 100px;
		height: 100px;
	}

	.thanks-icon i {
		font-size: 3rem;
	}

	.next-step-card {
		padding: 25px 20px;
	}

	.next-step-card .step-icon {
		width: 60px;
		height: 60px;
	}

	.next-step-card .step-icon i {
		font-size: 2rem;
	}

	.quick-actions-card {
		padding: 30px 20px;
		text-align: center;
	}

	.quick-actions-card h3 {
		font-size: 1.5rem;
	}

	.resource-card {
		padding: 25px 20px;
	}

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

	.resource-icon i {
		font-size: 1.5rem;
	}
}
