:root {
	--primary: #d7f4df;
	--primary-dark: #a8e6c3;
	--primary-darker: #7dd87f;
	--primary-light: #e8f9ed;
	--primary-50: #f0fdf4;
	--primary-100: #d7f4df;
	
	--text-primary: #0a0a0a;
	--text-secondary: #1a1a1a;
	--text-muted: #5a5a5a;
	
	--bg-primary: #ffffff;
	--bg-secondary: #fafafa;
	--bg-card: #ffffff;
	
	--border: rgba(215, 244, 223, 0.4);
	--border-light: rgba(215, 244, 223, 0.2);
	--border-dark: rgba(215, 244, 223, 0.6);
	
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08);
	--shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
	
	/* Card Design Variables */
	--mint-green: #2DD4BF;
	--card-title-color: #0F172A;
	--card-text-color: #475569;
	--card-padding: 24px;
	--card-radius: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

html, body {
	overflow-x: hidden;
	position: relative;
}

body {
	font-family: 'Cairo', 'Tajawal', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.75;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	letter-spacing: -0.01em;
	width: 100%;
	max-width: 100vw;
}

/* Interactive gray circles background */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 10% 20%, rgba(156, 163, 175, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 90% 80%, rgba(156, 163, 175, 0.08) 0%, transparent 50%);
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 1;
	transition: all 0.3s ease;
}

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 15% 25%, rgba(156, 163, 175, 0.06) 0%, transparent 45%),
		radial-gradient(circle at 85% 75%, rgba(156, 163, 175, 0.06) 0%, transparent 45%);
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 1;
	transition: all 0.3s ease;
}

main, header, footer {
	position: relative;
	z-index: 1;
}

/* Interactive circles */
.interactive-circle {
	position: fixed;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(156, 163, 175, 0.1) 0%, rgba(156, 163, 175, 0.05) 40%, transparent 70%);
	pointer-events: none;
	z-index: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform, opacity;
}

.interactive-circle.circle-1 {
	width: 400px;
	height: 400px;
	top: -10%;
	left: -5%;
}

.interactive-circle.circle-2 {
	width: 500px;
	height: 500px;
	bottom: -10%;
	right: -5%;
}

.interactive-circle.circle-3 {
	width: 300px;
	height: 300px;
	top: 50%;
	left: 10%;
}

.interactive-circle.circle-4 {
	width: 350px;
	height: 350px;
	bottom: 20%;
	left: 5%;
}

.interactive-circle.circle-5 {
	width: 450px;
	height: 450px;
	top: 30%;
	right: -8%;
}

@media (max-width: 768px) {
	.interactive-circle {
		display: none;
	}
	
	.navbar-blur {
		border-radius: 30px;
		padding: 1.25rem 1.5rem;
		top: 1rem;
		width: calc(100% - 2rem);
		left: 1rem;
		transform: none;
	}
	
	.navbar-blur.scrolled {
		border-radius: 30px;
		padding: 1.25rem 1.5rem;
		top: 1rem;
		width: calc(100% - 2rem);
		left: 1rem;
		transform: none;
	}
	
	.nav-links .nav-link {
		font-size: 0.9375rem;
		padding: 0.625rem 1.25rem;
	}
	
}

/* Navbar - Glass Morphism Fixed Design - Always Visible */
.navbar-blur {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(30px) saturate(200%);
	-webkit-backdrop-filter: blur(30px) saturate(200%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
	padding: 1.5rem 2rem;
	margin: 0 auto;
	max-width: 1400px;
	position: fixed;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 3rem);
	z-index: 1000;
	transition: none;
}

.navbar-blur::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
	z-index: -1;
	opacity: 1;
}

.navbar-blur::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
	z-index: -1;
	opacity: 0.6;
	pointer-events: none;
}

/* Navbar stays fixed - no scroll effects */
.navbar-blur.scrolled {
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
	padding: 1.5rem 2rem;
	top: 1.5rem;
	border-radius: 50px;
	border-color: rgba(255, 255, 255, 0.3);
}

.navbar-blur .container {
	max-width: 100%;
	padding: 0;
}

.navbar-brand.brand {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0.5rem 0;
}

.navbar-brand.brand:hover {
	color: var(--text-secondary);
	transform: translateY(-1px);
}

.brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
	position: relative;
	animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.brand-symbol {
	color: var(--primary-darker);
	font-weight: 600;
	font-size: 1.25rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	position: relative;
	opacity: 0.9;
	animation: symbolPulse 2s ease-in-out infinite;
	text-shadow: 0 0 8px rgba(215, 244, 223, 0.4);
}

.brand-symbol::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgba(215, 244, 223, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	z-index: -1;
	animation: symbolGlow 2s ease-in-out infinite;
}

.brand-open {
	margin-left: 0.25rem;
	animation-delay: 0s;
}

.brand-close {
	margin-right: 0.25rem;
	animation-delay: 0.5s;
}

.brand-name {
	color: var(--text-primary);
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.01em;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	background: linear-gradient(90deg, var(--text-primary) 0%, var(--text-primary) 50%, var(--primary-darker) 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: nameShine 3s ease-in-out infinite;
}

.brand-name::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary-darker), transparent);
	animation: underlineExpand 3s ease-in-out infinite;
}

.navbar-brand.brand:hover .brand-symbol {
	color: var(--primary-darker);
	transform: scale(1.2) rotate(5deg);
	text-shadow: 0 0 15px rgba(215, 244, 223, 0.8);
	opacity: 1;
	animation: symbolBounce 0.6s ease-in-out;
}

.navbar-brand.brand:hover .brand-symbol::before {
	opacity: 0.6;
	animation: symbolGlowHover 1s ease-in-out infinite;
}

.navbar-brand.brand:hover .brand-name {
	transform: translateX(3px);
	background-position: 100% 0;
	animation: nameShineHover 1.5s ease-in-out infinite;
}

.navbar-brand.brand:hover .brand-name::after {
	width: 100%;
	animation: underlineExpandHover 1.5s ease-in-out infinite;
}

.navbar-brand.brand:hover .brand-open {
	transform: translateX(-5px) scale(1.2) rotate(-5deg);
	animation: symbolBounce 0.6s ease-in-out;
}

.navbar-brand.brand:hover .brand-close {
	transform: translateX(5px) scale(1.2) rotate(5deg);
	animation: symbolBounce 0.6s ease-in-out 0.2s;
}

@keyframes symbolPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.9;
		text-shadow: 0 0 8px rgba(215, 244, 223, 0.4);
	}
	50% {
		transform: scale(1.05);
		opacity: 1;
		text-shadow: 0 0 12px rgba(215, 244, 223, 0.6);
	}
}

@keyframes symbolGlow {
	0%, 100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.8);
	}
	50% {
		opacity: 0.4;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

@keyframes symbolGlowHover {
	0%, 100% {
		opacity: 0.4;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(1.3);
	}
}

@keyframes symbolBounce {
	0%, 100% {
		transform: scale(1.2) translateY(0);
	}
	50% {
		transform: scale(1.3) translateY(-5px);
	}
}

@keyframes nameShine {
	0%, 100% {
		background-position: 0% 0;
	}
	50% {
		background-position: 100% 0;
	}
}

@keyframes nameShineHover {
	0%, 100% {
		background-position: 0% 0;
	}
	50% {
		background-position: 100% 0;
	}
}

@keyframes underlineExpand {
	0%, 100% {
		width: 0;
		opacity: 0;
	}
	50% {
		width: 100%;
		opacity: 1;
	}
}

@keyframes underlineExpandHover {
	0%, 100% {
		width: 0;
		opacity: 0.5;
	}
	50% {
		width: 100%;
		opacity: 1;
	}
}

.navbar-brand img {
	border-radius: 8px;
	transition: all 0.3s ease;
}

.navbar-brand:hover img {
	transform: scale(1.05);
}

.navbar-toggler {
	border: 1.5px solid var(--border-light);
	border-radius: 12px;
	padding: 0.625rem 0.875rem;
	background: rgba(255, 255, 255, 0.9);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler:hover {
	background: var(--primary);
	border-color: var(--primary-darker);
	transform: scale(1.05);
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 3px rgba(215, 244, 223, 0.2);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 1.5em;
	height: 1.5em;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	justify-content: center;
}

.nav-links .nav-link {
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 1rem;
	padding: 0.875rem 1.5rem;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	letter-spacing: -0.01em;
	text-decoration: none;
}

.nav-links .nav-link::after {
	content: "";
	position: absolute;
	bottom: 0.5rem;
	right: 1.5rem;
	left: 1.5rem;
	height: 2px;
	background: var(--primary-darker);
	transform: scaleX(0);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 2px;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
	color: var(--text-primary);
	font-weight: 600;
	background: rgba(215, 244, 223, 0.2);
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
	transform: scaleX(1);
}

/* Responsive navbar enhancements */
@media (max-width: 991.98px) {
	.navbar-blur {
		padding: 1rem 1rem;
		border-radius: 28px;
	}
	
	.navbar-blur .navbar-collapse {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(16px) saturate(150%);
		-webkit-backdrop-filter: blur(16px) saturate(150%);
		border: 1px solid rgba(0, 0, 0, 0.06);
		border-radius: 16px;
		padding: 0.75rem;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
		margin-top: 0.75rem;
	}

	.nav-links {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
	}

	.nav-links .nav-link {
		display: block;
		width: 100%;
		padding: 0.875rem 1rem;
		border-radius: 12px;
	}
}

/* Decorative star background pattern */
.star-pattern {
	position: relative;
	isolation: isolate;
}

.star-pattern::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: .12;
	background-repeat: repeat;
	background-size: 28px 28px;
	background-position: 0 0;
	/* inline SVG diamond-star with soft corners */
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path fill='%23ffffff' d='M12 2.7c.5 0 1 .2 1.4.6l2.3 2.3c.4.4.9.6 1.4.6H20c.8 0 1.5.7 1.5 1.5v2.9c0 .5.2 1 .6 1.4l2.3 2.3c.8.8.8 2 0 2.8l-2.3 2.3c-.4.4-.6.9-.6 1.4V20c0 .8-.7 1.5-1.5 1.5h-2.9c-.5 0-1 .2-1.4.6l-2.3 2.3c-.8.8-2 .8-2.8 0l-2.3-2.3c-.4-.4-.9-.6-1.4-.6H4c-.8 0-1.5-.7-1.5-1.5v-2.9c0-.5-.2-1-.6-1.4L-.4 14c-.8-.8-.8-2 0-2.8l2.3-2.3c.4-.4.6-.9.6-1.4V4C2.5 3.2 3.2 2.5 4 2.5h2.9c.5 0 1-.2 1.4-.6L10.6 0c.8-.8 2-.8 2.8 0L15.7 1.9c.1.1.2.2.3.3c-.7.1-1.5.3-2.2.5c-.7.2-1.4.7-1.8 1.1c-.4-.4-1.1-.9-1.8-1.1c-.7-.2-1.5-.4-2.2-.5c.1-.1.2-.2.3-.3L10.6 0Z' opacity='.9'/></svg>");
}

.star-pattern::after {
	content: "";
	position: absolute;
	inset: -10% -10% -10% -10%;
	z-index: 0;
	pointer-events: none;
	opacity: .06;
	background-repeat: no-repeat;
	background-size: 30% auto, 22% auto, 16% auto;
	background-position: 10% 20%, 80% 10%, 60% 85%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24'><path fill='%23ffffff' d='M12 2.5c.6 0 1.1.2 1.6.7l2.6 2.6c.4.4 1 .7 1.6.7H20c.8 0 1.5.7 1.5 1.5v2.2c0 .6.2 1.1.7 1.6l2.6 2.6c.9.9.9 2.3 0 3.2l-2.6 2.6c-.4.4-.7 1-.7 1.6V20c0 .8-.7 1.5-1.5 1.5h-2.2c-.6 0-1.1.2-1.6.7l-2.6 2.6c-.9.9-2.3.9-3.2 0L8.2 22.2c-.4-.4-1-.7-1.6-.7H4.5C3.7 21.5 3 20.8 3 20v-2.2c0-.6-.2-1.1-.7-1.6L-.3 13.6c-.9-.9-.9-2.3 0-3.2l2.6-2.6c.4-.4.7-1 .7-1.6V4.5C3 3.7 3.7 3 4.5 3h2.2c.6 0 1.1-.2 1.6-.7L10.9-.3c.9-.9 2.3-.9 3.2 0L16.7 2c.3.3.6.6.8.9c-1 .1-2 .4-3 .9c-.9.4-1.8 1.1-2.3 1.7c-.6-.6-1.4-1.3-2.3-1.7c-1-.5-2-.8-3-.9c.3-.3.5-.6.8-.9L10.9-.3Z' opacity='.9'/></svg>");
}

/* Global Page Loader */
.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 20%, rgba(125, 216, 127, 0.08), transparent 40%),
		radial-gradient(circle at 80% 80%, rgba(125, 216, 127, 0.08), transparent 40%),
		#ffffff;
	z-index: 2147483000;
	display: none;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

.page-loader.show {
	display: flex;
}

.loader-card {
	background: #ffffff;
	border: 2px solid rgba(125, 216, 127, 0.25);
	border-radius: 20px;
	padding: 1.75rem 2rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
	text-align: center;
	min-width: 260px;
}

.loader-logo {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	margin: 0 auto 1rem;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #7dd87f, #a8e6c3);
	color: #ffffff;
	font-weight: 800;
	font-size: 1.25rem;
	box-shadow: 0 8px 24px rgba(125, 216, 127, 0.4);
	position: relative;
}

.loader-logo::after {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 14px;
	border: 2px solid rgba(125, 216, 127, 0.35);
	animation: pulseBorder 1.6s ease-in-out infinite;
}

@keyframes pulseBorder {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.04); }
}

.loader-progress {
	margin-top: 0.5rem;
	width: 160px;
	height: 6px;
	background: #eef2f7;
	border-radius: 999px;
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}

.loader-progress::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -40%;
	width: 40%;
	background: linear-gradient(90deg, #7dd87f, #a8e6c3);
	border-radius: 999px;
	animation: loaderSlide 1.2s linear infinite;
}

@keyframes loaderSlide {
	0% { left: -40%; }
	100% { left: 100%; }
}

.loader-text {
	margin-top: 0.75rem;
	font-size: 0.9375rem;
	color: #64748b;
}

/* Mobile Overlay Menu */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: stretch;
	justify-content: flex-end;
	z-index: 2147483600;
	opacity: 0;
	transition: opacity .25s ease;
}

.mobile-menu-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.35);
	backdrop-filter: blur(2px);
}

.mobile-menu-overlay.show { display: flex; opacity: 1; }

.mobile-menu-surface {
	position: relative;
	width: 100vw;
	max-width: none;
	height: 100vh;
	margin: 0;
	background: linear-gradient(135deg, #48b47b, #7dd87f);
	overflow: hidden;
	border-radius: 0;
	box-shadow: 0 24px 80px rgba(0,0,0,.25);
	/* Fullscreen curved shape from top-left */
	clip-path: circle(150% at 0 0);
	-webkit-clip-path: circle(150% at 0 0);
	transform: translateX(16px);
	opacity: .98;
	transition: transform .32s cubic-bezier(.2,.8,.2,1), clip-path .32s ease;
}

.mobile-menu-overlay.show .mobile-menu-surface { transform: translateX(0); }

.mobile-menu-surface::before { content: none; }
.mobile-menu-surface::after { content: none; }

.mobile-menu-close {
	position: absolute;
	top: 20px;
	right: 24px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
	color: #fff;
	backdrop-filter: blur(4px);
	font-size: 1.1rem;
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(0,0,0,.15) inset, 0 2px 8px rgba(0,0,0,.15);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.28); }

.mobile-menu-inner {
	position: relative;
	z-index: 1;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 24px 40px;
	color: #fff;
}

.mobile-menu-logo { 
	margin-bottom: 28px; 
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.mobile-menu-nav { display: flex; flex-direction: column; gap: 22px; align-items: center; }

.mobile-menu-link {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: .2px;
	text-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.mobile-menu-link:active { transform: scale(.98); }

.mobile-menu-cta {
	margin-top: 26px;
	background: #0f5132;
	background: linear-gradient(135deg, #0f8f5a, #17b26a);
	color: #fff;
	border: 0;
	border-radius: 14px;
	padding: 12px 18px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(23, 178, 106, .35);
}

.mobile-menu-cta:active { transform: translateY(1px); }

/* Glassmorphism header with interactive glow */
.navbar-blur {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, 96%);
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 0 0 0 rgba(125,216,127,0.0);
    border-radius: 22px;
    z-index: 2147483000;
    isolation: isolate;
    overflow: hidden;
}

/* Ensure no default navbar background overrides */
.navbar { background: transparent !important; }
.navbar-blur .container { background: transparent !important; }

.navbar-blur::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
    background: radial-gradient(180px 150px at var(--mx,50%) var(--my,50%), rgba(125,216,127,.75), transparent 60%);
    filter: blur(24px) saturate(160%);
    opacity: var(--glow, 0);
	transition: opacity .35s ease;
    z-index: 0;
    pointer-events: none;
    /* keep the glow on the edges only */
    padding: 2px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Fallback edge glow using inset box-shadow for browsers without mask-composite */
.navbar-blur.is-glow {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 0 28px 3px rgba(125,216,127,.45) inset;
}

/* Keep glow off unless page active logic enables it */
.navbar-blur { --glow: 0; --halo: 0; }

/* Remove halo completely */
.navbar-blur::after { display: none !important; }
.navbar-blur::before { opacity: 0 !important; }
.navbar-blur.is-glow { box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8); }

.navbar-blur .nav-link {
	position: relative;
	border-radius: 12px;
	transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.navbar-blur .nav-link:hover {
	background: rgba(232, 249, 237, 0.18);
	color: #0f766e !important;
	transform: translateY(-1px);
}

/* Active page - professional pill with soft halo */
.navbar-blur .nav-link.is-active {
    background: rgba(255,255,255,0.55);
    color: #0f766e !important;
    font-weight: 700;
    border: 1px solid rgba(125,216,127,0.28);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.navbar-blur .nav-link.is-active::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 16px;
    background:
        radial-gradient(closest-side, rgba(125,216,127,.35), transparent 70%),
        conic-gradient(from 0deg, rgba(125,216,127,.35), transparent 25%, transparent 75%, rgba(125,216,127,.35));
    filter: blur(12px) saturate(140%);
    opacity: .9;
    pointer-events: none;
    z-index: -1;
}

.navbar-blur .nav-link.is-active .underline-indicator {
    position: absolute;
    left: 14px; right: 14px; bottom: 6px;
    height: 3px; border-radius: 999px;
    background: linear-gradient(90deg, transparent, #34d399, transparent);
}

/* Slight layout breathing room */
body > header.navbar-blur { top: 10px; margin-bottom: 10px; }

@media (max-width: 991.98px) {
	.navbar-blur { border-radius: 16px; }
	.navbar-blur::before { opacity: 0 !important; }
}

/* Offset main content when header is fixed */
body.has-fixed-header main { padding-top: 84px; }

/* Inner moving halo following the cursor */
.navbar-blur::after {
    content: "";
    position: absolute;
    width: var(--halo-size, 220px);
    height: var(--halo-size, 220px);
    left: calc(var(--mx,50%) - (var(--halo-size, 220px) / 2));
    top: calc(var(--my,50%) - (var(--halo-size, 220px) / 2));
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(125,216,127,.45), rgba(125,216,127,.18) 35%, transparent 65%);
    filter: blur(18px) saturate(140%);
    opacity: var(--halo, 0);
    pointer-events: none;
    transition: opacity .25s ease, left .06s linear, top .06s linear;
    z-index: 1;
    animation: haloPulse 2.2s ease-in-out infinite;
}

@keyframes haloPulse {
    0%, 100% { transform: scale(0.96); }
    50% { transform: scale(1.06); }
}

@media (min-width: 992px) {
	.mobile-menu-btn { display: none !important; }
}


/* Buttons - Professional Glass Design */
.btn {
	font-weight: 600;
	padding: 0.875rem 2rem;
	border-radius: 12px;
	border: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	letter-spacing: -0.01em;
	font-size: 0.9375rem;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

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

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
	color: white;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--text-secondary) 0%, var(--text-primary) 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	color: white;
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-primary {
	color: var(--text-primary);
	border: 1.5px solid rgba(215, 244, 223, 0.4);
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(215, 244, 223, 0.6);
	color: var(--text-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(215, 244, 223, 0.3), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-outline-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(215, 244, 223, 0.2);
}

.btn-lg {
	padding: 1.125rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
}

/* Content Cards - Modern RTL Design with Mint Border */
.content-card {
	background: #ffffff;
	border: 1px solid var(--mint-green);
	border-radius: var(--card-radius);
	padding: var(--card-padding);
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	direction: rtl;
	text-align: right;
}

/* Light mint circular decoration at top */
.content-card::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -40px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, rgba(45, 212, 191, 0.08) 40%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	opacity: 1;
	filter: blur(20px);
}

/* Hover state */
.content-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
	border-color: var(--mint-green);
}

.content-card:hover::before {
	opacity: 1.2;
	transform: scale(1.1);
}

/* Focus state for accessibility */
.content-card:focus-within {
	outline: 2px solid var(--mint-green);
	outline-offset: 2px;
	border-color: var(--mint-green);
	box-shadow: 0 4px 16px rgba(45, 212, 191, 0.2), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.content-card-header {
	position: relative;
	z-index: 1;
	margin-bottom: 1rem;
}

.content-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--card-title-color);
	line-height: 1.3;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
	text-align: right;
	font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* Decorative squiggle icon */
.content-card-decoration {
	margin: 0.75rem 0 1rem 0;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	text-align: right;
	color: var(--mint-green);
	font-size: 1.5rem;
	line-height: 1;
	display: inline-block;
}

.content-card-decoration svg {
	width: 40px;
	height: 10px;
	stroke: var(--mint-green);
	stroke-width: 2.5;
	display: block;
}

.content-card:hover .content-card-decoration {
	opacity: 1;
}

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

.content-card-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--card-text-color);
	font-weight: 400;
	margin-bottom: 0;
	text-align: right;
	font-family: 'Cairo', 'Tajawal', sans-serif;
}

.content-card-text strong {
	color: var(--card-title-color);
	font-weight: 600;
}

/* Contact Info Items */
.contact-info-item {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 2rem;
	padding: 1.25rem;
	border-radius: 16px;
	background: rgba(215, 244, 223, 0.05);
	transition: all 0.3s ease;
}

.contact-info-item:hover {
	background: rgba(215, 244, 223, 0.1);
	transform: translateX(-4px);
}

.contact-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(215, 244, 223, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--primary-darker);
	font-size: 1.25rem;
}

.contact-details {
	flex: 1;
}

.contact-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	letter-spacing: -0.01em;
}

.contact-link {
	color: #374151;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	display: inline-block;
	font-weight: 500;
}

.contact-link:hover {
	color: var(--primary-darker);
	transform: translateX(2px);
}

.contact-link:focus {
	outline: 2px solid var(--primary-darker);
	outline-offset: 2px;
	border-radius: 4px;
}

.contact-text {
	color: #374151;
	font-size: 0.9375rem;
	margin-bottom: 0;
	line-height: 1.6;
	font-weight: 400;
}

.contact-hours {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(215, 244, 223, 0.3);
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
}

.hours-day {
	color: #374151;
	font-size: 0.9375rem;
	font-weight: 400;
}

.hours-time {
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.9375rem;
}

/* Feature Cards in Contact Page */
.feature-card .content-card-header {
	text-align: center;
}

.feature-icon {
	font-size: 3rem;
	color: var(--primary-darker);
	margin-bottom: 1rem;
	display: block;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) translateY(-4px);
	color: var(--primary-darker);
}

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

.feature-card .content-card-text {
	margin-bottom: 0;
}

/* Responsive Content Cards */
@media (max-width: 991px) {
	.content-card {
		padding: 20px;
		border-radius: 14px;
	}
	
	.content-card-title {
		font-size: 1.375rem;
	}
	
	.content-card-text {
		font-size: 0.9375rem;
	}
	
	.content-card::before {
		width: 140px;
		height: 140px;
		top: -50px;
		right: -30px;
	}
}

@media (max-width: 768px) {
	.content-card {
		padding: 20px;
		border-radius: 12px;
	}
	
	.content-card-title {
		font-size: 1.25rem;
	}
	
	.content-card-text {
		font-size: 0.875rem;
		line-height: 1.6;
	}
	
	.content-card-decoration {
		margin: 0.5rem 0 0.75rem 0;
	}
	
	.content-card-decoration svg {
		width: 28px;
		height: 7px;
	}
	
	.content-card::before {
		width: 120px;
		height: 120px;
		top: -40px;
		right: -25px;
	}
	
	.contact-info-item {
		flex-direction: column;
		text-align: center;
		padding: 1rem;
	}
	
	.contact-icon {
		margin: 0 auto;
	}
	
	.feature-icon {
		font-size: 2.5rem;
	}
	
	.feature-card .content-card-title {
		font-size: 1.25rem;
	}
}

/* Cards - Glass Morphism with Organic Glow */
.card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(215, 244, 223, 0.4);
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: visible;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.card::before {
	content: "";
	position: absolute;
	top: -40px;
	left: -40px;
	right: -40px;
	bottom: -40px;
	background: 
		radial-gradient(ellipse 180% 120% at 50% -15%, rgba(215, 244, 223, 0.5) 0%, rgba(215, 244, 223, 0.2) 40%, transparent 70%),
		radial-gradient(ellipse 120% 180% at -15% 50%, rgba(215, 244, 223, 0.35) 0%, rgba(215, 244, 223, 0.15) 40%, transparent 70%),
		radial-gradient(ellipse 120% 180% at 115% 50%, rgba(215, 244, 223, 0.35) 0%, rgba(215, 244, 223, 0.15) 40%, transparent 70%),
		radial-gradient(ellipse 180% 120% at 50% 115%, rgba(215, 244, 223, 0.3) 0%, rgba(215, 244, 223, 0.1) 40%, transparent 70%);
	background-size: 100% 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
	z-index: -1;
	border-radius: 35px;
	filter: blur(25px);
	animation: organicGlow 6s ease-in-out infinite;
}

.card::after {
	content: "";
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 80px;
	background: radial-gradient(ellipse, rgba(215, 244, 223, 0.5) 0%, rgba(215, 244, 223, 0.2) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: -1;
	border-radius: 50%;
	filter: blur(25px);
	animation: organicGlowTop 5s ease-in-out infinite;
}

.card:hover::before,
.card:hover::after {
	opacity: 1;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 30px rgba(215, 244, 223, 0.2);
	border-color: rgba(215, 244, 223, 0.6);
	background: rgba(255, 255, 255, 1);
}

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

@keyframes organicGlow {
	0%, 100% {
		transform: scale(1) translate(0, 0);
		opacity: 0;
		filter: blur(25px);
	}
	25% {
		transform: scale(1.08) translate(8px, -8px) rotate(2deg);
		opacity: 0.7;
		filter: blur(28px);
	}
	50% {
		transform: scale(1.12) translate(-8px, 8px) rotate(-2deg);
		opacity: 0.85;
		filter: blur(30px);
	}
	75% {
		transform: scale(1.08) translate(5px, -5px) rotate(1deg);
		opacity: 0.7;
		filter: blur(28px);
	}
}

@keyframes organicGlowTop {
	0%, 100% {
		transform: translateX(-50%) translateY(0) scale(1);
		opacity: 0;
		filter: blur(25px);
	}
	25% {
		transform: translateX(-50%) translateY(-5px) scale(1.1);
		opacity: 0.6;
		filter: blur(28px);
	}
	50% {
		transform: translateX(-50%) translateY(-10px) scale(1.2);
		opacity: 0.8;
		filter: blur(30px);
	}
	75% {
		transform: translateX(-50%) translateY(-5px) scale(1.1);
		opacity: 0.6;
		filter: blur(28px);
	}
}

.card-body {
	padding: 2.5rem;
}

.feature .card-body {
	padding: 3rem 2.5rem;
	text-align: center;
	position: relative;
	z-index: 1;
}

.service-card .card-body {
	padding: 2.5rem;
	position: relative;
	z-index: 1;
}

.feature .card-body i {
	font-size: 2.5rem;
	margin-bottom: 1.75rem;
	color: var(--text-primary);
	display: block;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.85;
}

.feature .card:hover .card-body i {
	transform: translateY(-4px);
	color: var(--text-primary);
	opacity: 1;
}

.feature .card-body h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
	letter-spacing: -0.02em;
}

.feature .card-body p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
	font-weight: 400;
}

.service-card .card-body i {
	font-size: 2.25rem;
	color: var(--text-primary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.85;
}

.service-card:hover .card-body i {
	transform: translateY(-4px);
	color: var(--text-primary);
	opacity: 1;
}

/* Services Section - Professional */
.services-section {
	background: white;
	position: relative;
	overflow: hidden;
}

.services-section::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

.services-section::after {
	content: "";
	position: absolute;
	bottom: -30%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.4;
	pointer-events: none;
	z-index: 0;
}

.services-section > * {
	position: relative;
	z-index: 1;
}

.services-header {
	margin-bottom: 3rem;
}

.services-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.services-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.services-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

.service-card-modern {
	background: white;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 2px solid var(--border);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.service-card-modern::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.service-card-modern:hover::before {
	opacity: 1;
}

.service-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
	background: var(--primary-light);
}

.service-card-icon-wrapper {
	position: relative;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-card-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	box-shadow: 0 8px 20px rgba(125, 216, 127, 0.3);
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

.service-card-modern:hover .service-card-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 30px rgba(125, 216, 127, 0.4);
}

.service-card-number {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary);
	color: var(--primary-darker);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.875rem;
	border: 3px solid white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 3;
}

.service-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.service-card-description {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	flex: 1;
}

.service-features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.service-features-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--text-primary);
}

.service-features-list li i {
	color: var(--primary-darker);
	font-size: 1rem;
	flex-shrink: 0;
}

.service-card-link {
	display: inline-flex;
	align-items: center;
	color: var(--primary-darker);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 2px solid var(--border);
}

.service-card-link:hover {
	color: var(--primary-darker);
	transform: translateX(-5px);
	text-decoration: none;
}

.service-card-link i {
	transition: transform 0.3s ease;
}

.service-card-link:hover i {
	transform: translateX(-3px);
}

.service-card-decoration {
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.service-card-modern:hover .service-card-decoration {
	opacity: 0.3;
}

/* Responsive Services */
@media (max-width: 768px) {
	.services-title {
		font-size: 2rem;
	}
	
	.service-card-modern {
		padding: 2rem;
	}
	
	.service-card-icon {
		width: 70px;
		height: 70px;
		font-size: 2rem;
	}
	
	.service-card-title {
		font-size: 1.25rem;
	}
}

/* Hero Section - Professional */
.hero-section {
	padding: 6rem 0;
	position: relative;
	background: linear-gradient(180deg, var(--primary-light) 0%, white 100%);
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.6;
	pointer-events: none;
	z-index: 0;
}

.hero-section::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -15%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

.hero-section > * {
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
	transition: all 0.3s ease;
}

.hero-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(125, 216, 127, 0.4);
}

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

.hero-highlight {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.hero-highlight-2 {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-highlight-3 {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--text-muted);
	margin-bottom: 2rem;
	max-width: 90%;
}

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

.btn-hero-primary {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-size: 1.0625rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
	position: relative;
	overflow: hidden;
}

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

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

.btn-hero-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(125, 216, 127, 0.4);
	color: white;
	text-decoration: none;
}

.btn-hero-secondary {
	background: white;
	color: var(--primary-darker);
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-size: 1.0625rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	border: 2px solid var(--primary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(215, 244, 223, 0.2);
}

.btn-hero-secondary:hover {
	background: var(--primary-light);
	border-color: var(--primary-darker);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(215, 244, 223, 0.3);
	color: var(--primary-darker);
	text-decoration: none;
}

.hero-features {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border);
	transition: all 0.3s ease;
	flex: 1;
	min-width: 180px;
}

.hero-feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	border-color: var(--primary);
}

.hero-feature-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-feature-icon.experience {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.hero-feature-icon.performance {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.hero-feature-icon.security {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.hero-feature-content {
	flex: 1;
}

.hero-feature-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.hero-feature-label {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.hero-image-wrapper {
	position: relative;
	padding: 2rem;
	overflow: visible;
}

.hero-image-bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--primary);
	border-radius: 30px;
	transform: rotate(-3deg);
	opacity: 0.3;
	z-index: 0;
}

.hero-image-decoration {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 1;
	pointer-events: none;
}

.hero-image {
	position: relative;
	width: 100%;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border: 4px solid var(--primary);
	z-index: 2;
	transition: all 0.5s ease;
	display: block;
	object-fit: cover;
}

.hero-image:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hero-floating-card {
	position: absolute;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border: 2px solid var(--primary);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	color: var(--text-primary);
	z-index: 3;
	animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
	font-size: 1.5rem;
	color: var(--primary-darker);
}

.hero-floating-card.card-1 {
	top: 10%;
	right: 0;
	animation-delay: 0s;
}

.hero-floating-card.card-2 {
	bottom: 20%;
	right: 0;
	animation-delay: 1s;
}

.hero-floating-card.card-3 {
	top: 50%;
	left: 0;
	animation-delay: 2s;
}

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

/* Methodology Section */
.methodology-section {
	padding: 4rem 0;
	background: white;
}

.methodology-header {
	margin-bottom: 3rem;
}

.methodology-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.methodology-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.methodology-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 0;
}

.methodology-steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
}

.methodology-step {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	position: relative;
	padding: 1.5rem;
	background: white;
	border-radius: 20px;
	border: 2px solid var(--border);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-step:hover {
	background: var(--primary-light);
	border-color: var(--primary);
	transform: translateX(-10px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	font-weight: 800;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(125, 216, 127, 0.3);
	position: relative;
	z-index: 2;
}

.step-content {
	flex: 1;
}

.step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.step-description {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

.step-line {
	position: absolute;
	right: 50px;
	top: 90px;
	width: 2px;
	height: calc(100% + 2rem);
	background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
	z-index: 1;
}

.methodology-step:last-child .step-line {
	display: none;
}

.methodology-stats-card {
	background: white;
	border-radius: 30px;
	padding: 3rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--border);
	position: relative;
	overflow: hidden;
	height: 100%;
}

.methodology-stats-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.stats-card-header {
	margin-bottom: 2rem;
	text-align: center;
}

.stats-card-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.stats-card-decoration {
	margin: 1rem auto;
	text-align: center;
}

.stats-card-decoration svg {
	width: 60px;
	height: 15px;
}

.stat-box {
	text-align: center;
	padding: 2rem;
	background: var(--primary-light);
	border-radius: 20px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.stat-box:hover {
	background: white;
	border-color: var(--primary);
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-value-large {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	line-height: 1;
}

.stat-label-large {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
}

/* Testimonials Carousel */
#testimonialsCarousel {
	position: relative;
	overflow: visible;
	padding: 0 60px;
	margin: 0 auto;
	max-width: 100%;
}

.testimonial-slide-wrapper {
	padding: 2rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}

.testimonial-slide-card {
	background: white;
	border-radius: 30px;
	padding: 3rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--border);
	max-width: 800px;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.testimonial-slide-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.testimonial-slide-quote-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin: 0 auto 2rem;
	box-shadow: 0 8px 20px rgba(125, 216, 127, 0.3);
}

.testimonial-slide-content {
	margin-bottom: 2rem;
}

.testimonial-slide-quote {
	font-size: 1.25rem;
	line-height: 1.9;
	color: var(--text-primary);
	font-style: italic;
	margin: 0;
}

.testimonial-slide-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	padding-top: 2rem;
	border-top: 2px solid var(--border);
}

.testimonial-slide-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(125, 216, 127, 0.3);
}

.testimonial-slide-info {
	text-align: right;
}

.testimonial-slide-name {
	font-weight: 700;
	color: var(--text-primary);
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.testimonial-slide-role {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.carousel-indicators {
	bottom: -50px;
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
	opacity: 1;
	background: var(--primary-darker);
	width: 30px;
	border-radius: 6px;
}

/* Testimonials Carousel Controls */
#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
	width: 60px !important;
	height: 60px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	background: #ffffff !important;
	border-radius: 50% !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 0 3px #d7f4df !important;
	border: 3px solid #d7f4df !important;
	opacity: 1 !important;
	filter: none !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative !important;
	overflow: hidden !important;
	z-index: 10 !important;
}

#testimonialsCarousel .carousel-control-prev::before,
#testimonialsCarousel .carousel-control-next::before {
	content: "" !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 0 !important;
	height: 0 !important;
	border-radius: 50% !important;
	background: #d7f4df !important;
	transform: translate(-50%, -50%) !important;
	transition: all 0.5s ease !important;
	opacity: 0 !important;
	z-index: -1 !important;
}

.testimonials-carousel-container {
	overflow: visible;
}

#testimonialsCarousel .carousel-control-prev {
	right: -30px;
}

#testimonialsCarousel .carousel-control-next {
	left: -30px;
}

#testimonialsCarousel .carousel-control-prev:hover::before,
#testimonialsCarousel .carousel-control-next:hover::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
	background: #d7f4df !important;
	border-color: #a8e6c3 !important;
	transform: translateY(-50%) scale(1.15) !important;
	box-shadow: 0 12px 40px rgba(215, 244, 223, 0.6), 0 0 0 6px rgba(215, 244, 223, 0.4) !important;
	filter: none !important;
}

#testimonialsCarousel .carousel-control-prev:active,
#testimonialsCarousel .carousel-control-next:active {
	transform: translateY(-50%) scale(1.05);
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
	background: none !important;
	width: 0 !important;
	height: 0 !important;
	position: relative;
	z-index: 2;
}

#testimonialsCarousel .carousel-control-prev-icon::before,
#testimonialsCarousel .carousel-control-next-icon::before {
	content: "" !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 14px !important;
	height: 14px !important;
	border: 3px solid #7dd87f !important;
	border-bottom: none !important;
	border-left: none !important;
	transform: translate(-30%, -50%) rotate(45deg) !important;
	transition: all 0.3s ease !important;
}

#testimonialsCarousel .carousel-control-next-icon::before {
	transform: translate(-70%, -50%) rotate(-135deg) !important;
}

#testimonialsCarousel .carousel-control-prev:hover .carousel-control-prev-icon::before,
#testimonialsCarousel .carousel-control-next:hover .carousel-control-next-icon::before {
	border-color: #a8e6c3 !important;
	width: 16px !important;
	height: 16px !important;
}

/* Responsive Hero */
@media (max-width: 991px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.125rem;
	}
	
	.hero-floating-card {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 4rem 0;
	}
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
		max-width: 100%;
	}
	
	.btn-hero-primary,
	.btn-hero-secondary {
		padding: 0.875rem 2rem;
		font-size: 1rem;
		width: 100%;
		justify-content: center;
	}
	
	.hero-features {
		flex-direction: column;
		gap: 1rem;
	}
	
	.hero-feature-item {
		min-width: 100%;
	}
	
	.methodology-title {
		font-size: 2rem;
	}
	
	.methodology-step {
		padding: 1rem;
	}
	
	.step-number {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.testimonial-slide-card {
		padding: 2rem;
	}
	
	#testimonialsCarousel {
		padding: 0 60px;
	}
	
	.carousel-control-prev {
		right: 5px;
	}
	
	.carousel-control-next {
		left: 5px;
	}
}

/* Hero Section - Old (keeping for backward compatibility) */
.hero {
	padding: 6rem 0 4rem;
	min-height: 85vh;
	display: flex;
	align-items: center;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	left: -10%;
	top: 20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(215, 244, 223, 0.25) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

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

.hero h1 {
	font-size: 3.25rem;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 2rem;
	color: var(--text-primary);
	letter-spacing: -0.03em;
}

.hero h1 .highlight {
	color: var(--text-muted);
	font-weight: 400;
	position: relative;
}

.hero .lead {
	font-size: 1.1875rem;
	color: var(--text-muted);
	line-height: 1.75;
	margin-bottom: 2.5rem;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.hero img {
	border-radius: 20px;
	box-shadow: var(--shadow-xl);
	transition: all 0.4s ease;
}

.hero img:hover {
	transform: scale(1.02);
}

/* Hover Effects */
.hover-lift {
	transition: all 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-8px);
}

/* Tilt */
[data-tilt] {
	transform-style: preserve-3d;
}

/* CTA - Glass Morphism with Organic Glow */
.cta {
	background: rgba(215, 244, 223, 0.5);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	padding: 5rem 4rem;
	border-radius: 24px;
	position: relative;
	overflow: visible;
	color: var(--text-primary);
	border: 1px solid rgba(215, 244, 223, 0.5);
	box-shadow: 0 4px 20px rgba(215, 244, 223, 0.15);
}

.cta::before {
	content: "";
	position: absolute;
	top: -30px;
	left: -30px;
	right: -30px;
	bottom: -30px;
	background: 
		radial-gradient(ellipse 200% 150% at 50% -20%, rgba(215, 244, 223, 0.5) 0%, transparent 50%),
		radial-gradient(ellipse 150% 200% at -10% 50%, rgba(215, 244, 223, 0.4) 0%, transparent 50%),
		radial-gradient(ellipse 150% 200% at 110% 50%, rgba(215, 244, 223, 0.4) 0%, transparent 50%),
		radial-gradient(ellipse 200% 150% at 50% 120%, rgba(215, 244, 223, 0.35) 0%, transparent 50%);
	background-size: 100% 100%;
	opacity: 0.6;
	pointer-events: none;
	z-index: -1;
	border-radius: 30px;
	filter: blur(25px);
	animation: organicGlow 5s ease-in-out infinite;
}

.cta::after {
	content: "";
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 100px;
	background: radial-gradient(ellipse, rgba(215, 244, 223, 0.6) 0%, rgba(215, 244, 223, 0.3) 50%, transparent 100%);
	opacity: 0.6;
	pointer-events: none;
	z-index: -1;
	border-radius: 50%;
	filter: blur(30px);
	animation: organicGlowTop 4s ease-in-out infinite;
}

.cta:hover::before,
.cta:hover::after {
	opacity: 0.9;
	animation-duration: 3s;
}

.cta h2,
.cta p {
	color: var(--text-primary);
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}

.cta p {
	font-size: 1.0625rem;
	opacity: 0.75;
	margin-bottom: 2.5rem;
	font-weight: 400;
}

.cta .btn-primary {
	background: var(--text-primary);
	color: white;
}

.cta .btn-primary:hover {
	background: var(--text-secondary);
	color: white;
}

/* Trust Bar - Glass Morphism with Organic Glow */
.trust {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(215, 244, 223, 0.4);
	border-radius: 24px;
	padding: 2rem 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: visible;
}

.trust::before {
	content: "";
	position: absolute;
	top: -30px;
	left: -30px;
	right: -30px;
	bottom: -30px;
	background: 
		radial-gradient(ellipse 200% 150% at 50% -20%, rgba(215, 244, 223, 0.4) 0%, transparent 50%),
		radial-gradient(ellipse 150% 200% at -10% 50%, rgba(215, 244, 223, 0.3) 0%, transparent 50%),
		radial-gradient(ellipse 150% 200% at 110% 50%, rgba(215, 244, 223, 0.3) 0%, transparent 50%);
	background-size: 100% 100%;
	opacity: 0.5;
	pointer-events: none;
	z-index: -1;
	border-radius: 30px;
	filter: blur(20px);
	animation: organicGlow 7s ease-in-out infinite;
}

.trust > * {
	position: relative;
	z-index: 1;
}

/* Images */
.img-fluid {
	border-radius: 20px;
	transition: all 0.4s ease;
}

.img-fluid:hover {
	transform: scale(1.01);
}

/* Footer - Modern & Simple Design */
.site-footer {
	background: #e8f9ed;
	color: var(--text-primary);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding: 0;
	margin-top: 6rem;
	position: relative;
}

.footer-decoration-top {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.footer-decoration-bottom {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.footer-main {
	padding: 4rem 0 2.5rem;
	position: relative;
	z-index: 1;
}

/* Footer Brand Section */
.footer-brand-section {
	padding-right: 1rem;
}

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

.footer-logo {
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-brand-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.25rem;
	letter-spacing: -0.3px;
	margin-bottom: 1rem;
}

.footer-brand-text .brand-symbol {
	color: var(--primary-light);
	opacity: 0.8;
}

.footer-brand-text .brand-name {
	background: linear-gradient(135deg, white 0%, var(--primary-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-description {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-weight: 400;
}

/* Footer Social Links */
.footer-social {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 1.125rem;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-social-link:hover {
	background: var(--primary-darker);
	color: white;
	border-color: var(--primary-darker);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-social-link.whatsapp-link:hover {
	color: #25D366;
	background: white;
}

/* Footer Section Titles */
.footer-section-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	position: relative;
}

/* Footer Links */
.footer-links-section {
	margin-bottom: 1.5rem;
}

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

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

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	transition: all 0.2s ease;
	padding: 0.375rem 0;
	font-weight: 400;
}

.footer-links a i {
	font-size: 0.875rem;
	opacity: 0.6;
	transition: all 0.2s ease;
	margin-left: 0.5rem;
	color: var(--primary-darker);
}

.footer-links a:hover {
	color: var(--primary-darker);
	opacity: 1;
}

.footer-links a:hover i {
	opacity: 1;
	color: var(--primary-darker);
}

/* Footer Contact Section */
.footer-contact-section {
	margin-bottom: 1.5rem;
}

.footer-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.footer-contact-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: flex-start;
	padding: 0.75rem;
	background: white;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.footer-contact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: var(--primary);
}

.footer-contact-item-full {
	grid-column: 1 / -1;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
}

.footer-contact-icon {
	width: 40px;
	height: 40px;
	background: var(--primary-light);
	border: 1px solid var(--primary);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-darker);
	font-size: 1.125rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.footer-contact-icon.whatsapp-icon {
	background: rgba(37, 211, 102, 0.1);
	border-color: rgba(37, 211, 102, 0.2);
	color: #25D366;
}

.footer-contact-item:hover .footer-contact-icon {
	background: var(--primary-darker);
	color: white;
	border-color: var(--primary-darker);
	transform: scale(1.1);
}

.footer-contact-item:hover .footer-contact-icon.whatsapp-icon {
	background: #25D366;
	color: white;
	border-color: #25D366;
}

.footer-contact-content {
	flex: 1;
}

.footer-contact-label {
	font-size: 0.7rem;
	color: var(--text-muted);
	margin-bottom: 0.375rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.footer-contact-value {
	color: var(--text-primary);
	font-size: 0.8125rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-block;
	line-height: 1.4;
	word-break: break-word;
}

.footer-contact-value:hover {
	color: var(--primary-darker);
}

.footer-contact-item-full .footer-contact-content {
	flex: 1;
}

/* Footer Working Hours */
.footer-working-hours {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.25rem;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.footer-working-hours-title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.footer-working-hours-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-working-hours-item {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-hours-label {
	color: rgba(255, 255, 255, 0.7);
}

.footer-hours-value {
	font-weight: 600;
	color: white;
}

.footer-closed {
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
}

.contact-closed {
	color: var(--text-muted);
	font-style: italic;
}

/* Legal Pages (Privacy & Terms) */
.legal-page-wrapper {
	position: relative;
	padding: 0;
}

.legal-hero-section {
	padding: 6rem 0 4rem;
	background: linear-gradient(180deg, var(--primary-light) 0%, white 100%);
	position: relative;
	overflow: hidden;
}

.legal-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.legal-hero-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	line-height: 1.3;
}

.legal-hero-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
}

.legal-content-card {
	background: white;
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-light);
	margin-bottom: 2rem;
}

.legal-content-header {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--primary-light);
}

.legal-content-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-light);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-darker);
	font-size: 1.5rem;
	flex-shrink: 0;
}

.legal-content-meta {
	flex: 1;
}

.legal-content-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.legal-content-date {
	font-size: 0.9375rem;
	color: var(--text-muted);
	display: flex;
	align-items: center;
}

.legal-content-body {
	font-size: 1.0625rem;
	color: var(--text-muted);
	line-height: 1.9;
}

.legal-content-body h3 {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-content-body h3:first-child {
	margin-top: 0;
}

.legal-content-body h4 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.legal-content-body p {
	margin-bottom: 1.25rem;
}

.legal-content-body ul,
.legal-content-body ol {
	margin-bottom: 1.25rem;
	padding-right: 1.5rem;
}

.legal-content-body li {
	margin-bottom: 0.75rem;
	line-height: 1.8;
}

.legal-content-body strong {
	color: var(--text-primary);
	font-weight: 600;
}

.legal-contact-section {
	margin-top: 3rem;
}

.legal-contact-card {
	background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
	border-radius: 24px;
	padding: 2.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 2px solid var(--primary);
}

.legal-contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	flex-shrink: 0;
}

.legal-contact-content {
	flex: 1;
}

.legal-contact-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.legal-contact-text {
	font-size: 1.0625rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.legal-contact-button {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.875rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.legal-contact-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(125, 216, 127, 0.5);
	color: white;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
	.legal-hero-section {
		padding: 4rem 0 3rem;
	}

	.legal-hero-title {
		font-size: 2rem;
	}

	.legal-hero-subtitle {
		font-size: 1rem;
	}

	.legal-content-card {
		padding: 2rem 1.5rem;
		border-radius: 20px;
	}

	.legal-content-header {
		flex-direction: column;
		gap: 1rem;
		padding-bottom: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.legal-content-icon {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.legal-content-title {
		font-size: 1.5rem;
	}

	.legal-content-body {
		font-size: 1rem;
	}

	.legal-contact-card {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
	}

	.legal-contact-icon {
		width: 60px;
		height: 60px;
		font-size: 1.75rem;
	}
}

/* Footer Bottom */
.footer-bottom {
	background: white;
	border-top: 2px solid var(--primary-light);
	padding: 1.75rem 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-copyright {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer-copyright-icon {
	width: 44px;
	height: 44px;
	background: var(--primary-light);
	border: 2px solid var(--primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-darker);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.footer-copyright-text-wrapper {
	flex: 1;
}

.footer-copyright-text {
	margin: 0;
	color: var(--text-primary);
	font-size: 0.9375rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-weight: 400;
	line-height: 1.6;
}

.footer-copyright-year {
	color: var(--text-muted);
	font-weight: 500;
}

.footer-copyright-name {
	color: var(--primary-darker);
	font-weight: 700;
}

.footer-copyright-rights {
	color: var(--text-muted);
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.footer-bottom-link {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.3s ease;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.02);
}

.footer-bottom-link:hover {
	color: white;
	background: var(--primary-darker);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(125, 216, 127, 0.3);
}

.footer-separator {
	width: 1px;
	height: 20px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 1px;
}

/* Responsive Footer */
@media (max-width: 991px) {
	.footer-main {
		padding: 3rem 0 2rem;
	}

	.footer-brand-text {
		font-size: 1.375rem;
	}

	.footer-description {
		font-size: 0.875rem;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
		gap: 1.25rem;
	}

	.footer-copyright {
		flex-direction: column;
		text-align: center;
	}

	.footer-contact-grid {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.footer-contact-item {
		padding: 0.625rem;
	}

	.footer-contact-icon {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.footer-contact-label {
		font-size: 0.6875rem;
	}

	.footer-contact-value {
		font-size: 0.75rem;
	}

	.footer-section-title {
		font-size: 0.9375rem;
		margin-bottom: 1rem;
	}

	.footer-links a {
		font-size: 0.8125rem;
	}

	.footer-social-link {
		width: 38px;
		height: 38px;
		font-size: 1rem;
	}

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

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

@media (max-width: 768px) {
	.site-footer {
		margin-top: 4rem;
	}

	.footer-main {
		padding: 2rem 0 1rem;
	}

	.footer-section-title {
		font-size: 0.875rem;
		margin-bottom: 0.875rem;
		padding-bottom: 0.5rem;
	}

	.footer-social-link {
		width: 38px;
		height: 38px;
		font-size: 1rem;
	}

	.footer-contact-item {
		margin-bottom: 0.75rem;
	}

	.footer-contact-icon {
		width: 30px;
		height: 30px;
		font-size: 0.875rem;
	}

	.footer-contact-label {
		font-size: 0.6rem;
	}

	.footer-contact-value {
		font-size: 0.75rem;
	}

	.footer-links a {
		font-size: 0.75rem;
		padding: 0.15rem 0;
	}
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	color: var(--text-primary);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.625rem; font-weight: 700; }
h4 { font-size: 1.375rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

.text-muted {
	color: var(--text-muted) !important;
}

.text-success {
	color: var(--primary-darker) !important;
}

.text-warning {
	color: #f59e0b !important;
}

.text-danger {
	color: #ef4444 !important;
}

.text-primary {
	color: var(--text-primary) !important;
}

/* Sections */
section {
	margin-bottom: 7rem;
	padding: 3rem 0;
}

.container {
	max-width: 1200px;
}

/* List */
ul {
	list-style: none;
	padding: 0;
}

ul li {
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
}

ul li i {
	margin-left: 0.75rem;
	color: var(--primary);
}

/* Carousel */
.carousel .card {
	max-width: 800px;
	margin: 0 auto;
}

/* General carousel controls - only apply if not specifically styled */
.carousel-control-prev:not(.projects-carousel-prev):not(#testimonialsCarousel .carousel-control-prev),
.carousel-control-next:not(.projects-carousel-next):not(#testimonialsCarousel .carousel-control-next) {
	width: 50px;
	opacity: 0.8;
	filter: invert(1);
}

.carousel-control-prev:not(.projects-carousel-prev):not(#testimonialsCarousel .carousel-control-prev):hover,
.carousel-control-next:not(.projects-carousel-next):not(#testimonialsCarousel .carousel-control-next):hover {
	opacity: 1;
}

.carousel-indicators [data-bs-target] {
	background-color: var(--primary);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 0.5rem;
}

/* Forms - Animated Glowing Borders */
.form-control {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1.5px solid var(--border-light);
	color: var(--text-primary);
	border-radius: 10px;
	padding: 0.875rem 1.25rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 0.9375rem;
	position: relative;
	overflow: hidden;
}

.form-control::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, rgba(215, 244, 223, 0.8), rgba(215, 244, 223, 0.4), rgba(215, 244, 223, 0.8));
	background-size: 200% 200%;
	border-radius: 10px;
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s ease;
	animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.form-control:focus {
	background: rgba(255, 255, 255, 0.95);
	border-color: transparent;
	color: var(--text-primary);
	box-shadow: 0 0 0 3px rgba(215, 244, 223, 0.3), 0 0 20px rgba(215, 244, 223, 0.4);
	outline: none;
	transform: translateY(-1px);
}

.form-control:focus::before {
	opacity: 1;
}

.form-control:hover {
	border-color: rgba(215, 244, 223, 0.5);
	box-shadow: 0 0 0 1px rgba(215, 244, 223, 0.3);
}

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

textarea.form-control:focus {
	min-height: 140px;
}

.form-label {
	color: var(--text-secondary);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

/* Alert */
.alert {
	border-radius: 12px;
	border: 2px solid var(--border);
	padding: 1rem 1.25rem;
}

.alert-success {
	background: var(--primary-50);
	border-color: var(--primary);
	color: var(--primary-dark);
}

.alert-danger, .alert-error {
	background: #fef2f2;
	border-color: #fca5a5;
	color: #dc2626;
}

.alert-warning {
	background: #fffbeb;
	border-color: #fcd34d;
	color: #d97706;
}

.alert-info {
	background: #eff6ff;
	border-color: #93c5fd;
	color: #2563eb;
}

.alert-secondary {
	background: var(--bg-secondary);
	border: 2px solid var(--border);
	color: var(--text-secondary);
}

.btn-close {
	filter: none;
	opacity: 0.5;
}

.btn-close:hover {
	opacity: 1;
}

/* Links */
a {
	color: var(--primary-dark);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary);
}

.link-secondary {
	color: var(--text-muted);
}

.link-secondary:hover {
	color: var(--primary-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-darker);
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--text-secondary);
}

/* Selection */
::selection {
	background: var(--primary);
	color: var(--text-primary);
}

/* Main */
main {
	padding: 4rem 0 3rem;
	padding-top: 120px;
	min-height: calc(100vh - 200px);
}

@media (max-width: 991px) {
	main {
		padding-top: 110px;
	}
}

@media (max-width: 768px) {
	main {
		padding-top: 100px;
	}
}

/* Utility */
.bg-light {
	background-color: var(--bg-secondary) !important;
}

.bg-white {
	background-color: var(--bg-primary) !important;
}

.border-top {
	border-top-color: var(--border) !important;
}

.border-bottom {
	border-bottom-color: var(--border) !important;
}

.shadow-sm {
	box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
	box-shadow: var(--shadow-lg) !important;
}

/* Responsive */
@media (max-width: 991px) {
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.hero .lead {
		font-size: 1.15rem;
	}
	
	.cta h2 {
		font-size: 1.75rem;
	}
	
	.cta {
		padding: 3rem 2rem;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 4rem 0 2rem;
	}
	
	.hero h1 {
		font-size: 2rem;
	}
	
	section {
		margin-bottom: 4rem;
	}
	
	.card-body {
		padding: 1.5rem;
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 1.75rem;
	}
	
	.btn-lg {
		padding: 0.875rem 1.75rem;
		font-size: 1rem;
	}
	
	.cta {
		padding: 2.5rem 1.5rem;
	}
}

/* Focus States */
.btn:focus,
.form-control:focus,
.contact-link:focus,
.nav-link:focus {
	outline: 2px solid var(--primary-darker);
	outline-offset: 2px;
	border-radius: 4px;
}


/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* List inline items */
.list-inline-item {
	display: inline-block;
	margin-left: 1.5rem;
}

.list-inline-item:first-child {
	margin-left: 0;
}

/* Project cards */
.card img {
	transition: all 0.3s ease;
}

.card:hover img {
	transform: scale(1.05);
}

/* Service cards text center */
.service-card .card-body.text-center {
	text-align: center;
}

.service-card .card-body.text-center i {
	margin: 0 auto 1rem;
	display: block;
}

/* Projects Section - Professional */
.projects-section {
	background: white;
	position: relative;
	overflow: hidden;
	padding: 4rem 0;
}

.projects-section::before {
	content: "";
	position: absolute;
	top: -30%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

.projects-section::after {
	content: "";
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.4;
	pointer-events: none;
	z-index: 0;
}

.projects-section > * {
	position: relative;
	z-index: 1;
}

.projects-header {
	margin-bottom: 3rem;
}

.projects-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.projects-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.projects-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

/* Projects Carousel */
.projects-carousel {
	padding: 0 80px;
	position: relative;
}

.projects-slide-wrapper {
	padding: 1rem 0;
}

.projects-carousel-prev,
.projects-carousel-next {
	width: 60px !important;
	height: 60px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	background: #ffffff !important;
	border-radius: 50% !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 0 3px #d7f4df !important;
	border: 3px solid #d7f4df !important;
	opacity: 1 !important;
	filter: none !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative !important;
	overflow: hidden !important;
	z-index: 10 !important;
}

.projects-carousel-prev::before,
.projects-carousel-next::before {
	content: "" !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 0 !important;
	height: 0 !important;
	border-radius: 50% !important;
	background: #d7f4df !important;
	transform: translate(-50%, -50%) !important;
	transition: all 0.5s ease !important;
	opacity: 0 !important;
	z-index: -1 !important;
}

.projects-carousel-container {
	overflow: visible;
}

.projects-carousel-prev {
	right: -30px;
}

.projects-carousel-next {
	left: -30px;
}

.projects-carousel-prev:hover::before,
.projects-carousel-next:hover::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}

.projects-carousel-prev:hover,
.projects-carousel-next:hover {
	background: #d7f4df !important;
	border-color: #a8e6c3 !important;
	transform: translateY(-50%) scale(1.15) !important;
	box-shadow: 0 12px 40px rgba(215, 244, 223, 0.6), 0 0 0 6px rgba(215, 244, 223, 0.4) !important;
	filter: none !important;
}

.projects-carousel-prev:active,
.projects-carousel-next:active {
	transform: translateY(-50%) scale(1.05);
}

.projects-carousel-prev .carousel-control-prev-icon,
.projects-carousel-next .carousel-control-next-icon {
	background: none !important;
	width: 0 !important;
	height: 0 !important;
	position: relative;
	z-index: 2;
}

.projects-carousel-prev .carousel-control-prev-icon::before,
.projects-carousel-next .carousel-control-next-icon::before {
	content: "" !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 14px !important;
	height: 14px !important;
	border: 3px solid #7dd87f !important;
	border-bottom: none !important;
	border-left: none !important;
	transform: translate(-30%, -50%) rotate(45deg) !important;
	transition: all 0.3s ease !important;
}

.projects-carousel-next .carousel-control-next-icon::before {
	transform: translate(-70%, -50%) rotate(-135deg) !important;
}

.projects-carousel-prev:hover .carousel-control-prev-icon::before,
.projects-carousel-next:hover .carousel-control-next-icon::before {
	border-color: #a8e6c3 !important;
	width: 16px !important;
	height: 16px !important;
}

.projects-indicators {
	bottom: -50px;
}

.projects-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.projects-indicators [data-bs-target].active {
	opacity: 1;
	background: var(--primary-darker);
	width: 30px;
	border-radius: 6px;
}

/* Professional Project Cards */
.project-card-wrapper {
	height: 100%;
}

.project-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
}

.project-image-wrapper {
	position: relative;
	overflow: hidden;
	height: 280px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-featured-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 12px rgba(125, 216, 127, 0.4);
	z-index: 2;
}

.project-featured-badge i {
	font-size: 0.875rem;
}

.project-overlay {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	z-index: 1;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-overlay-content {
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.project-card:hover .project-overlay-content {
	transform: translateY(0);
}

.project-description {
	color: white;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.project-card-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.project-category {
	color: var(--primary-darker);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.75rem;
}

.project-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
	background: var(--primary-light);
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

/* Professional Testimonial Cards */
.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(215, 244, 223, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
}

.testimonial-quote-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 20px rgba(125, 216, 127, 0.3);
	flex-shrink: 0;
}

.testimonial-content {
	flex: 1;
	margin-bottom: 1.5rem;
}

.testimonial-quote {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--text-primary);
	font-style: italic;
	margin: 0;
	position: relative;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 2px solid var(--border);
}

.testimonial-author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(125, 216, 127, 0.3);
}

.testimonial-author-info {
	flex: 1;
}

.testimonial-author-name {
	font-weight: 700;
	color: var(--text-primary);
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.testimonial-author-role {
	color: var(--text-muted);
	font-size: 0.875rem;
}

/* Partners Section */
.partners-section {
	background: var(--primary-light);
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

/* Partners Carousel - Auto Scrolling */
.partners-carousel {
	padding: 0;
	position: relative;
}

.partners-carousel-container {
	overflow: visible;
}

.partners-slide-wrapper {
	padding: 1rem 0;
}

.partner-card {
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-link {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: all 0.4s ease;
}

.partner-link:hover {
	color: inherit;
	text-decoration: none;
}

.partner-logo-wrapper {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
}

.partner-logo-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--primary);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.partner-card:hover .partner-logo-wrapper::before {
	opacity: 1;
}

.partner-card:hover .partner-logo-wrapper {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
}

.partner-logo {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: all 0.4s ease;
	filter: grayscale(100%);
	opacity: 0.7;
	position: relative;
	z-index: 1;
}

.partner-card:hover .partner-logo {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}

.partner-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-top: 0.5rem;
	transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
	color: var(--primary-darker);
}

/* Responsive */
@media (max-width: 768px) {
	.project-image-wrapper {
		height: 220px;
	}
	
	.testimonial-card {
		padding: 1.5rem;
	}
	
	.partner-logo-wrapper {
		height: 120px;
		padding: 1rem;
	}
	
	.partner-logo {
		max-height: 60px;
	}
}

.partners-indicators {
	bottom: -50px;
}

.partners-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.partners-indicators [data-bs-target].active {
	opacity: 1;
	background: var(--primary-darker);
	width: 30px;
	border-radius: 6px;
}

/* About Page Styles */
.about-page-wrapper {
	position: relative;
	padding: 0;
}

/* About Hero Section */
.about-hero-section {
	padding: 6rem 0 4rem;
	background: linear-gradient(180deg, var(--primary-light) 0%, white 100%);
	position: relative;
	overflow: hidden;
}

.about-hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.about-hero-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.about-hero-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
}

.about-hero-image-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-hero-image {
	width: 100%;
	height: auto;
	display: block;
}

.about-hero-decoration {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.3;
	z-index: -1;
}

/* About Stats Section */
.about-stats-section {
	padding: 4rem 0;
	background: white;
}

.about-stat-card {
	text-align: center;
	padding: 2rem 1rem;
	background: var(--primary-light);
	border-radius: 20px;
	transition: all 0.4s ease;
	border: 2px solid transparent;
}

.about-stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(215, 244, 223, 0.4);
	border-color: var(--primary);
}

.about-stat-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
}

.about-stat-value {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-darker);
	margin-bottom: 0.5rem;
}

.about-stat-label {
	font-size: 1rem;
	color: var(--text-muted);
	font-weight: 600;
}

/* About Intro Section */
.about-intro-section {
	margin-top: 4rem;
}

.about-intro-card {
	background: white;
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-light);
}

.about-section-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-intro-text {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

/* About Features Section */
.about-features-header {
	text-align: center;
	margin-bottom: 3rem;
}

.about-features-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.about-feature-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--border-light);
	transition: all 0.4s ease;
	height: 100%;
}

.about-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(215, 244, 223, 0.4);
	border-color: var(--primary);
}

.about-feature-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
	background: var(--primary-light);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-darker);
	font-size: 1.5rem;
}

.about-feature-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.about-feature-text {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

/* About Security Section */
.about-security-card {
	background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
	border-radius: 24px;
	padding: 3rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 2px solid var(--primary);
}

.about-security-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	flex-shrink: 0;
}

.about-security-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.about-security-text {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin: 0;
}

/* About Values Section */
.about-values-card,
.about-achievements-card {
	background: white;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-light);
	height: 100%;
}

.about-values-header,
.about-achievements-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.about-values-icon,
.about-achievements-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-light);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-darker);
	font-size: 1.5rem;
}

.about-values-title,
.about-achievements-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-primary);
	margin: 0;
}

.about-value-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.about-value-item:last-child {
	margin-bottom: 0;
}

.about-value-icon {
	color: var(--primary-darker);
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.about-value-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.about-value-text {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

.about-achievements-text {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.about-achievements-text:last-child {
	margin-bottom: 0;
}

/* About Mission Section */
.about-mission-card {
	background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
	border-radius: 24px;
	padding: 3rem;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 2px solid var(--primary);
}

.about-mission-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	flex-shrink: 0;
}

.about-mission-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.about-mission-text {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin: 0;
}

/* About Tax Section */
.about-tax-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 2px solid var(--primary);
}

.about-tax-icon {
	font-size: 2.5rem;
	color: var(--primary-darker);
}

.about-tax-label {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-left: 0.5rem;
}

.about-tax-number {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary-darker);
}

/* Services Page Styles */
.services-page-wrapper {
	position: relative;
	padding: 0;
}

/* Services Hero Section */
.services-hero-section {
	padding: 6rem 0 4rem;
	background: linear-gradient(180deg, var(--primary-light) 0%, white 100%);
	position: relative;
	overflow: hidden;
}

.services-hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.services-hero-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.services-hero-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
}

.services-hero-image-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-hero-image {
	width: 100%;
	height: auto;
	display: block;
}

.services-hero-decoration {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.3;
	z-index: -1;
}

/* Services Featured Section */
.services-featured-header {
	margin-bottom: 3rem;
}

.services-featured-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.services-featured-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-featured-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--border-light);
	transition: all 0.4s ease;
	height: 100%;
	text-align: center;
}

.service-featured-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(215, 244, 223, 0.4);
	border-color: var(--primary);
}

.service-featured-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: var(--primary-light);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-darker);
	font-size: 2rem;
}

.service-featured-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.service-featured-text {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

/* Services Categories Section */
.services-categories-header {
	margin-bottom: 3rem;
}

.services-categories-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.services-categories-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-category-card {
	background: white;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-light);
	height: 100%;
	transition: all 0.4s ease;
}

.service-category-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(215, 244, 223, 0.4);
	border-color: var(--primary);
}

.service-category-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--primary-light);
}

.service-category-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-light);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-darker);
	font-size: 1.5rem;
}

.service-category-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin: 0;
}

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

.service-category-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.service-category-item i {
	color: var(--primary-darker);
	font-size: 1.125rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.service-category-item span {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* Services Additional Section */
.services-additional-section {
	margin-top: 4rem;
}

.services-additional-header {
	margin-bottom: 3rem;
}

.services-additional-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.services-additional-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Services CTA Section */
.services-cta-section {
	margin-top: 4rem;
}

.services-cta-card {
	background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
	border-radius: 24px;
	padding: 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 2px solid var(--primary);
}

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

.services-cta-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.services-cta-text {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 2rem;
}

.services-cta-button {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.services-cta-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(125, 216, 127, 0.5);
	color: white;
}

.services-cta-decoration {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0.3;
	z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.about-hero-title,
	.services-hero-title {
		font-size: 2rem;
	}
	
	.about-hero-subtitle,
	.services-hero-subtitle {
		font-size: 1rem;
	}
	
	.about-intro-card,
	.about-security-card,
	.about-mission-card,
	.service-category-card {
		padding: 1.5rem;
	}
	
	.about-stat-value {
		font-size: 2rem;
	}
	
	.services-cta-card {
		padding: 2rem;
	}
	
	.about-security-card,
	.about-mission-card {
		flex-direction: column;
		text-align: center;
	}
}

/* Contact Page Wrapper */
.contact-page-wrapper {
	position: relative;
	padding: 2rem 0 4rem;
	min-height: 100vh;
}

.contact-hero {
	background: var(--primary-light);
	padding: 4rem 0;
	margin-bottom: 3rem;
	border-radius: 0 0 50px 50px;
	position: relative;
	overflow: hidden;
}

.contact-hero::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.contact-hero::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.contact-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
}

.contact-hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

.contact-alert {
	border-radius: 16px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.alert-content {
	display: flex;
	align-items: center;
}

/* Contact Form Card */
.contact-form-card {
	background: white;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.contact-form-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.contact-form-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--border);
}

.contact-form-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 8px 20px rgba(125, 216, 127, 0.3);
	flex-shrink: 0;
}

.contact-form-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.contact-form-subtitle {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin: 0;
}

.contact-form {
	margin-top: 1.5rem;
}

.form-group-wrapper {
	margin-bottom: 1.5rem;
}

.form-label-custom {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	font-size: 0.9375rem;
}

.form-label-custom i {
	color: var(--primary-darker);
	font-size: 1.125rem;
}

.form-group-wrapper .form-control {
	border: 2px solid var(--border);
	border-radius: 12px;
	padding: 0.875rem 1.25rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--bg-secondary);
}

.form-group-wrapper .form-control:focus {
	border-color: var(--primary-darker);
	background: white;
	box-shadow: 0 0 0 4px rgba(215, 244, 223, 0.3);
	outline: none;
}

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

.form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: flex;
	align-items: center;
}

.btn-submit-contact {
	width: 100%;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: 12px;
	padding: 1rem 2rem;
	font-size: 1.0625rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(125, 216, 127, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-submit-contact::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-submit-contact:hover::before {
	width: 300px;
	height: 300px;
}

.btn-submit-contact:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(125, 216, 127, 0.4);
}

.btn-submit-contact:active {
	transform: translateY(0);
}

.btn-submit-text {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-submit-loader {
	display: none;
}

/* Contact Info Card */
.contact-info-card {
	background: white;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.contact-info-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.contact-info-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--border);
}

.contact-info-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 8px 20px rgba(125, 216, 127, 0.3);
	flex-shrink: 0;
}

.contact-info-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.contact-info-subtitle {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin: 0;
}

.contact-info-item-modern {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem;
	background: var(--bg-secondary);
	border-radius: 16px;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.contact-info-item-modern:hover {
	background: white;
	border-color: var(--primary);
	transform: translateX(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-item-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info-item-icon.email {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.contact-info-item-icon.email-secondary {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.contact-info-item-icon.phone {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.contact-info-item-icon.whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-info-item-icon.location {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.contact-info-item-content {
	flex: 1;
}

.contact-info-item-label {
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

.contact-info-item-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.contact-info-item-link:hover {
	color: var(--primary-darker);
	transform: translateX(-3px);
}

.contact-info-item-link.whatsapp-link:hover {
	color: #25D366;
}

.contact-info-item-text {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.6;
}

.contact-hours-modern {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid var(--border);
}

.contact-hours-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.contact-hours-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

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

.contact-hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: var(--bg-secondary);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.contact-hours-item:hover {
	background: white;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-hours-day {
	font-weight: 600;
	color: var(--text-primary);
	display: flex;
	align-items: center;
}

.contact-hours-time {
	font-weight: 700;
	color: var(--primary-darker);
	font-size: 0.9375rem;
}

/* Contact Feature Cards */
.contact-feature-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
}

.contact-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
}

.contact-feature-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
}

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

.contact-feature-icon.fast {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.contact-feature-icon.secure {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.contact-feature-icon.support {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.contact-feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.contact-feature-text {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 991px) {
	.contact-hero-title {
		font-size: 2.5rem;
	}
	
	.contact-form-card,
	.contact-info-card {
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	.contact-hero {
		padding: 3rem 0;
		border-radius: 0 0 30px 30px;
	}
	
	.contact-hero-title {
		font-size: 2rem;
	}
	
	.contact-hero-subtitle {
		font-size: 1.125rem;
	}
	
	.contact-form-card,
	.contact-info-card {
		padding: 1.5rem;
		border-radius: 20px;
	}
	
	.contact-form-header,
	.contact-info-header {
		flex-direction: column;
		text-align: center;
	}
	
	.contact-form-icon,
	.contact-info-icon {
		margin: 0 auto;
	}
	
	.contact-feature-card {
		padding: 2rem;
	}
}

/* Cookie Consent Banner - Professional Design */
.cookie-consent-banner {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
	color: white;
	padding: 0;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2), 0 -4px 16px rgba(125, 216, 127, 0.3);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(100%);
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
	opacity: 0;
	border-top: 4px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.cookie-consent-banner::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.cookie-consent-banner.show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-consent-content {
	max-width: 1300px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	padding: 2rem 2.5rem;
	position: relative;
}

.cookie-consent-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.75rem;
	flex-shrink: 0;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.cookie-consent-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.6s ease;
}

.cookie-consent-icon:hover::before {
	width: 120%;
	height: 120%;
}

.cookie-consent-icon:hover {
	transform: scale(1.1) rotate(5deg);
	border-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cookie-consent-text {
	flex: 1;
	min-width: 280px;
}

.cookie-consent-title {
	font-size: 1.375rem;
	font-weight: 800;
	color: white;
	margin-bottom: 0.75rem;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cookie-consent-title::before {
	content: "";
	width: 4px;
	height: 24px;
	background: linear-gradient(180deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
	border-radius: 2px;
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.cookie-consent-description {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.75;
	margin: 0;
	font-weight: 400;
}

.cookie-consent-description a {
	color: var(--primary-light);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
	position: relative;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
}

.cookie-consent-description a::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background: var(--primary-light);
	transition: width 0.3s ease;
}

.cookie-consent-description a:hover {
	color: white;
	border-bottom-color: var(--primary-light);
}

.cookie-consent-description a:hover::after {
	width: 100%;
}

.cookie-consent-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.cookie-consent-btn {
	padding: 0.875rem 2rem;
	border: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.3px;
	text-transform: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cookie-consent-btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.6s ease;
}

.cookie-consent-btn:hover::before {
	width: 300px;
	height: 300px;
}

.cookie-consent-accept {
	background: linear-gradient(135deg, white 0%, var(--primary-light) 100%);
	color: var(--primary-darker);
	box-shadow: 0 6px 24px rgba(255, 255, 255, 0.4), 0 2px 8px rgba(125, 216, 127, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-consent-accept:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 32px rgba(255, 255, 255, 0.5), 0 4px 12px rgba(125, 216, 127, 0.4);
	background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
	color: var(--primary-darker);
	border-color: white;
}

.cookie-consent-accept:active {
	transform: translateY(-1px) scale(1.02);
}

.cookie-consent-reject {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.cookie-consent-reject:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(255, 255, 255, 0.1);
}

.cookie-consent-reject:active {
	transform: translateY(-1px) scale(1.02);
}

@media (max-width: 991px) {
	.cookie-consent-content {
		padding: 1.75rem 2rem;
		gap: 1.5rem;
	}

	.cookie-consent-icon {
		width: 56px;
		height: 56px;
		font-size: 1.5rem;
	}

	.cookie-consent-title {
		font-size: 1.25rem;
	}

	.cookie-consent-description {
		font-size: 0.9375rem;
	}

	.cookie-consent-btn {
		padding: 0.75rem 1.75rem;
		font-size: 0.9375rem;
	}
}

@media (max-width: 768px) {
	.cookie-consent-banner {
		border-top-width: 3px;
	}

	.cookie-consent-content {
		flex-direction: column;
		align-items: stretch;
		gap: 1.5rem;
		padding: 1.5rem 1.75rem;
	}

	.cookie-consent-icon {
		width: 52px;
		height: 52px;
		font-size: 1.375rem;
		margin: 0 auto;
		border-radius: 16px;
	}

	.cookie-consent-text {
		text-align: center;
		min-width: auto;
	}

	.cookie-consent-title {
		font-size: 1.125rem;
		justify-content: center;
	}

	.cookie-consent-title::before {
		display: none;
	}

	.cookie-consent-description {
		font-size: 0.875rem;
		line-height: 1.7;
	}

	.cookie-consent-actions {
		justify-content: center;
		flex-wrap: wrap;
		gap: 0.875rem;
		width: 100%;
	}

	.cookie-consent-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
		flex: 1;
		min-width: 140px;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.cookie-consent-content {
		padding: 1.25rem 1.5rem;
		gap: 1.25rem;
	}

	.cookie-consent-icon {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
	}

	.cookie-consent-title {
		font-size: 1rem;
	}

	.cookie-consent-description {
		font-size: 0.8125rem;
	}

	.cookie-consent-actions {
		flex-direction: column;
		width: 100%;
	}

	.cookie-consent-btn {
		width: 100%;
		min-width: auto;
		padding: 0.875rem 1.5rem;
	}
}
