/* Global and body styles from services.html */
:root {
	--primary-green: #29D391;
	--primary-blue: #1A98E4;
	--light-bg: #f9f9f9;
}

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

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: var(--light-bg);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header and Navigation Styles (from services.html) */
.header {
	background: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

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

.logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: bold;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--primary-blue);
}

.admin-btn {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	color: white;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	transition: transform 0.3s ease;
}

.admin-btn:hover {
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
}
/* Reveal animation for scroll-in sections */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.7s cubic-bezier(.2,1,.22,1);
}
.reveal.active {
	opacity: 1;
	transform: none;
}
/* --- Unique styles from contact.html --- */
.contact-card {
	transition: all 0.4s ease;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.dark-mode .contact-card:hover {
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background: linear-gradient(135deg, rgba(26, 152, 228, 0.1), rgba(41, 211, 145, 0.1));
	transition: height 0.4s ease;
	z-index: -1;
}
.contact-card:hover::before {
	height: 100%;
}
.form-input {
	transition: all 0.3s ease;
	border: 1px solid #e5e7eb;
}
.dark-mode .form-input {
	background-color: #2a2a2a;
	border-color: #444;
	color: #e0e0e0;
}
.form-input:focus {
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(26, 152, 228, 0.2);
}
.dark-mode .form-input:focus {
	box-shadow: 0 0 0 3px rgba(26, 152, 228, 0.4);
}
.contact-icon {
	transition: all 0.3s ease;
}
.contact-card:hover .contact-icon {
	transform: scale(1.2) rotate(5deg);
}
/* --- Unique styles from about.html --- */
.feature-card {
	transition: all 0.4s ease;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.dark-mode .feature-card:hover {
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background: linear-gradient(135deg, rgba(26, 152, 228, 0.1), rgba(41, 211, 145, 0.1));
	transition: height 0.4s ease;
	z-index: -1;
}
.feature-card:hover::before {
	height: 100%;
}
.timeline-container {
	position: relative;
}
.timeline-container::before {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, var(--primary-blue), var(--primary-green));
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 768px) {
	.timeline-container::before {
		left: 30px;
	}
}
.timeline-item {
	position: relative;
	margin-bottom: 2rem;
}
.timeline-dot {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 2;
}
@media (max-width: 768px) {
	.timeline-dot {
		left: 30px;
	}
}
.team-card {
	transition: all 0.3s ease;
}
.team-card:hover {
	transform: translateY(-5px);
}
.team-card .overlay {
	opacity: 0;
	transition: all 0.3s ease;
}
.team-card:hover .overlay {
	opacity: 1;
}
.value-card {
	transition: all 0.3s ease;
	overflow: hidden;
}
.value-card:hover {
	transform: translateY(-5px);
}
.value-card::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s ease;
}
.value-card:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
/* --- Unique styles from services.html --- */
.package-card {
	position: relative;
	z-index: 1;
	/* transition, border-radius, overflow already present */
}
.package-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background: linear-gradient(135deg, rgba(26, 152, 228, 0.1), rgba(41, 211, 145, 0.1));
	transition: height 0.4s ease;
	z-index: -1;
}
.package-card:hover::before {
	height: 100%;
}
.custom-checkbox {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	user-select: none;
}
.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 4px;
	transition: all 0.2s ease;
}
.dark-mode .checkmark {
	background-color: #2a2a2a;
	border-color: #444;
}
.custom-checkbox:hover input ~ .checkmark {
	border-color: #1A98E4;
}
.custom-checkbox input:checked ~ .checkmark {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	border-color: transparent;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
	display: block;
}
.custom-checkbox .checkmark:after {
	left: 7px;
	top: 3px;
	width: 6px;
	height: 11px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.badge-pulse {
	animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}
.price-calculator {
	transition: all 0.3s ease;
}
.price-highlight {
	animation: priceHighlight 1s ease;
}
@keyframes priceHighlight {
	0% { background-color: rgba(41, 211, 145, 0.2); }
	100% { background-color: transparent; }
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.accordion-content.active {
	max-height: 500px;
}
.accordion-icon {
	transition: transform 0.3s ease;
}
.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}
.bonus-tag {
	position: relative;
	overflow: hidden;
}
.bonus-tag::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shine 2s infinite;
}
@keyframes shine {
	0% { left: -100%; }
	100% { left: 100%; }
}
.freebie-unlock {
	transition: all 0.5s ease;
}
.freebie-unlock.active {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(41, 211, 145, 0.3);
}

:root {
	--primary-green: #29D391;
	--primary-blue: #1A98E4;
	--light-bg: #f9f9f9;
	--dark-bg: #121212;
	--dark-card: #1E1E1E;
	--dark-text: #E0E0E0;
}

body {
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}

.light-mode {
	background-color: var(--light-bg);
	color: #333;
}

.dark-mode {
	background-color: var(--dark-bg);
	color: var(--dark-text);
}

.dark-mode .card {
	background-color: var(--dark-card);
}

.dark-mode .text-gray-700 {
	color: #b0b0b0;
}

.dark-mode .text-gray-600 {
	color: #c0c0c0;
}

.dark-mode .bg-white {
	background-color: var(--dark-card);
}

.dark-mode .border-gray-200 {
	border-color: #333;
}

.gradient-text {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gradient-bg {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.gradient-light-bg {
	background: linear-gradient(135deg, rgba(26, 152, 228, 0.1), rgba(41, 211, 145, 0.1));
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(26, 152, 228, 0.2);
}

.btn-secondary {
	background: white;
	color: #333;
	border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.dark-mode .btn-secondary {
	background: #2a2a2a;
	color: #e0e0e0;
	border: 1px solid #444;
}

.btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
	position: relative;
	transition: all 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link.active::after {
	width: 100%;
}

.mobile-menu {
	transition: transform 0.3s ease-in-out;
	transform: translateX(-100%);
}

.mobile-menu.active {
	transform: translateX(0);
}

.service-card {
	transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dark-mode .service-card:hover {
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.package-card {
	transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
}

.package-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dark-mode .package-card:hover {
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
	transition: all 0.3s ease;
}

.social-icon:hover {
	transform: translateY(-3px);
	color: var(--primary-blue);
}

.whatsapp-fab {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	transition: all 0.3s ease;
}

.whatsapp-fab:hover {
	transform: scale(1.1);
}

/* Animations */
.fade-in {
	opacity: 0;
	animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Scroll reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Floating animation for hero elements */
.float {
	animation: float 6s ease-in-out infinite;
}

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

/* Navbar scroll effect */
.navbar {
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dark-mode .navbar.scrolled {
	background-color: rgba(30, 30, 30, 0.95);
	color: var(--dark-text);
}

/* Fix for navbar buttons in dark mode */
.dark-mode .navbar {
	color: var(--dark-text);
}

.dark-mode .nav-link {
	color: var(--dark-text) !important;
}

.dark-mode .navbar svg {
	color: var(--dark-text);
}

.dark-mode #mobile-menu-button {
	color: var(--dark-text);
}

/* Hero background animation */
.hero-bg {
	background: linear-gradient(-45deg, #1A98E4, #29D391, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

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

/* Pulse animation for CTA */
.pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(41, 211, 145, 0.7); }
	70% { box-shadow: 0 0 0 10px rgba(41, 211, 145, 0); }
	100% { box-shadow: 0 0 0 0 rgba(41, 211, 145, 0); }
}

/* Feature icon animation */
.feature-icon {
	transition: all 0.3s ease;
}

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

/* Blob animation for hero section */
.blob {
	position: absolute;
	width: 500px;
	height: 500px;
	background: linear-gradient(180deg, rgba(26, 152, 228, 0.2) 0%, rgba(41, 211, 145, 0.2) 100%);
	border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
	transform: rotate(-20deg);
	animation: blob 15s ease-in-out infinite alternate;
	opacity: 0.7;
	z-index: 0;
}

@keyframes blob {
	0% { border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%; }
	25% { border-radius: 57% 43% 30% 70% / 70% 30% 43% 57%; }
	50% { border-radius: 30% 70% 57% 43% / 43% 57% 70% 30%; }
	75% { border-radius: 70% 30% 43% 57% / 57% 43% 30% 70%; }
	100% { border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%; }
}
