/* ================================================
   KINTANA GESTION - MODERN DESIGN 2026
   Dynamic Responsive CSS with Animations
   ================================================ */

/* ========== VARIABLES & RESET ========== */
:root {
	--primary: #43b3ae;
	--primary-dark: #2d8b87;
	--primary-light: #59d6d1;
	--secondary: #FF6B6B;
	--accent: #4ECDC4;
	--dark: #1a1a2e;
	--light: #f8f9fa;
	--text-dark: #2c3e50;
	--text-light: #626262;
	--border-radius: 16px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 20px 48px rgba(67, 179, 174, 0.2);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: 'Raleway', sans-serif;
	background: #fafbfc;
}

body {
	color: var(--text-light);
	line-height: 1.6;
	font-size: 0.95rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f0f5f9 100%);
	background-attachment: fixed;
	overflow-x: hidden;
	position: relative;
}

/* Network animation background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(67, 179, 174, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(67, 179, 174, 0.05) 1px, transparent 1px);
	background-size: 80px 80px;
	background-position: 0 0, 0 0;
	pointer-events: none;
	z-index: -3;
	animation: gridMotion 20s linear infinite;
	will-change: background-position;
}

@keyframes gridMotion {
	0% {
		background-position: 0 0, 0 0;
	}
	100% {
		background-position: 80px 0, 0 80px;
	}
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
	color: var(--text-dark);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.25rem;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: -0.5px;
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	letter-spacing: -0.3px;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
	font-size: 1.375rem;
}

h5 {
	font-size: 1.125rem;
}

p {
	margin-bottom: 1rem;
	opacity: 0.9;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.8;
	font-weight: 400;
}

.text-gradient {
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.turquoise {
	color: var(--primary);
}

/* ========== BUTTONS ========== */
.btn {
	border: none;
	border-radius: 50px;
	padding: 0.875rem 2rem;
	font-weight: 600;
	font-size: 0.95rem;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: left 0.4s ease;
	z-index: -1;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	box-shadow: 0 8px 24px rgba(67, 179, 174, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(67, 179, 174, 0.4);
	color: white;
	text-decoration: none;
	animation: hoverGlow 0.3s ease-out;
}

@keyframes hoverGlow {
	0% {
		filter: drop-shadow(0 0 0px rgba(67, 179, 174, 0));
	}
	100% {
		filter: drop-shadow(0 8px 12px rgba(67, 179, 174, 0.5));
	}
}

.btn-outline-secondary {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
}

.btn-outline-secondary:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.btn-solid-lg {
	padding: 1.5rem 3rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	font-weight: 700;
	border-radius: 50px;
	box-shadow: 0 12px 32px rgba(67, 179, 174, 0.3);
	text-decoration: none;
	display: inline-block;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.btn-solid-lg:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(67, 179, 174, 0.4);
	color: white;
	text-decoration: none;
}

.btn-solid-reg {
	padding: 1rem 2.25rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	font-weight: 600;
	border-radius: 50px;
	box-shadow: 0 8px 20px rgba(67, 179, 174, 0.25);
	text-decoration: none;
	display: inline-block;
	transition: var(--transition);
}

.btn-solid-reg:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(67, 179, 174, 0.3);
	color: white;
	text-decoration: none;
}

/* ========== NAVBAR ========== */
.navbar-custom {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.9) 100%);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	padding: 1rem 0;
	border-bottom: 1px solid rgba(67, 179, 174, 0.1);
}

.navbar-custom.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0;
}

.navbar-brand {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 1px;
	transition: var(--transition);
}

.navbar-brand:hover {
	transform: scale(1.05);
}

.nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	margin: 0 0.5rem;
	position: relative;
	transition: var(--transition);
	font-size: 0.95rem;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: var(--primary) !important;
}

.nav-link:hover::after {
	width: 100%;
}

.navbar-toggler {
	border: none;
	padding: 0.25rem 0.75rem;
}

.navbar-toggler:focus {
	box-shadow: none;
	outline: none;
}

/* ========== HERO SECTION ========== */
.header {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-top: 60px;
	background: linear-gradient(135deg, #f5fcfb 0%, #f0f7f6 50%, #e8f4f2 100%);
	background-attachment: fixed;
}

.header::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(67, 179, 174, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	top: -100px;
	left: -100px;
	animation: float 6s ease-in-out infinite;
	z-index: 0;
}

.header::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	bottom: -50px;
	right: -50px;
	animation: float 8s ease-in-out infinite reverse;
	z-index: 0;
}

.header-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 3rem 0;
}

.text-container {
	animation: fadeInUp 0.8s ease-out;
}

.text-container h1 {
	margin-bottom: 2rem;
	line-height: 1.3;
}

.text-container .p-large {
	margin-bottom: 2.5rem;
	color: var(--text-light);
	font-size: 1.15rem;
}

.guarantee-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, rgba(67, 179, 174, 0.1) 0%, rgba(92, 214, 209, 0.1) 100%);
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	margin-bottom: 2rem;
	animation: slideInLeft 0.8s ease-out 0.2s backwards, badgePulse 2s ease-in-out infinite 0.5s;
}

@keyframes badgePulse {
	0%, 100% {
		box-shadow: 0 0 10px rgba(67, 179, 174, 0.3);
	}
	50% {
		box-shadow: 0 0 20px rgba(67, 179, 174, 0.6);
	}
}

.guarantee-badge i {
	font-size: 1.25rem;
	animation: spin 3s linear infinite;
}

.image-container {
	animation: fadeInRight 0.8s ease-out 0.3s backwards;
	position: relative;
}

.image-container img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(67, 179, 174, 0.2));
	animation: slideUp 0.8s ease-out 0.4s backwards;
}

.image-container::before {
	content: '';
	position: absolute;
	width: 110%;
	height: 110%;
	background: linear-gradient(135deg, rgba(67, 179, 174, 0.05) 0%, rgba(92, 214, 209, 0.05) 100%);
	border-radius: var(--border-radius);
	top: -5%;
	left: -5%;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

.image-container::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(67, 179, 174, 0.1) 50%, transparent 70%);
	border-radius: var(--border-radius);
	top: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
	animation: backgroundShift 4s ease-in-out infinite;
}

@keyframes backgroundShift {
	0%, 100% {
		opacity: 0.5;
		transform: translateX(-100%);
	}
	50% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ========== COUNTER SECTION ========== */
.counter-section {
	position: relative;
	padding: 4rem 0;
	margin: 2rem 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	overflow: hidden;
}

.counter-section::before {
	content: '';
	position: absolute;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	top: -200px;
	left: -200px;
	animation: float 8s ease-in-out infinite;
}

.counter-section::after {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	bottom: -150px;
	right: -150px;
	animation: float 10s ease-in-out infinite reverse;
}

.counter {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem 1rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--border-radius);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: var(--transition);
}

.counter:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-5px);
}

.counter-value {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.counter-title {
	font-size: 1.1rem;
	font-weight: 600;
	opacity: 0.95;
	letter-spacing: 0.5px;
}

/* ========== CARDS SECTION (SERVICES) ========== */
.cards-1 {
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.cards-1::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(67, 179, 174, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	top: -200px;
	right: -200px;
	animation: float 8s ease-in-out infinite;
}

.cards-1 h2 {
	text-align: center;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.cards-1 > .container > .row:first-child {
	margin-bottom: 3rem;
}

.cards-1 .p-large {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 2rem;
	color: var(--text-light);
	position: relative;
	z-index: 2;
}

.card {
	border: none;
	border-radius: var(--border-radius);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.95) 100%);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(67, 179, 174, 0.15);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	padding: 2.5rem 2rem;
	border-top: 4px solid var(--primary);
	animation: fadeInUp 0.6s ease-out backwards;
	text-align: center;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; border-top-color: #FF6B6B; }
.card:nth-child(3) { animation-delay: 0.3s; border-top-color: #FFD93D; }
.card:nth-child(4) { animation-delay: 0.1s; border-top-color: #6BCB77; }
.card:nth-child(5) { animation-delay: 0.2s; border-top-color: #4D96FF; }
.card:nth-child(6) { animation-delay: 0.3s; border-top-color: #FF6B9D; }

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.card:hover::before {
	transform: scaleX(1);
}

.card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% -50%, rgba(67, 179, 174, 0.1) 0%, transparent 70%);
	border-radius: var(--border-radius);
	pointer-events: none;
	animation: cardBgGlow 4s ease-in-out infinite;
	z-index: 0;
}

@keyframes cardBgGlow {
	0%, 100% {
		box-shadow: inset 0 0 20px rgba(67, 179, 174, 0.1);
	}
	50% {
		box-shadow: inset 0 0 40px rgba(67, 179, 174, 0.2);
	}
}

.card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 60px rgba(67, 179, 174, 0.3), 0 0 30px rgba(89, 214, 209, 0.15);
	border-color: var(--primary);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 0.98) 100%);
}

/* ========== CARDS-2 SECTION (NOS POINTS FORTS) ========== */
.cards-2 {
	position: relative;
	padding: 5rem 0;
	overflow: hidden;
}

.cards-2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(240, 245, 249, 0.5) 100%);
	z-index: 0;
	pointer-events: none;
}

.cards-2 .container {
	position: relative;
	z-index: 1;
}

.cards-2 h2 {
	font-size: 2.8rem;
	font-weight: 900;
	margin-bottom: 1rem;
	text-align: center;
	background: linear-gradient(135deg, #43b3ae 0%, #4ECDC4 50%, #59d6d1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 0.5px;
}

.cards-2 .p-heading {
	text-align: center;
	color: #666;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 3rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}

.cards-2 .card {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.95) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 8px 32px rgba(67, 179, 174, 0.15);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
	border-top: none;
}

.cards-2 .card:nth-child(1) { animation-delay: 0.1s; }
.cards-2 .card:nth-child(2) { animation-delay: 0.2s; }
.cards-2 .card:nth-child(3) { animation-delay: 0.3s; }

.cards-2 .card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 60px rgba(67, 179, 174, 0.3), 0 0 30px rgba(89, 214, 209, 0.15);
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 249, 0.98) 100%);
}

.cards-2 .feature-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
	display: block;
}

.cards-2 .card:hover .feature-icon {
	transform: scale(1.2) rotate(5deg);
	filter: drop-shadow(0 12px 24px rgba(67, 179, 174, 0.4));
}

.cards-2 .card-body {
	padding: 0;
	position: relative;
	z-index: 2;
}

.cards-2 .card-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a2e;
	transition: all 0.3s ease;
}

.cards-2 .card:hover .card-title {
	color: #43b3ae;
	transform: scale(1.05);
}

.cards-2 .card p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.7;
	transition: all 0.3s ease;
	margin-bottom: 0;
}

.cards-2 .card:hover p {
	color: #333;
}
	

@keyframes cardHoverLift {
	0% {
		transform: translateY(0px);
		box-shadow: 0 4px 15px rgba(67, 179, 174, 0.1);
	}
	50% {
		transform: translateY(-8px);
		box-shadow: 0 8px 20px rgba(67, 179, 174, 0.2);
	}
	100% {
		transform: translateY(-12px);
		box-shadow: 0 12px 30px rgba(67, 179, 174, 0.3);
	}
}

.feature-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: block;
	animation: bounce 2s ease-in-out infinite;
}

.card .feature-icon.restaurant-icon { color: #6BCB77; }
.card .feature-icon.school-icon { color: #4D96FF; }
.card .feature-icon.commerce-icon { color: #FFD93D; }
.card .feature-icon.hotel-icon { color: #6BCBFF; }
.card .feature-icon.clinic-icon { color: #FF6B6B; }
.card .feature-icon.fitness-icon { color: #6BCB77; }

.card-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	position: relative;
	padding-bottom: 1rem;
}

.card-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	border-radius: 2px;
}

.solution-features {
	list-style: none;
	padding: 0;
}

.solution-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
	font-size: 0.95rem;
	color: var(--text-light);
	transition: var(--transition);
}

.solution-features li:hover {
	transform: translateX(5px);
	color: var(--text-dark);
}

.solution-features i {
	flex-shrink: 0;
	margin-top: 0.25rem;
}

/* ========== ADVANTAGES SECTION ========== */
.feature-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 251, 252, 0.92) 100%);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(67, 179, 174, 0.1);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
}

.feature-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 20px 50px rgba(67, 179, 174, 0.25), 0 0 30px rgba(89, 214, 209, 0.1);
	border-color: var(--primary);
}

.feature-card-header {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.08);
}

.feature-bg {
	position: absolute;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	top: -50px;
	right: -50px;
	animation: float 4s ease-in-out infinite;
}

.feature-icon-container {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
}

.feature-icon {
	font-size: 3.5rem;
	color: white;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
	animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards, iconGlow 2s ease-in-out infinite 0.5s;
	margin-top: 2rem;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

.feature-card:hover .feature-icon {
	transform: scale(1.15) rotate(5deg);
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

@keyframes iconGlow {
	0%, 100% {
		filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
	}
	50% {
		filter: drop-shadow(0 12px 24px rgba(67, 179, 174, 0.4));
	}
}

/* Colored icons for each feature */
#advantages .feature-card:nth-child(1) .feature-icon { color: #FF6B6B; }
#advantages .feature-card:nth-child(2) .feature-icon { color: #4D96FF; }
#advantages .feature-card:nth-child(3) .feature-icon { color: #FFD93D; }
#advantages .feature-card:nth-child(4) .feature-icon { color: #6BCB77; }
#advantages .feature-card:nth-child(5) .feature-icon { color: #845EC2; }
#advantages .feature-card:nth-child(6) .feature-icon { color: #00C9A7; }
#advantages .feature-card:nth-child(7) .feature-icon { color: #FF6B6B; }
#advantages .feature-card:nth-child(8) .feature-icon { color: #4D96FF; }
#advantages .feature-card:nth-child(9) .feature-icon { color: #FFD93D; }

/* Colored icons for Nos Points Forts section */
.cards-2 .card:nth-child(1) .feature-icon { color: #FF6B6B; }
.cards-2 .card:nth-child(2) .feature-icon { color: #4D96FF; }
.cards-2 .card:nth-child(3) .feature-icon { color: #FFD93D; }

.feature-card:nth-child(1) .feature-icon { animation-delay: 0.1s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.3s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.1s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 0.3s; }
.feature-card:nth-child(7) .feature-icon { animation-delay: 0.1s; }
.feature-card:nth-child(8) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(9) .feature-icon { animation-delay: 0.3s; }

/* ========== FEATURE CARD ENHANCED STYLES ========== */
#advantages {
	position: relative;
	overflow: hidden;
}

#advantages::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at top center, rgba(67, 179, 174, 0.05) 0%, transparent 70%);
	z-index: 0;
	pointer-events: none;
}

#advantages .row {
	position: relative;
	z-index: 1;
}

/* Enhanced feature card styling */
#advantages .feature-card {
	position: relative;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#advantages .feature-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(67, 179, 174, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

#advantages .feature-card:hover::before {
	opacity: 1;
	animation: softGlow 2s ease-in-out infinite;
}

/* Icon pulse effect enhancement */
#advantages .feature-icon {
	position: relative;
	display: inline-block;
}

#advantages .feature-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s ease;
}

#advantages .feature-card:hover .feature-icon::after {
	animation: pulseRing 1.5s ease-out;
}

@keyframes pulseRing {
	0% {
		width: 100px;
		height: 100px;
		opacity: 0.4;
	}
	100% {
		width: 200px;
		height: 200px;
		opacity: 0;
	}
}
.feature-card:nth-child(9) .feature-icon { animation-delay: 0.3s; }

.card-body {
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.card-body h4 {
	color: var(--text-dark);
	margin-bottom: 1rem;
	font-size: 1.3rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.card:hover .card-body h4 {
	transform: scale(1.05);
	-webkit-text-fill-color: var(--primary);
}

.card-body p {
	color: var(--text-light);
	font-size: 0.93rem;
	line-height: 1.8;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.card:hover .card-body p {
	color: var(--text-dark);
}

/* ========== PRICING SECTION ========== */
#pricing {
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f5fcfb 0%, #f0f7f6 100%);
}

#pricing::before {
	content: '';
	position: absolute;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(67, 179, 174, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	top: -300px;
	left: -300px;
	animation: float 8s ease-in-out infinite;
}

#pricing h2 {
	text-align: center;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

#pricing > .container > .row:first-child {
	margin-bottom: 3rem;
	position: relative;
	z-index: 2;
}

.pricing-card {
	background: white;
	border-radius: var(--border-radius);
	padding: 2.5rem 2rem;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	position: relative;
	border: 2px solid transparent;
	animation: fadeInUp 0.6s ease-out backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

.pricing-card.featured {
	border-color: var(--primary);
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
	background: linear-gradient(135deg, #fafbfc 0%, white 100%);
}

.pricing-card:hover:not(.featured) {
	transform: translateY(-8px);
	border-color: var(--primary);
}

.pricing-card.featured:hover {
	transform: scale(1.08) translateY(-8px);
	box-shadow: 0 24px 56px rgba(67, 179, 174, 0.3);
}

.pricing-badge {
	position: absolute;
	top: -15px;
	right: 30px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-weight: 700;
	animation: badgePulse 2s ease-in-out infinite;
}
	
.pricing-title {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.75rem;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	animation: titlePulse 3s ease-in-out infinite;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.price {
	background: linear-gradient(135deg, rgba(67, 179, 174, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
	padding: 1.5rem;
	border-radius: 12px;
	border-left: 4px solid var(--primary);
	text-align: center;
	margin-bottom: 1rem !important;
	position: relative;
	overflow: hidden;
}

.price::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 2s infinite;
	pointer-events: none;
}

@keyframes shimmer {
	0%, 100% {
		transform: translateX(-100%);
	}
	50% {
		transform: translateX(100%);
	}
}

.currency {
	font-weight: 600;
	color: var(--primary);
	opacity: 0.8;
	margin-right: 0.25rem;
}

.value {
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 2rem;
	display: block;
	margin: 0.5rem 0;
}

.frequency {
	color: var(--text-light);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.pricing-price-period {
	color: var(--text-light);
	font-size: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid #f0f0f0;
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.75rem 0;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-light);
}

.pricing-features li i {
	color: var(--primary);
	font-weight: 700;
}

.pricing-features li.disabled {
	opacity: 0.5;
	text-decoration: line-through;
}

.pricing-features li.disabled i {
	color: #ccc;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px) translateX(0px);
	}
	33% {
		transform: translateY(-20px) translateX(10px);
	}
	66% {
		transform: translateY(20px) translateX(-10px);
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.02);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* ========== AOS (Animate On Scroll) Overrides ========== */
[data-aos] {
	opacity: 0;
	transition-property: opacity, transform;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
	opacity: 1;
}

[data-aos="fade-up"] {
	transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
	transform: translateY(0);
}

[data-aos="fade-right"] {
	transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
	transform: translateX(0);
}

[data-aos="zoom-in"] {
	transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
	transform: scale(1);
}

/* ========== NETWORK CONNECTION ANIMATION ========== */
/* Advanced network visualization with connecting lines */

html::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		/* Connection lines between points */
		linear-gradient(45deg, transparent 48%, rgba(67, 179, 174, 0.08) 49%, rgba(67, 179, 174, 0.08) 51%, transparent 52%),
		linear-gradient(-45deg, transparent 48%, rgba(67, 179, 174, 0.08) 49%, rgba(67, 179, 174, 0.08) 51%, transparent 52%),
		linear-gradient(90deg, transparent 98%, rgba(67, 179, 174, 0.06) 99%, rgba(67, 179, 174, 0.06) 99.5%, transparent 100%),
		linear-gradient(0deg, transparent 98%, rgba(67, 179, 174, 0.06) 99%, rgba(67, 179, 174, 0.06) 99.5%, transparent 100%);
	background-size: 200px 200px, 200px 200px, 200px 200px, 200px 200px;
	background-position: 0 0, 0 0, 0 0, 0 0;
	background-repeat: repeat;
	pointer-events: none;
	z-index: -2;
	animation: networkLines 30s linear infinite;
	will-change: background-position;
	opacity: 0.4;
}

@keyframes networkLines {
	0% {
		background-position: 0 0, 0 0, 0 0, 0 0;
	}
	100% {
		background-position: 200px 200px, 200px 200px, 200px 0, 0 200px;
	}
}

/* Animated network nodes */
html::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 5% 10%, rgba(67, 179, 174, 0.15) 0%, transparent 2%),
		radial-gradient(circle at 15% 25%, rgba(89, 214, 209, 0.15) 0%, transparent 2%),
		radial-gradient(circle at 30% 15%, rgba(78, 205, 196, 0.15) 0%, transparent 2%),
		radial-gradient(circle at 45% 35%, rgba(67, 179, 174, 0.12) 0%, transparent 2%),
		radial-gradient(circle at 60% 20%, rgba(89, 214, 209, 0.12) 0%, transparent 2%),
		radial-gradient(circle at 75% 40%, rgba(78, 205, 196, 0.12) 0%, transparent 2%),
		radial-gradient(circle at 85% 15%, rgba(67, 179, 174, 0.15) 0%, transparent 2%),
		radial-gradient(circle at 95% 30%, rgba(89, 214, 209, 0.12) 0%, transparent 2%),
		radial-gradient(circle at 25% 60%, rgba(78, 205, 196, 0.12) 0%, transparent 2%),
		radial-gradient(circle at 50% 75%, rgba(67, 179, 174, 0.15) 0%, transparent 2%),
		radial-gradient(circle at 70% 60%, rgba(89, 214, 209, 0.12) 0%, transparent 2%),
		radial-gradient(circle at 85% 80%, rgba(78, 205, 196, 0.15) 0%, transparent 2%);
	background-size: 100% 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: -1;
	animation: networkNodes 60s ease-in-out infinite;
	will-change: filter;
}

@keyframes networkNodes {
	0%, 100% {
		filter: brightness(1) drop-shadow(0 0 10px rgba(67, 179, 174, 0.3));
	}
	25% {
		filter: brightness(1.1) drop-shadow(0 0 20px rgba(67, 179, 174, 0.4));
	}
	50% {
		filter: brightness(0.9) drop-shadow(0 0 15px rgba(89, 214, 209, 0.35));
	}
	75% {
		filter: brightness(1.05) drop-shadow(0 0 25px rgba(67, 179, 174, 0.45));
	}
}

/* Data flow particles animation */
body {
	position: relative;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 10% 20%, rgba(67, 179, 174, 0.06) 0%, transparent 15%),
		radial-gradient(circle at 40% 40%, rgba(89, 214, 209, 0.05) 0%, transparent 20%),
		radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.06) 0%, transparent 18%),
		radial-gradient(circle at 80% 70%, rgba(67, 179, 174, 0.05) 0%, transparent 20%),
		radial-gradient(circle at 20% 80%, rgba(89, 214, 209, 0.06) 0%, transparent 15%),
		radial-gradient(circle at 55% 55%, rgba(78, 205, 196, 0.04) 0%, transparent 25%);
	background-size: 100% 100%;
	pointer-events: none;
	z-index: -1;
	animation: dataFlow 80s ease-in-out infinite;
	will-change: background;
}

@keyframes dataFlow {
	0% {
		background-position: 0% 0%, 100% 100%, 50% 0%, 100% 50%, 0% 100%, 50% 50%;
	}
	25% {
		background-position: 50% 50%, 0% 0%, 100% 100%, 0% 50%, 100% 0%, 0% 100%;
	}
	50% {
		background-position: 100% 100%, 50% 50%, 0% 0%, 50% 100%, 50% 0%, 100% 50%;
	}
	75% {
		background-position: 50% 0%, 100% 50%, 50% 100%, 100% 0%, 0% 50%, 50% 100%;
	}
	100% {
		background-position: 0% 0%, 100% 100%, 50% 0%, 100% 50%, 0% 100%, 50% 50%;
	}
}

/* ========== RESPONSIVE DESIGN ========== */
@media (min-width: 992px) {
	/* Afficher le menu collapse desktop */
	.collapse.navbar-collapse {
		display: flex !important;
	}

	/* Masquer le toggle hamburger sur desktop */
	.navbar-toggler {
		display: none !important;
	}

	/* Masquer le menu sidebar sur desktop */
	.mobile-nav-sidebar {
		display: none !important;
	}

	.mobile-nav-overlay {
		display: none !important;
	}
}

@media (max-width: 991px) {
	/* Masquer le menu collapse sur mobile */
	.collapse.navbar-collapse {
		display: none !important;
	}

	/* Afficher le toggle hamburger sur mobile */
	.navbar-toggler {
		display: block !important;
	}
}

@media (max-width: 1200px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.header {
		min-height: 90vh;
	}

	.pricing-card.featured {
		transform: scale(1.02);
	}

	.pricing-card.featured:hover {
		transform: scale(1.05) translateY(-8px);
	}
}

@media (max-width: 768px) {
	:root {
		--border-radius: 12px;
	}

	.navbar-custom {
		padding: 0.75rem 0;
	}

	.header {
		min-height: 80vh;
		margin-top: 55px;
		padding-top: 2rem;
	}

	.header::before {
		width: 300px;
		height: 300px;
		top: -150px;
		left: -150px;
	}

	.text-container h1 {
		font-size: 1.75rem;
		margin-bottom: 1.5rem;
	}

	.text-container .p-large {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.guarantee-badge {
		font-size: 0.85rem;
		padding: 0.6rem 1.25rem;
	}

	.image-container {
		margin-top: 2rem;
	}

	.card {
		padding: 2rem 1.5rem;
		margin-bottom: 1.5rem;
	}

	.feature-icon {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}

	.counter {
		padding: 1.5rem 1rem;
		margin-bottom: 1.5rem;
	}

	.counter-value {
		font-size: 2.25rem;
	}

	.pricing-card {
		padding: 2rem 1.5rem;
		margin-bottom: 2rem;
	}

	.pricing-card.featured {
		transform: scale(1.02);
	}

	.pricing-price {
		font-size: 2.5rem;
	}

	.btn-solid-lg {
		padding: 1.25rem 2.5rem;
		font-size: 0.95rem;
	}

	.nav-link {
		margin: 0.25rem 0;
	}

	#pricing::before {
		width: 400px;
		height: 400px;
		top: -200px;
		left: -200px;
	}

	/* Mobile Sidebar improvements for tablet */
	.mobile-nav-sidebar {
		width: 80%;
		max-width: 300px;
	}

	.navbar-custom {
		padding: 0.75rem 0;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 1.5rem;
		margin-bottom: 1.25rem;
	}

	h2 {
		font-size: 1.35rem;
	}

	.header {
		min-height: 70vh;
		padding-top: 1rem;
	}

	.text-container h1 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.text-container .p-large {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}

	.guarantee-badge {
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
		margin-bottom: 1.5rem;
	}

	.card {
		padding: 1.5rem 1rem;
	}

	.feature-icon {
		font-size: 2.5rem;
		margin-top: 1rem;
	}

	.feature-card-header {
		height: 150px;
	}

	.card-title {
		font-size: 1.25rem;
	}

	.counter-section {
		padding: 2.5rem 0;
	}

	.counter {
		padding: 1.25rem 0.75rem;
	}

	.counter-value {
		font-size: 1.85rem;
	}

	.counter-title {
		font-size: 0.95rem;
	}

	.btn-solid-lg {
		padding: 1rem 2rem;
		font-size: 0.9rem;
		width: 100%;
	}

	.pricing-price {
		font-size: 2rem;
	}

	.pricing-card {
		padding: 1.5rem 1rem;
	}

	.pricing-title {
		font-size: 1.5rem;
		letter-spacing: 0.5px;
		margin-bottom: 0.75rem;
	}

	.price {
		padding: 1.25rem;
		margin-bottom: 0.75rem !important;
	}

	.value {
		font-size: 2rem;
	}

	.currency {
		font-size: 0.7rem;
	}

	.navbar-brand {
		font-size: 1.35rem;
	}

	/* Mobile Sidebar final adjustments */
	.mobile-nav-sidebar {
		width: 90%;
		max-width: 280px;
		padding-top: 70px;
	}

	.mobile-nav-sidebar .nav-link {
		padding: 0.85rem 1.25rem !important;
		font-size: 0.95rem;
	}

	.mobile-nav-sidebar .nav-link i {
		font-size: 1.2rem;
	}

	.mobile-nav-sidebar .btn {
		font-size: 0.9rem;
		padding: 0.85rem 1.5rem;
	}

	.navbar-toggler {
		padding: 0.4rem 0.6rem !important;
	}

	.navbar-toggler-icon {
		width: 1.3rem !important;
		height: 1.3rem !important;
	}

	.navbar-toggler-icon::before,
	.navbar-toggler-icon::after,
	.navbar-toggler-icon span {
		width: 20px;
	}

	.navbar-toggler-icon::before {
		top: -6px;
	}

	.navbar-toggler-icon::after {
		bottom: -6px;
	}
}

/* ========== UTILITY CLASSES ========== */
.section-heading {
	text-align: center;
	position: relative;
	padding-bottom: 1.5rem;
}

.section-heading::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.text-center {
	text-align: center;
}

.container {
	max-width: 1200px;
}

/* ========== MOBILE SIDEBAR NAVIGATION ========== */
.navbar-toggler {
	border: 2px solid var(--primary) !important;
	padding: 0.4rem 0.6rem !important;
	background: transparent !important;
	width: auto !important;
	height: auto !important;
}

.navbar-toggler:focus {
	box-shadow: none !important;
	outline: none !important;
}

.navbar-toggler-icon {
	width: 1.5rem !important;
	height: 1.5rem !important;
	position: relative;
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: transparent !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
	content: '';
	display: block;
	width: 22px;
	height: 2.5px;
	background: var(--primary);
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: absolute;
}

.navbar-toggler-icon::before {
	top: -7px;
}

.navbar-toggler-icon::after {
	bottom: -7px;
}

.navbar-toggler-icon span {
	width: 22px;
	height: 2.5px;
	position: static;
	display: block;
}

/* Hamburger animation */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
	transform: rotate(45deg);
	top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
	transform: rotate(-45deg);
	bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
	opacity: 0;
	transform: scale(0);
}

/* Sidebar Menu Mobile */
.mobile-nav-sidebar {
	position: fixed;
	left: -100%;
	top: 0;
	width: 85%;
	max-width: 360px;
	height: 100vh;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
	box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
	z-index: 1040;
	transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	overflow-x: hidden;
	padding-top: 70px;
	padding-bottom: 2rem;
	top: 60px;
	height: calc(100vh - 60px);
}

.mobile-nav-sidebar.active {
	left: 0;
}



.mobile-nav-sidebar .navbar-nav {
	flex-direction: column;
	width: 100%;
	padding: 0 1.5rem;
}

.mobile-nav-sidebar .nav-item {
	width: 100%;
	margin: 0.5rem 0;
}

.mobile-nav-sidebar .nav-link {
	display: flex !important;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem !important;
	color: var(--text-dark) !important;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	margin: 0 !important;
}

.mobile-nav-sidebar .nav-link::before {
	content: '';
	position: absolute;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary), var(--primary-light));
	border-radius: 0 4px 4px 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-sidebar .nav-link:hover {
	background: rgba(67, 179, 174, 0.1);
	color: var(--primary) !important;
	transform: translateX(8px);
}

.mobile-nav-sidebar .nav-link:hover::before {
	transform: scaleY(1);
}

.mobile-nav-sidebar .nav-link i {
	font-size: 1.3rem;
	color: var(--primary);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.mobile-nav-sidebar .nav-link:hover i {
	color: var(--primary-light);
	transform: scale(1.2);
}

/* Couleurs des icônes spécifiques par lien */
.mobile-nav-sidebar .nav-item:nth-child(1) .nav-link i {
	color: #6BCB77;
}

.mobile-nav-sidebar .nav-item:nth-child(2) .nav-link i {
	color: #4D96FF;
}

.mobile-nav-sidebar .nav-item:nth-child(3) .nav-link i {
	color: #FFD93D;
}

.mobile-nav-sidebar .nav-item:nth-child(4) .nav-link i {
	color: #FF6B6B;
}

.mobile-nav-sidebar .nav-item:nth-child(5) .nav-link i {
	color: #845EC2;
}

.mobile-nav-sidebar .nav-item:nth-child(6) .nav-link i {
	color: #00C9A7;
}

.mobile-nav-sidebar .nav-item:nth-child(7) .nav-link i {
	color: var(--primary);
}

.mobile-nav-sidebar .nav-item:nth-child(8) .nav-link i {
	color: var(--primary);
}

/* Séparateur dans le menu mobile */
.mobile-nav-sidebar hr {
	margin: 1.5rem 0 !important;
	background: rgba(67, 179, 174, 0.15);
	border: none;
	height: 1px;
}

.mobile-nav-sidebar .btn {
	width: 100%;
	margin-top: 1rem;
	justify-content: center;
	animation: slideUp 0.4s ease-out backwards;
}

.mobile-nav-sidebar .btn:nth-of-type(1) {
	animation-delay: 0.1s;
}

.mobile-nav-sidebar .btn:nth-of-type(2) {
	animation-delay: 0.2s;
}

/* Overlay mobile menu - SIMPLIFIÉ */
.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1039;
	display: none;
	background: transparent;
	pointer-events: none;
}

.mobile-nav-overlay.active {
	display: none;
	pointer-events: none;
}

/* ========== SCROLLBAR STYLING ========== */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary), var(--primary-dark));
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-dark);
}
/* ========== ANIMATED BACKGROUND FOR MANAGEMENT THEME ========== */

/* Animated background container */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(67, 179, 174, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(89, 214, 209, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
	pointer-events: none;
	z-index: -2;
	animation: backgroundFlow 35s ease-in-out infinite;
	will-change: background;
}

@keyframes backgroundFlow {
	0% {
		background: 
			radial-gradient(circle at 20% 50%, rgba(67, 179, 174, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 80% 80%, rgba(89, 214, 209, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 40% 20%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
	}
	25% {
		background: 
			radial-gradient(circle at 40% 40%, rgba(67, 179, 174, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 60% 90%, rgba(89, 214, 209, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 80% 30%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
	}
	50% {
		background: 
			radial-gradient(circle at 80% 50%, rgba(67, 179, 174, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 20% 80%, rgba(89, 214, 209, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 60% 60%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
	}
	75% {
		background: 
			radial-gradient(circle at 70% 60%, rgba(67, 179, 174, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 30% 70%, rgba(89, 214, 209, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 50% 40%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
	}
	100% {
		background: 
			radial-gradient(circle at 20% 50%, rgba(67, 179, 174, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 80% 80%, rgba(89, 214, 209, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 40% 20%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
	}
}

/* Animated geometric shapes for management theme */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(45deg, transparent 30%, rgba(67, 179, 174, 0.08) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(89, 214, 209, 0.08) 50%, transparent 70%),
		repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(67, 179, 174, 0.06) 50px, rgba(67, 179, 174, 0.06) 51px),
		repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(89, 214, 209, 0.06) 50px, rgba(89, 214, 209, 0.06) 51px);
	background-size: 400px 400px, 300px 300px, 100%, 100%;
	pointer-events: none;
	z-index: -1;
	animation: shapeFlow 30s linear infinite;
	will-change: background-position;
}

@keyframes shapeFlow {
	0% {
		background-position: 0% 0%, 0% 0%, 0 0, 0 0;
	}
	100% {
		background-position: 400px 400px, -300px 300px, 50px 0, 0 50px;
	}
}

/* ========== SECONDARY ANIMATED DOTS LAYER ========== */
html::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle, rgba(67, 179, 174, 0.08) 2px, transparent 2px),
		radial-gradient(circle, rgba(89, 214, 209, 0.08) 1px, transparent 1px);
	background-size: 80px 80px, 120px 120px;
	background-position: 0 0, 40px 40px;
	pointer-events: none;
	z-index: -1;
	animation: dotsFlow 40s linear infinite;
}

@keyframes dotsFlow {
	0% {
		background-position: 0 0, 40px 40px;
	}
	100% {
		background-position: 80px 80px, 120px 120px;
	}
}

/* ========== IMAGE ANIMATIONS ========== */

/* Float animation for images */
img {
	animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
	0%, 100% {
		transform: translateY(0px) scale(1);
	}
	50% {
		transform: translateY(-8px) scale(1.01);
	}
}

/* Image hover glow effect */
img:hover {
	filter: drop-shadow(0 0 15px rgba(67, 179, 174, 0.4));
	animation: imageGlow 0.6s ease-out;
}

@keyframes imageGlow {
	0% {
		filter: drop-shadow(0 0 0px rgba(67, 179, 174, 0));
	}
	100% {
		filter: drop-shadow(0 0 15px rgba(67, 179, 174, 0.4));
	}
}

/* Card images - special animation */
.card img,
.feature-card img,
.pricing-card img {
	animation: imageZoomFlow 5s ease-in-out infinite;
}

@keyframes imageZoomFlow {
	0%, 100% {
		transform: scale(1) rotateZ(0deg);
	}
	50% {
		transform: scale(1.05) rotateZ(0.5deg);
	}
}

/* ========== CUSTOM CURSOR FOLLOWER ========== */

/* Show default cursor - normal appearance */
* {
	cursor: auto;
}

/* Interactive elements get pointer */
button,
a,
input[type="button"],
input[type="submit"],
[role="button"],
.btn,
.nav-link,
.page-scroll {
	cursor: pointer;
}

/* Cursor follower ring only */
.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	border: 2.5px solid var(--primary);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	opacity: 0.6;
	transition: border-color 0.2s ease, width 0.2s ease, height 0.2s ease;
	box-shadow: 0 0 15px rgba(67, 179, 174, 0.3);
}

.cursor-ring.active {
	border-color: #FF6B6B;
	width: 45px;
	height: 45px;
	box-shadow: 0 0 25px rgba(255, 107, 107, 0.4);
}

/* Hide cursor dot - only show ring follower */
.cursor-dot {
	display: none !important;
}

/* ========== GSAP ANIMATION CLASSES ========== */

/* Elements prepared for GSAP animations */
.gsap-fade-in {
	opacity: 0;
	transform: translateY(20px);
}

.gsap-slide-in {
	opacity: 0;
	transform: translateX(-50px);
}

.gsap-scale-in {
	opacity: 0;
	transform: scale(0.9);
}

.gsap-bounce {
	animation: bounceGsap 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceGsap {
	0% {
		transform: translateY(0) scale(0.95);
	}
	50% {
		transform: translateY(-10px) scale(1.02);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

@keyframes titlePulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.9;
		transform: scale(1.02);
	}
}

/* Section backgrounds with overlay pattern for management aesthetic */
section {
	position: relative;
	overflow: hidden;
}

section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 2px,
			rgba(67, 179, 174, 0.01) 2px,
			rgba(67, 179, 174, 0.01) 4px
		);
	pointer-events: none;
	z-index: 0;
}

/* Floating animation for cards */
.card,
.feature-card,
.pricing-card {
	animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-5px);
	}
}

/* ========== RESPONSIVE ANIMATIONS ========== */

@media (max-width: 768px) {
	/* Disable some animations on mobile for performance */
	body::before {
		animation: backgroundFlow 20s ease-in-out infinite;
	}

	body::after {
		animation: shapeFlow 30s linear infinite;
	}

	img {
		animation: imageFloat 5s ease-in-out infinite;
	}

	.card,
	.feature-card,
	.pricing-card {
		animation: cardFloat 4s ease-in-out infinite;
	}

	/* Simpler cursor animations on mobile */
	.cursor-dot,
	.cursor-ring {
		display: none;
	}

	* {
		cursor: auto;
	}
}

/* ========== PRICING CARDS STYLE ========== */
.pricing-card {
	position: relative;
	border-radius: var(--border-radius);
	border: 2px solid #f0f0f0;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
}

.pricing-card:hover {
	border-color: var(--primary);
	transform: translateY(-15px);
	box-shadow: 0 20px 60px rgba(67, 179, 174, 0.25);
}

@media (max-width: 768px) {
	.pricing-card {
		margin-bottom: 1.5rem;
		width: 100%;
	}
}

/* ========== RIPPLE CLICK EFFECT ========== */
.rippling {
	position: relative;
	overflow: hidden;
}

.rippling::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 107, 107, 0.6) 0%, rgba(255, 107, 107, 0.2) 70%, rgba(255, 107, 107, 0) 100%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
	0% {
		width: 0;
		height: 0;
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
	100% {
		width: 300px;
		height: 300px;
		opacity: 0;
	}
}

/* ========== FUTURISTIC SHINE & GLOW EFFECTS ========== */
@keyframes shineEffect {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes softGlow {
	0%, 100% {
		box-shadow: 0 8px 32px rgba(67, 179, 174, 0.15);
	}
	50% {
		box-shadow: 0 16px 48px rgba(67, 179, 174, 0.25);
	}
}

@keyframes floatBounce {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-8px);
	}
}

@keyframes slideInFromLeft {
	0% {
		opacity: 0;
		transform: translateX(-40px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInFromRight {
	0% {
		opacity: 0;
		transform: translateX(40px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: scale(0.95);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* ========== ENHANCED CARD STYLES ========== */
.card:not(.pricing-card) {
	animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* Shine effect on hover */
.card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	z-index: 10;
	pointer-events: none;
	transition: none;
}

.card:hover::after {
	animation: shineEffect 0.5s ease-in-out;
}

/* Enhanced feature cards */
#advantages .feature-card {
	animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards !important;
}

#advantages .feature-card:nth-child(1) { animation-delay: 0.05s !important; }
#advantages .feature-card:nth-child(2) { animation-delay: 0.15s !important; }
#advantages .feature-card:nth-child(3) { animation-delay: 0.25s !important; }
#advantages .feature-card:nth-child(4) { animation-delay: 0.05s !important; }
#advantages .feature-card:nth-child(5) { animation-delay: 0.15s !important; }
#advantages .feature-card:nth-child(6) { animation-delay: 0.25s !important; }
#advantages .feature-card:nth-child(7) { animation-delay: 0.05s !important; }
#advantages .feature-card:nth-child(8) { animation-delay: 0.15s !important; }
#advantages .feature-card:nth-child(9) { animation-delay: 0.25s !important; }

/* Smooth transitions for text */
.card-title,
.feature-card h4 {
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== MODERN DARK FOOTER ========== */
.footer {
	position: relative;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	color: #e8eef2;
	padding: 5rem 0 0 0;
	overflow: hidden;
	border-top: 2px solid rgba(67, 179, 174, 0.3);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(67, 179, 174, 0.08) 0%, transparent 50%),
				radial-gradient(circle at 80% 80%, rgba(89, 214, 209, 0.06) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
	animation: backgroundFlow 40s ease-in-out infinite;
}

.footer .container {
	position: relative;
	z-index: 1;
}

.footer-col {
	position: relative;
	z-index: 2;
	margin-bottom: 2rem;
	padding: 1.5rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(67, 179, 174, 0.2);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-col:hover {
	background: rgba(67, 179, 174, 0.08);
	border-color: rgba(67, 179, 174, 0.4);
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(67, 179, 174, 0.15);
}

.footer h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(135deg, #43b3ae 0%, #4ECDC4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #43b3ae, #4ECDC4);
	border-radius: 2px;
}

.footer h5 {
	color: #43b3ae;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.footer p {
	color: #c4c4d0;
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.footer a {
	color: #43b3ae;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	font-weight: 500;
}

.footer a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #43b3ae, #4ECDC4);
	transition: width 0.3s ease;
}

.footer a:hover {
	color: #4ECDC4;
	transform: translateX(5px);
}

.footer a:hover::after {
	width: 100%;
}

.footer ul li {
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
}

.footer ul li:hover {
	transform: translateX(8px);
}

.footer ul li i {
	color: #FF6B6B;
	font-size: 1rem;
	margin-right: 0.5rem;
	transition: all 0.3s ease;
}

.footer ul li:hover i {
	color: #4ECDC4;
	transform: scale(1.2);
}

.footer .btn {
	background: linear-gradient(135deg, #43b3ae 0%, #4ECDC4 100%);
	border: none;
	color: white;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
}

.footer .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: left 0.4s ease;
	z-index: -1;
}

.footer .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(67, 179, 174, 0.4);
}

.footer .btn:hover::before {
	left: 100%;
}

/* Social buttons styling */
.footer .btn-outline-primary {
	border: 2px solid #43b3ae;
	color: #43b3ae;
	background: transparent;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.footer .btn-outline-primary:hover {
	background: linear-gradient(135deg, #43b3ae 0%, #4ECDC4 100%);
	color: white;
	border-color: transparent;
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 10px 25px rgba(67, 179, 174, 0.3);
}

/* Guarantee badge in footer */
.footer .guarantee-badge {
	background: linear-gradient(135deg, rgba(67, 179, 174, 0.15) 0%, rgba(89, 214, 209, 0.1) 100%);
	border: 1px solid rgba(67, 179, 174, 0.3);
	color: #4ECDC4;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 8px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	animation: softGlow 2s ease-in-out infinite;
}

/* Footer divider and legal section */
.footer .border-top {
	border-color: rgba(67, 179, 174, 0.2) !important;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.footer .text-muted {
	color: #8a8fa0 !important;
	transition: all 0.3s ease;
}

.footer a.text-muted:hover {
	color: #43b3ae !important;
}

/* Copyright section */
.copyright {
	position: relative;
	background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
	color: #8a8fa0;
	padding: 2rem 0;
	text-align: center;
	border-top: 1px solid rgba(67, 179, 174, 0.2);
	font-size: 0.9rem;
	overflow: hidden;
}

.copyright::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: repeating-linear-gradient(
		90deg,
		transparent,
		transparent 2px,
		rgba(67, 179, 174, 0.02) 2px,
		rgba(67, 179, 174, 0.02) 4px
	);
	pointer-events: none;
	animation: shapeFlow 40s linear infinite;
}

.copyright .container {
	position: relative;
	z-index: 2;
}

.copyright a {
	color: #43b3ae;
	text-decoration: none;
	transition: all 0.3s ease;
}

.copyright a:hover {
	color: #4ECDC4;
	text-decoration: underline;
}

/* ========== ANIMATED NETWORK BACKGROUND ========== */
/* Multi-point connection animation for body background */
body {
	position: relative;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 15% 25%, rgba(67, 179, 174, 0.08) 0%, transparent 8%),
		radial-gradient(circle at 85% 45%, rgba(89, 214, 209, 0.08) 0%, transparent 8%),
		radial-gradient(circle at 50% 75%, rgba(78, 205, 196, 0.08) 0%, transparent 8%),
		radial-gradient(circle at 30% 60%, rgba(67, 179, 174, 0.06) 0%, transparent 8%),
		radial-gradient(circle at 70% 30%, rgba(89, 214, 209, 0.06) 0%, transparent 8%);
	background-size: 100% 100%;
	background-position: 0 0;
	pointer-events: none;
	z-index: -1;
	animation: networkFlow 50s ease-in-out infinite;
	will-change: background-position;
}

@keyframes networkFlow {
	0% {
		background-image: 
			radial-gradient(circle at 15% 25%, rgba(67, 179, 174, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 85% 45%, rgba(89, 214, 209, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 50% 75%, rgba(78, 205, 196, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 30% 60%, rgba(67, 179, 174, 0.06) 0%, transparent 8%),
			radial-gradient(circle at 70% 30%, rgba(89, 214, 209, 0.06) 0%, transparent 8%);
	}
	25% {
		background-image: 
			radial-gradient(circle at 25% 35%, rgba(67, 179, 174, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 75% 55%, rgba(89, 214, 209, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 60% 65%, rgba(78, 205, 196, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 40% 50%, rgba(67, 179, 174, 0.06) 0%, transparent 8%),
			radial-gradient(circle at 60% 40%, rgba(89, 214, 209, 0.06) 0%, transparent 8%);
	}
	50% {
		background-image: 
			radial-gradient(circle at 80% 50%, rgba(67, 179, 174, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 20% 80%, rgba(89, 214, 209, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 50% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 70% 70%, rgba(67, 179, 174, 0.06) 0%, transparent 8%),
			radial-gradient(circle at 30% 35%, rgba(89, 214, 209, 0.06) 0%, transparent 8%);
	}
	75% {
		background-image: 
			radial-gradient(circle at 35% 65%, rgba(67, 179, 174, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 70% 35%, rgba(89, 214, 209, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 45% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 55% 25%, rgba(67, 179, 174, 0.06) 0%, transparent 8%),
			radial-gradient(circle at 80% 80%, rgba(89, 214, 209, 0.06) 0%, transparent 8%);
	}
	100% {
		background-image: 
			radial-gradient(circle at 15% 25%, rgba(67, 179, 174, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 85% 45%, rgba(89, 214, 209, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 50% 75%, rgba(78, 205, 196, 0.08) 0%, transparent 8%),
			radial-gradient(circle at 30% 60%, rgba(67, 179, 174, 0.06) 0%, transparent 8%),
			radial-gradient(circle at 70% 30%, rgba(89, 214, 209, 0.06) 0%, transparent 8%);
	}
}

/* ========== ADVANCED DYNAMIC ANIMATIONS ========== */

/* Staggered text reveal animation */
@keyframes textReveal {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Glow pulse effect */
@keyframes glowPulse {
	0%, 100% {
		text-shadow: 0 0 10px rgba(67, 179, 174, 0.3);
	}
	50% {
		text-shadow: 0 0 30px rgba(67, 179, 174, 0.6), 0 0 60px rgba(89, 214, 209, 0.3);
	}
}

/* Floating element animation */
@keyframes floatSoft {
	0%, 100% {
		transform: translateY(0px) translateX(0px);
	}
	25% {
		transform: translateY(-10px) translateX(5px);
	}
	50% {
		transform: translateY(-20px) translateX(0px);
	}
	75% {
		transform: translateY(-10px) translateX(-5px);
	}
}

/* Rotating gradient animation */
@keyframes rotateGradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Breathing animation */
@keyframes breathing {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.02);
	}
}

/* Wave animation */
@keyframes wave {
	0%, 100% {
		transform: translateX(0) skewX(0deg);
	}
	25% {
		transform: translateX(10px) skewX(1deg);
	}
	50% {
		transform: translateX(0) skewX(0deg);
	}
	75% {
		transform: translateX(-10px) skewX(-1deg);
	}
}

/* Neon glow text animation */
@keyframes neonGlow {
	0%, 100% {
		text-shadow: 0 0 5px rgba(67, 179, 174, 0.3), 0 0 10px rgba(67, 179, 174, 0.2);
		color: #43b3ae;
	}
	50% {
		text-shadow: 0 0 10px rgba(67, 179, 174, 0.6), 0 0 20px rgba(67, 179, 174, 0.4), 0 0 30px rgba(89, 214, 209, 0.3);
		color: #4ECDC4;
	}
}

/* Shimmer effect */
@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

/* Bounce entrance */
@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(20px);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

/* Rotate in animation */
@keyframes rotateIn {
	0% {
		opacity: 0;
		transform: rotate(-10deg) scale(0.9);
	}
	100% {
		opacity: 1;
		transform: rotate(0deg) scale(1);
	}
}

/* Gradient shift animation */
@keyframes gradientShift {
	0% {
		background-position: 0% center;
	}
	50% {
		background-position: 100% center;
	}
	100% {
		background-position: 0% center;
	}
}

/* Apply animations to elements */
.btn-solid-lg,
.btn:not(.btn-outline-primary) {
	animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.btn:hover {
	animation: breathing 1.5s ease-in-out infinite;
}

/* Section title animations */
.section-heading {
	animation: textReveal 0.6s ease-out;
}

h1, h2, h3 {
	animation: textReveal 0.8s ease-out backwards;
}

/* Dynamic element hover effects */
a:not(.btn):not(.text-decoration-none) {
	position: relative;
	transition: all 0.3s ease;
}

a:not(.btn):not(.text-decoration-none)::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg,#43b3ae, #4ECDC4);
	transition: width 0.3s ease;
}

a:not(.btn):not(.text-decoration-none):hover::after {
	width: 100%;
}

/* Enhanced transition for all interactive elements */
button,
.btn,
a,
input,
textarea,
select {
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth scroll behavior for all elements */
* {
	scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
:focus-visible {
	outline: 2px solid #43b3ae;
	outline-offset: 4px;
	border-radius: 4px;
}

/* Input field animations */
input:focus,
textarea:focus,
select:focus {
	box-shadow: 0 0 0 3px rgba(67, 179, 174, 0.1), 0 0 0 5px rgba(67, 179, 174, 0.05);
	border-color: #43b3ae;
}

/* Link hover animation */
.nav-link {
	position: relative;
	overflow: hidden;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #43b3ae, #4ECDC4);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.nav-link:hover::before {
	transform: translateX(0);
}

/* Image hover zoom effect */
img {
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

img:hover {
	transform: scale(1.03);
	filter: brightness(1.05);
}

/* List animation */
li {
	animation: textReveal 0.6s ease-out backwards;
}

li:nth-child(1) { animation-delay: 0.1s; }
li:nth-child(2) { animation-delay: 0.2s; }
li:nth-child(3) { animation-delay: 0.3s; }
li:nth-child(4) { animation-delay: 0.4s; }
li:nth-child(5) { animation-delay: 0.5s; }
li:nth-child(6) { animation-delay: 0.6s; }

/* Badge animations */
.badge {
	animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: inline-block;
}

/* Tooltip animations */
[data-bs-toggle="tooltip"] {
	animation: breathing 2s ease-in-out infinite;
}

/* Vertical accent line for sections */
.section-divider {
	height: 4px;
	background: linear-gradient(90deg, transparent, #43b3ae, #4ECDC4, transparent);
	border-radius: 2px;
	margin: 2rem 0;
	animation: gradientShift 3s ease-in-out infinite;
}