/********** Template CSS **********/
:root {
	/* Тёмно-зелёная цветовая палитра */
	--primary: #f1a363;
	--primary-light: #f8ca81;
	--primary-dark: #e57e46;
	--secondary: #f59e0b;
	--secondary-light: #fbbf24;
	--secondary-dark: #d97706;

	/* Акцентные цвета - тёмно-зелёные */
	--accent: #064e3b;
	--accent-light: #065f46;
	--accent-dark: #022c22;

	/* Нейтральные цвета - тёмные */
	--light: #ffffff;
	--dark: #0f172a;
	--dark-bg: #5c3c23;
	--light-bg: #0f172a;

	/* Градиенты */
	--gradient-primary: linear-gradient(135deg, #f1d263 0%, #f68f5c 100%);
	--gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
	--gradient-accent: linear-gradient(135deg, #40064e 0%, #47065f 100%);
	--gradient-dark: linear-gradient(135deg, #411d49 0%, #623668 100%);
	--gradient-glass: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 100%
	);

	/* Текст */
	--text-primary: #f8fafc;
	--text-secondary: #cbd5e1;
	--text-light: #ffffff;
	--text-muted: #94a3b8;

	/* Фоны */
	--bg-primary: #4a2258;
	--bg-secondary: #4a2158;
	--bg-dark: #2d0534;
	--bg-card: #1e293b;
	--bg-glass: rgba(30, 41, 59, 0.8);

	/* Тени и эффекты */
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
		0 2px 4px -1px rgba(0, 0, 0, 0.2);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4),
		0 4px 6px -2px rgba(0, 0, 0, 0.3);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5),
		0 10px 10px -5px rgba(0, 0, 0, 0.4);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);

	/* Размеры */
	--header-height: 80px;
	--border-radius: 16px;
	--border-radius-lg: 24px;
	--border-radius-xl: 32px;

	/* Переходы */
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Глобальные стили */
* {
	box-sizing: border-box;
}

body {
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.7;
	color: var(--text-primary);
	background-color: var(--bg-primary);
	overflow-x: hidden;
	font-weight: 400;
}

/* Типографика */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
}
h4 {
	font-size: clamp(1.25rem, 2.5vw, 2rem);
}
h5 {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
}
h6 {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
	font-size: 1.125rem;
	line-height: 1.8;
}

.fw-medium {
	font-weight: 500 !important;
}
.fw-semi-bold {
	font-weight: 600 !important;
}
.fw-bold {
	font-weight: 700 !important;
}

/* Кнопка "Наверх" */
.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 50%;
	color: white;
	text-align: center;
	line-height: 50px;
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-xl);
	color: white;
}

/* Спиннер загрузки */
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-slow);
	z-index: 99999;
	background: var(--gradient-dark);
}

#spinner.show {
	visibility: visible;
	opacity: 1;
}

.spinner-border {
	color: white !important;
}

/* Кнопки */
.btn {
	font-weight: 600;
	text-transform: none;
	border-radius: var(--border-radius);
	padding: 16px 32px;
	font-size: 1.125rem;
	transition: var(--transition);
	border: none;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 56px;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.15),
		transparent
	);
	transition: left 0.6s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-2xl);
	color: white;
}

.btn-secondary {
	background: var(--gradient-secondary);
	color: white;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-2xl);
	color: white;
}

.btn-accent {
	background: var(--gradient-accent);
	color: white;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-accent:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-2xl);
	color: white;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-lg);
}

/* Квадратные кнопки */
.btn-square {
	width: 48px;
	height: 48px;
	border-radius: var(--border-radius);
}

.btn-sm-square {
	width: 40px;
	height: 40px;
	border-radius: var(--border-radius);
}

.btn-lg-square {
	width: 56px;
	height: 56px;
	border-radius: var(--border-radius);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

/* Навигация */
.navbar {
	padding: 1rem 0;
}

.navbar-brand {
	font-weight: 800;
	font-size: 1.75rem;
	color: var(--primary) !important;
	text-decoration: none;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.navbar-nav .nav-link {
	color: var(--text-primary) !important;
	font-weight: 600;
	margin: 0 12px;
	padding: 12px 20px;
	border-radius: var(--border-radius);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.navbar-nav .nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.navbar-nav .nav-link:hover::before {
	opacity: 0.1;
}

.navbar-nav .nav-link:hover {
	color: var(--primary) !important;
	transform: translateY(-2px);
}

/* Заголовок сайта */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(6, 78, 59, 0.2);
	box-shadow: var(--shadow-sm);
}

.site-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

.site-logo:hover {
	color: var(--primary-dark);
	transform: scale(1.05);
}

/* Основные секции */
.cta-section {
	padding: 120px 0 80px;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(6, 78, 59, 0.1) 0%,
		rgba(6, 95, 70, 0.1) 100%
	);
	z-index: -1;
}

.cta-title {
	font-size: 3.5rem;
	font-weight: 800;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.cta-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

/* Карточки */
.card {
	background: var(--bg-card);
	border: 1px solid rgba(6, 78, 59, 0.2);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	overflow: hidden;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.card-header {
	background: var(--gradient-primary);
	color: white;
	border: none;
	padding: 1.5rem;
}

.card-body {
	padding: 2rem;
}

/* Формы */
.form-control {
	border: 2px solid rgba(6, 78, 59, 0.3);
	border-radius: var(--border-radius);
	padding: 12px 16px;
	font-size: 1rem;
	transition: var(--transition);
	background: rgba(6, 78, 59, 0.1);
	color: var(--text-light);
	backdrop-filter: blur(10px);
}

.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.2);
	outline: none;
	background: rgba(6, 78, 59, 0.15);
}

.form-label {
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

/* Анимации */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
	animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
	animation: slideInRight 0.8s ease-out;
}

/* Адаптивность */
@media (max-width: 768px) {
	.cta-title {
		font-size: 2.5rem;
	}

	.cta-section {
		padding: 100px 0 60px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

@media (max-width: 576px) {
	.cta-title {
		font-size: 2rem;
	}

	.navbar-nav .nav-link {
		margin: 5px 0;
		text-align: center;
	}
}

/* Hero Section */
.hero-section {
	padding: 140px 0 100px;
	background: linear-gradient(
		135deg,
		var(--bg-dark) 0%,
		var(--bg-primary) 100%
	);
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.hero-title {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 900;
	line-height: 1.05;
	margin-bottom: 2rem;
	color: var(--text-primary);
	position: relative;
}

.hero-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.text-gradient {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.hero-image-wrapper {
	position: relative;
	border-radius: var(--border-radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-2xl);
	transform: perspective(1000px) rotateY(-5deg);
	transition: var(--transition);
}

.hero-image-wrapper:hover {
	transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image {
	width: 100%;
	height: auto;
	transition: var(--transition);
}

.hero-pattern {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: var(--gradient-secondary);
	border-radius: 50%;
	opacity: 0.08;
	z-index: -1;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* About Section */
.about-section {
	padding: 120px 0;
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 10% 20%,
			rgba(99, 102, 241, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 90% 80%,
			rgba(245, 158, 11, 0.05) 0%,
			transparent 50%
		);
	z-index: -1;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	text-align: center;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	text-align: center;
	margin-bottom: 4rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.about-card {
	background: var(--bg-card);
	padding: 3rem 2.5rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	height: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(6, 78, 59, 0.2);
	backdrop-filter: blur(10px);
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.about-card:hover::before {
	opacity: 0.03;
}

.about-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: var(--shadow-2xl);
}

.card-icon {
	width: 100px;
	height: 100px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: white;
	font-size: 2.5rem;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
}

.about-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	background: var(--gradient-secondary);
}

.about-card h3 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	font-weight: 800;
}

.about-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1.125rem;
}

/* Services Section */
.services-section {
	padding: 120px 0;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.services-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(99, 102, 241, 0.03) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(16, 185, 129, 0.03) 0%,
			transparent 50%
		);
	z-index: -1;
}

.service-card {
	background: var(--bg-card);
	border-radius: var(--border-radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	height: 100%;
	border: 1px solid rgba(6, 78, 59, 0.2);
	position: relative;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.service-card:hover::before {
	opacity: 0.02;
}

.service-card:hover {
	transform: translateY(-20px) scale(1.02);
	box-shadow: var(--shadow-2xl);
}

.service-image {
	height: 450px;
	overflow: hidden;
	position: relative;
}

.service-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(99, 102, 241, 0.1) 0%,
		rgba(139, 92, 246, 0.1) 100%
	);
	opacity: 0;
	transition: var(--transition);
	z-index: 1;
}

.service-card:hover .service-image::before {
	opacity: 1;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-card:hover .service-image img {
	transform: scale(1.15);
}

.service-content {
	padding: 2.5rem;
	position: relative;
	z-index: 2;
}

.service-content h3 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	font-weight: 800;
}

.service-content p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
	font-size: 1.125rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin-bottom: 2.5rem;
}

.service-features li {
	padding: 0.75rem 0;
	color: var(--text-secondary);
	position: relative;
	padding-left: 2rem;
	font-size: 1.1rem;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: bold;
	font-size: 1.2rem;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Advantages Section */
.advantages-section {
	padding: 120px 0;
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.advantages-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 30%,
			rgba(245, 158, 11, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 70%,
			rgba(16, 185, 129, 0.05) 0%,
			transparent 50%
		);
	z-index: -1;
}

.advantage-card {
	background: var(--bg-card);
	padding: 3rem 2rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	height: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(6, 78, 59, 0.2);
	backdrop-filter: blur(10px);
}

.advantage-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.advantage-card:hover::before {
	opacity: 0.03;
}

.advantage-card:hover {
	transform: translateY(-20px) scale(1.03);
	box-shadow: var(--shadow-2xl);
}

.advantage-icon {
	width: 90px;
	height: 90px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: white;
	font-size: 2.2rem;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
	position: relative;
}

.advantage-icon::after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	background: var(--gradient-primary);
	border-radius: 50%;
	opacity: 0.3;
	z-index: -1;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.1;
	}
	100% {
		transform: scale(1);
		opacity: 0.3;
	}
}

.advantage-card:hover .advantage-icon {
	transform: scale(1.1) rotate(5deg);
	background: var(--gradient-secondary);
}

.advantage-card h4 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	font-weight: 800;
}

.advantage-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
	padding: 120px 0;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 25% 25%,
			rgba(99, 102, 241, 0.03) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(245, 158, 11, 0.03) 0%,
			transparent 50%
		);
	z-index: -1;
}

.testimonial-card {
	background: var(--bg-card);
	padding: 3rem 2.5rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	height: 100%;
	position: relative;
	border: 1px solid rgba(6, 78, 59, 0.2);
	backdrop-filter: blur(10px);
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.testimonial-card:hover::before {
	opacity: 0.02;
}

.testimonial-card:hover {
	transform: translateY(-20px) scale(1.02);
	box-shadow: var(--shadow-2xl);
}

.testimonial-rating {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.testimonial-rating .material-icons {
	color: var(--secondary);
	font-size: 1.4rem;
	filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.testimonial-text {
	font-style: italic;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.8;
	font-size: 1.25rem;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: -20px;
	font-size: 4rem;
	color: var(--primary);
	opacity: 0.2;
	font-family: serif;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.testimonial-card:hover .author-avatar {
	transform: scale(1.1);
	background: var(--gradient-secondary);
}

.author-info h5 {
	margin: 0;
	font-size: 1.125rem;
	color: var(--text-primary);
	font-weight: 700;
}

.author-info span {
	color: var(--text-muted);
	font-size: 1rem;
	font-weight: 500;
}

/* Features Section */
.features-section {
	padding: 120px 0;
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 15% 85%,
			rgba(99, 102, 241, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 85% 15%,
			rgba(16, 185, 129, 0.05) 0%,
			transparent 50%
		);
	z-index: -1;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.feature-item {
	background: var(--bg-card);
	border-radius: var(--border-radius-xl);
	padding: 3.5rem 2.5rem;
	text-align: center;
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(6, 78, 59, 0.2);
	backdrop-filter: blur(10px);
}

.feature-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.feature-item:hover::before {
	opacity: 0.02;
}

.feature-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: var(--transition);
	transform-origin: left;
}

.feature-item:hover::after {
	transform: scaleX(1);
}

.feature-item:hover {
	transform: translateY(-25px) scale(1.03);
	box-shadow: var(--shadow-2xl);
}

.feature-icon {
	width: 100px;
	height: 100px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: white;
	font-size: 2.5rem;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
	position: relative;
}

.feature-icon::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: var(--gradient-primary);
	border-radius: 50%;
	opacity: 0.2;
	z-index: -1;
	animation: ripple 3s infinite;
}

@keyframes ripple {
	0% {
		transform: scale(1);
		opacity: 0.2;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.1;
	}
	100% {
		transform: scale(1);
		opacity: 0.2;
	}
}

.feature-item:hover .feature-icon {
	background: var(--gradient-secondary);
	color: var(--primary);
	transform: scale(1.15) rotate(5deg);
}

.feature-item h4 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	font-weight: 800;
}

.feature-item p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 1.125rem;
}

.feature-badge {
	display: inline-block;
	background: var(--gradient-accent);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 700;
	margin-top: 1rem;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.feature-item:hover .feature-badge {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
}

.feature-stats {
	display: flex;
	justify-content: space-around;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2rem;
	font-weight: 900;
	color: var(--primary);
	display: block;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 1rem;
	color: var(--text-muted);
	margin-top: 0.5rem;
	font-weight: 600;
}

/* Contact Section */
.contact-section {
	padding: 140px 0;
	background: var(--bg-dark);
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(6, 78, 59, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(circle at 80% 70%, rgba(6, 95, 70, 0.1) 0%, transparent 50%),
		radial-gradient(
			circle at 50% 50%,
			rgba(2, 44, 34, 0.08) 0%,
			transparent 50%
		);
	z-index: -1;
}

.contact-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.3" fill="%23064E3B"/><circle cx="75" cy="75" r="0.3" fill="%23064E3B"/><circle cx="50" cy="10" r="0.2" fill="%23064E3B"/><circle cx="10" cy="60" r="0.2" fill="%23064E3B"/><circle cx="90" cy="40" r="0.2" fill="%23064E3B"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.1;
	z-index: -1;
}

.contact-section .section-title {
	color: var(--text-light);
	text-align: center;
	margin-bottom: 1rem;
}

.contact-section .section-subtitle {
	color: var(--text-secondary);
	text-align: center;
	margin-bottom: 4rem;
}

.contact-info {
	background: var(--bg-card);
	padding: 3rem 2.5rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow-2xl);
	border: 1px solid rgba(6, 78, 59, 0.2);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-accent);
	border-radius: 4px 4px 0 0;
}

.contact-info h3 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
	font-weight: 800;
	position: relative;
}

.contact-info h3::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--gradient-accent);
	border-radius: 2px;
}

.contact-info p {
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.7;
	font-size: 1.125rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: rgba(6, 78, 59, 0.1);
	border-radius: var(--border-radius);
	border: 1px solid rgba(6, 78, 59, 0.2);
	transition: var(--transition);
}

.contact-method:hover {
	background: rgba(6, 78, 59, 0.15);
	border-color: rgba(6, 78, 59, 0.4);
	transform: translateX(10px);
}

.contact-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
	font-size: 1.8rem;
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
}

.contact-method:hover .contact-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: var(--shadow-xl);
}

.contact-details h5 {
	margin: 0 0 0.75rem 0;
	color: var(--text-light);
	font-size: 1.25rem;
	font-weight: 700;
}

.contact-details a,
.contact-details p {
	margin: 0;
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
	font-size: 1.1rem;
}

.contact-details a:hover {
	color: var(--accent-light);
	transform: translateX(5px);
}

.contact-form {
	background: var(--bg-card);
	padding: 3.5rem 2.5rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow-2xl);
	border: 1px solid rgba(6, 78, 59, 0.2);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-accent);
	border-radius: 4px 4px 0 0;
}

.contact-form h3 {
	color: var(--text-light);
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 800;
}

.form-group {
	margin-bottom: 2rem;
}

.form-group label {
	color: var(--text-light);
	font-weight: 600;
	margin-bottom: 0.75rem;
	display: block;
	font-size: 1.1rem;
}

.form-control {
	background: rgba(6, 78, 59, 0.1);
	border: 2px solid rgba(6, 78, 59, 0.3);
	border-radius: var(--border-radius);
	padding: 1rem 1.25rem;
	font-size: 1.1rem;
	transition: var(--transition);
	color: var(--text-light);
	backdrop-filter: blur(10px);
}

.form-control::placeholder {
	color: var(--text-muted);
}

.form-control:focus {
	border-color: var(--accent-light);
	box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.2);
	outline: none;
	background: rgba(6, 78, 59, 0.15);
}

.form-control:focus::placeholder {
	color: var(--text-secondary);
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

.contact-form .btn {
	width: 100%;
	padding: 1.25rem 2rem;
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 1rem;
}

/* Footer */
.footer {
	background: var(--bg-dark);
	color: var(--text-light);
	padding: 5rem 0 2rem;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(6, 78, 59, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(6, 95, 70, 0.08) 0%,
			transparent 50%
		);
	z-index: -1;
}

.footer-brand .brand-name {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-brand p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	font-size: 1.1rem;
	line-height: 1.6;
}

.social-links {
	display: flex;
	gap: 1.25rem;
}

.social-link {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
	transform: translateY(-5px) scale(1.1);
	color: white;
	box-shadow: var(--shadow-xl);
}

.footer-links h5 {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	position: relative;
}

.footer-links h5::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--gradient-accent);
	border-radius: 1px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
	font-size: 1.05rem;
	padding: 0.5rem 0;
	display: inline-block;
	position: relative;
}

.footer-links a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gradient-accent);
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--text-light);
	transform: translateX(5px);
}

.footer-links a:hover::before {
	width: 100%;
}

.footer-newsletter h5 {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	font-weight: 700;
}

.footer-newsletter p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
	font-size: 1.05rem;
}

.newsletter-form .input-group {
	display: flex;
	gap: 0.75rem;
}

.newsletter-form .form-control {
	flex: 1;
	background: rgba(6, 78, 59, 0.1);
	border: 2px solid rgba(6, 78, 59, 0.3);
	color: var(--text-light);
	backdrop-filter: blur(10px);
}

.newsletter-form .form-control:focus {
	border-color: var(--accent-light);
	box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.2);
	background: rgba(6, 78, 59, 0.15);
}

.footer-bottom {
	margin-top: 4rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(6, 78, 59, 0.3);
}

.copyright {
	color: var(--text-muted);
	margin: 0;
	font-size: 1rem;
}

.footer-menu {
	display: flex;
	gap: 2rem;
	justify-content: flex-end;
}

.footer-menu a {
	color: var(--text-muted);
	text-decoration: none;
	transition: var(--transition);
	font-size: 1rem;
	padding: 0.5rem 0;
	position: relative;
}

.footer-menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gradient-accent);
	transition: var(--transition);
}

.footer-menu a:hover {
	color: var(--text-light);
}

.footer-menu a:hover::before {
	width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.hero-title {
		font-size: 3rem;
	}

	.section-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 767.98px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-buttons .btn {
		margin: 0.5rem 0;
	}

	.footer-menu {
		justify-content: center;
		margin-top: 1rem;
	}

	.copyright {
		text-align: center;
	}
}

/* Page Header Styles */
.page-header {
	padding: 120px 0 80px;
	background: var(--gradient-dark);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff"/><circle cx="75" cy="75" r="1" fill="%23ffffff"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.1;
	z-index: -1;
}

.page-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: white;
}

.page-subtitle {
	font-size: 1.3rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Content Section Styles */
.content-section {
	padding: 80px 0;
	background: var(--bg-secondary);
}

.content-card {
	background: var(--bg-card);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(6, 78, 59, 0.2);
}

.content-card:hover {
	box-shadow: var(--shadow-lg);
}

.content-body {
	padding: 3rem;
}

.content-body h2 {
	color: var(--text-primary);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 2rem 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary);
	display: inline-block;
}

.content-body h2:first-child {
	margin-top: 0;
}

.content-body p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.content-body ul {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.content-body li {
	margin-bottom: 0.5rem;
}

.content-body a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

.content-body a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

.last-updated {
	background: var(--bg-primary);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	border-left: 4px solid var(--accent);
	margin-top: 2rem;
}

.last-updated strong {
	color: var(--text-primary);
}

/* Responsive adjustments for content pages */
@media (max-width: 768px) {
	.page-title {
		font-size: 2.5rem;
	}

	.page-subtitle {
		font-size: 1.1rem;
	}

	.content-body {
		padding: 2rem;
	}

	.content-body h2 {
		font-size: 1.5rem;
	}

	.content-body p {
		font-size: 1rem;
	}
}

/* Responsive adjustments for features section */
@media (max-width: 768px) {
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.feature-item {
		padding: 2rem;
	}

	.feature-stats {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 576px) {
	.page-title {
		font-size: 2rem;
	}

	.content-body {
		padding: 1.5rem;
	}
}

/* Thanks Section Styles */
.thanks-section {
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		var(--bg-dark) 0%,
		var(--bg-primary) 100%
	);
	min-height: 70vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.thanks-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0"/><circle cx="10" cy="60" r="0.5" fill="%23f0f0f0"/><circle cx="90" cy="40" r="0.5" fill="%23f0f0f0"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.1;
	z-index: -1;
}

.thanks-content {
	text-align: center;
	animation: fadeInUp 1s ease-out;
}

.thanks-icon {
	width: 120px;
	height: 120px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: white;
	font-size: 4rem;
	box-shadow: var(--shadow-lg);
	animation: scaleIn 0.6s ease-out 0.3s both;
}

.thanks-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.thanks-message {
	font-size: 1.3rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 0.8s ease-out 0.9s both;
}

.thanks-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 1.2s both;
}

/* Additional animations */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Responsive adjustments for thanks page */
@media (max-width: 768px) {
	.thanks-title {
		font-size: 2.5rem;
	}

	.thanks-message {
		font-size: 1.1rem;
	}

	.thanks-icon {
		width: 100px;
		height: 100px;
		font-size: 3rem;
	}

	.thanks-actions {
		flex-direction: column;
		align-items: center;
	}

	.thanks-actions .btn {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 576px) {
	.thanks-title {
		font-size: 2rem;
	}

	.thanks-message {
		font-size: 1rem;
	}

	.thanks-icon {
		width: 80px;
		height: 80px;
		font-size: 2.5rem;
	}
}

/* Scroll effects and additional animations */
.site-header.scrolled {
	background: rgba(15, 23, 42, 0.98);
	backdrop-filter: blur(25px);
	box-shadow: var(--shadow-lg);
	padding: 0.5rem 0;
}

.navbar-toggler.active .navbar-toggler-icon {
	transform: rotate(90deg);
}

.navbar-toggler-icon {
	transition: var(--transition);
}

/* Reveal animations */
.reveal {
	position: relative;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.reveal.reveal-left {
	transform: translateX(-50px);
}

.reveal.reveal-right {
	transform: translateX(50px);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right {
	transform: translateX(0);
}

/* Hover effects for cards */
.card.hover,
.about-card.hover,
.service-card.hover,
.advantage-card.hover,
.testimonial-card.hover,
.feature-item.hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-xl);
}

/* Form validation styles */
.form-control.is-invalid {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
	border-color: #198754;
	box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Loading states */
.btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.btn-success {
	background: var(--gradient-secondary);
	border: none;
}

.btn-success:hover {
	background: var(--gradient-secondary);
	transform: none;
}

/* Counter styles */
.counter {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary);
	text-align: center;
}

.counter-label {
	font-size: 1.1rem;
	color: var(--text-secondary);
	text-align: center;
	margin-top: 0.5rem;
}

/* Lazy loading */
.lazy {
	opacity: 0;
	transition: opacity 0.3s;
}

.lazy.loaded {
	opacity: 1;
}

/* Additional button styles */
.btn-lg {
	padding: 15px 30px;
	font-size: 1.1rem;
}

.btn-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Enhanced shadows for depth */
.depth-1 {
	box-shadow: var(--shadow-sm);
}
.depth-2 {
	box-shadow: var(--shadow-md);
}
.depth-3 {
	box-shadow: var(--shadow-lg);
}
.depth-4 {
	box-shadow: var(--shadow-xl);
}

/* Text utilities */
.text-gradient-primary {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-gradient-secondary {
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-gradient-accent {
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Border utilities */
.border-gradient-primary {
	border: 2px solid;
	border-image: var(--gradient-primary) 1;
}

.border-gradient-secondary {
	border: 2px solid;
	border-image: var(--gradient-secondary) 1;
}

/* Background utilities */
.bg-gradient-primary {
	background: var(--gradient-primary);
}

.bg-gradient-secondary {
	background: var(--gradient-secondary);
}

.bg-gradient-accent {
	background: var(--gradient-accent);
}

/* Glass morphism effect */
.glass {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced transitions */
.transition-fast {
	transition: var(--transition-fast);
}
.transition-normal {
	transition: var(--transition);
}
.transition-slow {
	transition: var(--transition-slow);
}

/* Focus states */
.btn:focus,
.form-control:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.25);
}

/* Print styles */
@media print {
	.site-header,
	.footer,
	.back-to-top,
	.btn {
		display: none !important;
	}

	body {
		background: white !important;
		color: black !important;
	}

	.page-header {
		background: white !important;
		color: black !important;
	}

	.content-card {
		box-shadow: none !important;
		border: 1px solid #ccc !important;
	}
}
