/*
Theme Name: Ultra Light
Theme URI: https://wordpress.org/themes/ultra-light/
Author: Custom Development
Author URI: https://wordpress.org/
Description: Un tema super liviano y de carga rapida, inspirado en Astra pero optimizado para maxima velocidad. CSS minimo, sin dependencias pesadas, perfecto para sitios que necesitan cargar rapido.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ultra-light
Tags: light-weight, fast, minimal, responsive, accessibility-ready, custom-menu, featured-images, threaded-comments, translation-ready

Ultra Light WordPress Theme, (C) 2024
Ultra Light is distributed under the terms of the GNU GPL
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
	/* Main Brand Colors */
	--color-primary: #3fcb9e;
	--color-secondary: #211a3d;
	
	/* Neutral Colors */
	--color-white: #ffffff;
	--color-black: #000000;
	
	/* Grays for UI */
	--color-gray-light: #F5F7FA;
	--color-gray: #E8ECEF;
	--color-text: #5A6C7D;
	--color-text-dark: #2C3E50;
	
	/* Legacy support - redirect to new variables */
	--color-teal: #3fcb9e;
	--color-navy: #211a3d;
	--color-dark: #211a3d;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text-dark);
	background: var(--color-white);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===============================================
   HEADER - Axios Style
   =============================================== */

.site-header {
	background: transparent;
	padding: 0.8rem 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: none;
}

.site-header.scrolled {
	background: rgba(63, 203, 158, 0.9);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	padding: 0.7rem 0;
	box-shadow: 
		0 4px 30px rgba(0, 0, 0, 0.25),
		0 0 50px rgba(63, 203, 158, 0.3),
		0 0 100px rgba(63, 203, 158, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo {
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--color-white);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	filter: brightness(1.1);
}

.site-header.scrolled .site-logo {
	color: var(--color-secondary);
}

.site-logo:hover {
	opacity: 0.85;
	filter: brightness(1.2);
}

.site-logo img,
.logo-main {
	max-height: 60px;
	height: auto;
	width: auto;
	max-width: 250px;
	display: block;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 8px rgba(63, 203, 158, 0.3));
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .logo-main {
	max-height: 52px;
	max-width: 220px;
	filter: drop-shadow(0 2px 6px rgba(33, 26, 61, 0.2));
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
	margin: 0;
}

.main-navigation a {
	text-decoration: none;
	color: var(--color-white);
	font-weight: 600;
	font-size: 15px;
	transition: color 0.3s ease;
	position: relative;
}

.site-header.scrolled .main-navigation a {
	color: var(--color-secondary);
}

.main-navigation a:hover {
	color: var(--color-primary);
}

.site-header.scrolled .main-navigation a:hover {
	color: var(--color-secondary);
	opacity: 0.8;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	transition: width 0.3s ease;
}

.site-header.scrolled .main-navigation a::after {
	background: var(--color-secondary);
}

.main-navigation a:hover::after {
	width: 100%;
}

/* ===============================================
   MAIN
   =============================================== */

.site-main {
	padding: 0;
	min-height: 60vh;
	margin-top: 70px;
}

.home .site-main {
	padding: 0;
	margin-top: 0;
}

.content-area {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem 20px;
}

.home .content-area {
	max-width: 100%;
	padding: 0;
}

/* ===============================================
   HERO SECTION - Simplified
   =============================================== */

.homepage-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-secondary) 0%, #1a1430 50%, var(--color-secondary) 100%);
	color: var(--color-white);
	overflow: hidden;
	padding: 8rem 0 5rem;
}

.hero-background {
	width: 100%;
	position: relative;
}

/* Floating Shapes */
.floating-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.floating-shape {
	position: absolute;
	color: var(--color-primary);
	opacity: 0.25;
	transition: all 0.6s ease;
	will-change: transform;
	filter: drop-shadow(0 0 10px rgba(63, 203, 158, 0.3));
	animation: rotate-continuous 20s linear infinite, pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%, 100% {
		filter: drop-shadow(0 0 10px rgba(63, 203, 158, 0.3));
	}
	50% {
		filter: drop-shadow(0 0 20px rgba(63, 203, 158, 0.5));
	}
}

.floating-shape:hover {
	opacity: 0.45;
	filter: drop-shadow(0 0 25px rgba(63, 203, 158, 0.6));
}

/* Continuous rotation animation */
@keyframes rotate-continuous {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.floating-shape {
	animation: rotate-continuous 20s linear infinite;
}

/* Positioning and animation for each shape */
.shape-1 {
	top: 15%;
	right: 10%;
	animation: rotate-continuous 25s linear infinite, pulse-glow 4s ease-in-out infinite;
	animation-delay: -3s, 0s;
}

.shape-2 {
	top: 60%;
	left: 8%;
	animation: rotate-continuous 30s linear infinite reverse, pulse-glow 3.5s ease-in-out infinite;
	animation-delay: -2.5s, 1s;
}

.shape-3 {
	top: 25%;
	left: 15%;
	animation: rotate-continuous 22s linear infinite, pulse-glow 3.2s ease-in-out infinite;
	animation-delay: -7s, 2s;
}

.shape-4 {
	bottom: 20%;
	right: 15%;
	animation: rotate-continuous 28s linear infinite reverse, pulse-glow 3.8s ease-in-out infinite;
	animation-delay: -4.5s, 0.5s;
}

.homepage-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 15% 25%, rgba(63, 203, 158, 0.15) 0%, transparent 35%),
		radial-gradient(circle at 85% 75%, rgba(63, 203, 158, 0.1) 0%, transparent 40%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	animation: fadeInUp 1s ease both;
}

.hero-title {
	font-size: clamp(2.5rem, 7vw, 5rem);
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-title-main {
	display: block;
	color: var(--color-white);
	margin-bottom: 0.5rem;
	font-weight: 800;
}

.hero-title-highlight {
	display: block;
	background: transparent;
	color: var(--color-primary);
	padding: 0.3rem 2.5rem;
	display: inline-block;
	border-radius: 12px;
	position: relative;
	margin: 0.5rem 0;
	border: 3px solid var(--color-primary);
	box-shadow: 0 0 30px rgba(63, 203, 158, 0.3);
}

.hero-description {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
	margin: 0 auto 3rem;
	font-weight: 500;
	animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 0.6s both;
}

/* ===============================================
   BUTTONS
   =============================================== */

.btn {
	display: inline-block;
	padding: 0.5rem 2.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	z-index: 1;
	border: 2px solid transparent;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
	z-index: -1;
}

.btn:hover::before {
	width: 400px;
	height: 400px;
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-secondary);
	box-shadow: 
		0 6px 25px rgba(63, 203, 158, 0.35),
		0 0 20px rgba(63, 203, 158, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	font-weight: 700;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 10px 35px rgba(63, 203, 158, 0.6),
		0 0 30px rgba(63, 203, 158, 0.4),
		0 0 50px rgba(63, 203, 158, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
	background: #2eb892;
	color: var(--color-secondary);
}

.btn-outline {
	background: transparent;
	color: var(--color-white);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--color-white);
	transform: translateY(-3px);
}

.btn-secondary {
	background: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.btn-secondary:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-large {
	padding: 0.7rem 3rem;
	font-size: 20px;
	font-weight: 700;
}

/* ===============================================
   SERVICES BAR - Marquee Animation
   =============================================== */

.homepage-services-bar {
	background: var(--color-primary);
	color: var(--color-secondary);
	padding: 1.5rem 0;
	overflow: hidden;
	position: relative;
	border-top: 2px solid var(--color-secondary);
	border-bottom: 2px solid var(--color-secondary);
}

.services-marquee {
	overflow: hidden;
	position: relative;
}

.services-marquee-content {
	display: flex;
	align-items: center;
	gap: 4rem;
	animation: marquee 40s linear infinite;
	white-space: nowrap;
	width: max-content;
}

.services-marquee-content::after {
	content: '';
	display: flex;
	align-items: center;
	gap: 4rem;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.service-tag {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-secondary);
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.service-tag:hover {
	opacity: 1;
	color: var(--color-white);
}

.service-separator {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-secondary);
	opacity: 0.6;
}

/* ===============================================
   SECTIONS - General Styles
   =============================================== */

.section-header-center {
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeInUp 0.8s ease;
}

.section-label-wrapper {
	margin-bottom: 1rem;
}

.section-label {
	display: inline-block;
	color: var(--color-primary);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1rem;
	position: relative;
	padding: 0.4rem 1.2rem;
	background: rgba(52, 201, 162, 0.1);
	border-radius: 20px;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--color-text-dark);
}

.section-title .highlight {
	color: var(--color-primary);
	position: relative;
}

.section-title .highlight-box {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 0.1rem 1rem;
	border-radius: 12px;
	display: inline-block;
	box-shadow: 
		0 4px 15px rgba(63, 203, 158, 0.4),
		0 0 20px rgba(63, 203, 158, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.section-description {
	font-size: 1.15rem;
	color: var(--color-text);
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.8;
}

.section-title-large {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 2rem;
	color: var(--color-text-dark);
}

/* ===============================================
   ABOUT SECTION - Modern Layout
   =============================================== */

.homepage-about {
	padding: 60px 0;
	background: var(--color-gray-light);
	position: relative;
}

.about-layout {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 6rem;
	align-items: center;
}

.about-left {
	position: relative;
}

.about-intro {
	font-size: 1.1rem;
	color: var(--color-text);
	line-height: 1.8;
	margin-top: 1.5rem;
	margin-bottom: 3rem;
	max-width: 500px;
}

.about-badge-circle {
	position: relative;
	width: 200px;
	height: 200px;
	margin-top: 3rem;
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.circle-text {
	width: 100%;
	height: 100%;
}

.circle-text path {
	fill: none;
}

.circle-text text {
	fill: var(--color-secondary);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2.75px;
	text-transform: uppercase;
}

.badge-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-secondary);
	animation: none;
	box-shadow: 
		0 4px 20px rgba(63, 203, 158, 0.4),
		0 0 30px rgba(63, 203, 158, 0.3),
		0 0 50px rgba(63, 203, 158, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-center svg {
	display: block;
	margin: 0 auto;
}

.about-right {
	animation: fadeInRight 1s ease;
}

.about-cards {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.about-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 2.5rem;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(63, 203, 158, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.about-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--color-primary);
	transform: scaleY(0);
	transition: transform 0.4s ease;
	box-shadow: 0 0 10px rgba(63, 203, 158, 0.5);
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow: 
		0 12px 40px rgba(63, 203, 158, 0.3),
		0 0 30px rgba(63, 203, 158, 0.2),
		0 0 0 1px rgba(63, 203, 158, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 1);
	background: var(--color-primary);
}

.about-card:hover::before {
	transform: scaleY(1);
	background: var(--color-secondary);
}

.about-card-number {
	font-size: 4rem;
	font-weight: 900;
	color: var(--color-primary);
	line-height: 1;
	opacity: 0.3;
	flex-shrink: 0;
	min-width: 80px;
	transition: all 0.4s ease;
}

.about-card:hover .about-card-number {
	color: var(--color-white);
	opacity: 0.5;
}

.about-card-content {
	flex: 1;
}

.about-card-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 0.75rem;
	transition: color 0.4s ease;
}

.about-card:hover .about-card-title {
	color: var(--color-white);
}

.about-card-text {
	font-size: 1rem;
	color: var(--color-text);
	line-height: 1.7;
	transition: color 0.4s ease;
}

.about-card:hover .about-card-text {
	color: rgba(255, 255, 255, 0.9);
}

/* ===============================================
   SERVICES SECTION - Card Design
   =============================================== */

.homepage-services {
	padding: 60px 0;
	background: var(--color-secondary);
	position: relative;
	color: var(--color-white);
}

.homepage-services .section-label {
	background: rgba(63, 203, 158, 0.15);
	color: var(--color-primary);
}

.homepage-services .section-title {
	color: var(--color-white);
}

.homepage-services .section-subtitle {
	color: rgba(255, 255, 255, 0.8);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.15);
	opacity: 0;
	transform: translateY(30px);
}

.service-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.service-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-color: rgba(63, 203, 158, 0.3);
	box-shadow: 
		0 8px 30px rgba(0, 0, 0, 0.3),
		0 0 40px rgba(63, 203, 158, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-card-inner {
	padding: 2rem;
}

.service-icon {
	width: 56px;
	height: 56px;
	background: rgba(63, 203, 158, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: var(--color-primary);
	transition: all 0.3s ease;
	box-shadow: 
		0 4px 15px rgba(63, 203, 158, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon {
	background: var(--color-primary);
	color: var(--color-white);
	transform: scale(1.05);
	box-shadow: 
		0 6px 20px rgba(63, 203, 158, 0.4),
		0 0 25px rgba(63, 203, 158, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-icon svg {
	width: 32px;
	height: 32px;
	stroke-width: 2.5;
}

.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--color-white);
	line-height: 1.3;
	transition: color 0.3s ease;
}

.service-card:hover .service-title {
	color: var(--color-secondary);
}

.service-description {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.service-card:hover .service-description {
	color: var(--color-text);
}

/* ===============================================
   WHY CHOOSE US SECTION
   =============================================== */

.homepage-why-choose {
	padding: 6rem 0;
	background: var(--color-white);
	position: relative;
}

.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.why-item {
	padding: 2.5rem 2rem;
	background: var(--color-gray-light);
	border-radius: 16px;
	transition: all 0.4s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.why-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: linear-gradient(135deg, rgba(52, 201, 162, 0.05), rgba(45, 62, 80, 0.05));
	transition: width 0.5s ease;
	z-index: 0;
}

.why-item:hover::before {
	width: 100%;
}

.why-item:hover {
	border-color: var(--color-primary);
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(52, 201, 162, 0.1);
}

.why-icon {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.why-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 1rem;
	line-height: 1.3;
	position: relative;
	z-index: 1;
}

.why-description {
	color: var(--color-text);
	line-height: 1.7;
	font-size: 1.05rem;
	position: relative;
	z-index: 1;
}

/* ===============================================
   PROCESS SECTION - Timeline Design
   =============================================== */

.homepage-process {
	padding: 6rem 0;
	background: var(--color-gray-light);
	position: relative;
}

.process-timeline {
	max-width: 900px;
	margin: 3rem auto 0;
	position: relative;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
}

.process-step {
	position: relative;
	padding-left: 100px;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.5s ease;
}

.process-step.animate {
	opacity: 1;
	transform: translateX(0);
}

.process-step-marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 62px;
	height: 62px;
	background: var(--color-white);
	border: 4px solid var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.3s ease;
}

.process-step:hover .process-step-marker {
	transform: scale(1.1);
	background: var(--color-primary);
}

.step-number {
	font-size: 1.3rem;
	font-weight: 900;
	color: var(--color-primary);
	transition: color 0.3s ease;
}

.process-step:hover .step-number {
	color: var(--color-white);
}

.process-step-content {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.process-step:hover .process-step-content {
	border-color: var(--color-primary);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(52, 201, 162, 0.15);
}

.process-step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 0.75rem;
}

.process-step-description {
	color: var(--color-text);
	line-height: 1.7;
	font-size: 1.05rem;
}

/* ===============================================
   FAQ SECTION
   =============================================== */

.homepage-faq {
	padding: 60px 0;
	background: var(--color-secondary);
	position: relative;
	color: var(--color-white);
}

.homepage-faq .section-label {
	background: rgba(63, 203, 158, 0.15);
	color: var(--color-primary);
}

.homepage-faq .section-title {
	color: var(--color-white);
}

.faq-accordion {
	max-width: 900px;
	margin: 3rem auto 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-item.active {
	border-color: var(--color-primary);
	background: rgba(63, 203, 158, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 
		0 6px 20px rgba(63, 203, 158, 0.2),
		0 0 25px rgba(63, 203, 158, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	text-align: left;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-white);
	transition: all 0.3s ease;
}

.faq-question:hover {
	color: var(--color-primary);
}

.faq-question svg {
	flex-shrink: 0;
	margin-left: 1rem;
	transition: transform 0.3s ease;
	color: var(--color-primary);
}

.faq-item.active .faq-question svg {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 2rem;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 2rem 1.5rem;
}

.faq-answer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	font-size: 1rem;
}

/* ===============================================
   WEBSITE CHECK SECTION
   =============================================== */

.homepage-website-check {
	padding: 100px 0;
	background: var(--color-gray-light);
	color: var(--color-text-dark);
	position: relative;
	overflow: hidden;
}

.homepage-website-check::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(63, 203, 158, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(33, 26, 61, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.website-check-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.check-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--color-white);
	border-radius: 12px;
	border: 2px solid var(--color-gray);
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.check-item:hover {
	background: var(--color-white);
	border-color: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: 0 4px 20px rgba(63, 203, 158, 0.15);
}

.check-icon {
	width: 40px;
	height: 40px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	flex-shrink: 0;
}

.check-text {
	color: var(--color-text-dark);
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	line-height: 1.4;
}

.check-cta-text {
	font-size: 1.3rem;
	color: var(--color-secondary);
	font-weight: 700;
	margin-top: 2rem;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */

.homepage-contact {
	padding: 80px 0;
	background: var(--color-black);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
}

.homepage-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 30% 40%, rgba(63, 203, 158, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 70% 60%, rgba(33, 26, 61, 0.3) 0%, transparent 50%);
	pointer-events: none;
}

.contact-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.homepage-contact .section-header-center {
	margin-bottom: 3rem;
}

.homepage-contact .section-label {
	background: rgba(63, 203, 158, 0.15);
	color: var(--color-primary);
}

.homepage-contact .section-title {
	color: var(--color-white);
}

.homepage-contact .section-subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	margin-top: 1rem;
}

.contact-form-wrapper {
	margin-bottom: 4rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	color: var(--color-white);
	font-weight: 600;
	font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: var(--color-white);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 
		0 0 0 3px rgba(63, 203, 158, 0.15),
		0 0 20px rgba(63, 203, 158, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-form .btn {
	align-self: flex-start;
	margin-top: 0.5rem;
}

.contact-submit-btn {
	font-size: 1rem !important;
	padding: 0.75rem 2rem !important;
}

.contact-info-section {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 3rem;
	text-align: center;
}

.contact-info-inline {
	display: flex;
	gap: 3rem;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-info-item .contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-item .contact-icon svg {
	color: var(--color-primary);
}

.contact-info-item a {
	color: var(--color-white);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.contact-info-item a:hover {
	color: var(--color-primary);
}

/* ===============================================
   FOOTER
   =============================================== */

.site-footer {
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 60px 0 0;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 4rem;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
	display: flex;
	flex-direction: column;
}

/* Footer CTA Column */
.footer-cta {
	gap: 2rem;
}

.footer-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 900;
	line-height: 1.3;
	color: var(--color-white);
	margin: 0;
}

/* Footer Contact Column */
.footer-heading {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 2rem;
}

.footer-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	line-height: 1.6;
}

.footer-info-list svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--color-primary);
}

/* Footer Newsletter Column */
.footer-newsletter-text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.footer-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-newsletter-form input {
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: var(--color-white);
	font-size: 0.95rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
	outline: none;
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form button {
	align-self: flex-start;
}

/* Footer Bottom */
.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 2rem;
	padding: 2rem 0;
}

.footer-branding {
	grid-column: 1;
	display: flex;
	align-items: center;
}

.footer-logo {
	display: inline-block;
	transition: opacity 0.3s ease;
}

.footer-logo:hover {
	opacity: 0.8;
}

.footer-logo img {
	max-height: 45px;
	width: auto;
}

.site-info {
	grid-column: 2;
	text-align: center;
}

.site-info p {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-social {
	grid-column: 3;
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	align-items: center;
}

.footer-social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	color: var(--color-white);
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--color-primary);
	color: var(--color-secondary);
	transform: translateY(-2px);
}

.footer-social svg {
	fill: currentColor;
	stroke: none;
}

/* ===============================================
   COMING SOON PAGE
   =============================================== */

.coming-soon-page {
	overflow: hidden;
}

.coming-soon-hero {
	min-height: 92vh;
	height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.coming-soon-page .homepage-services-bar {
	min-height: 8vh;
	height: 8vh;
	display: flex;
	align-items: center;
}

.coming-soon-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.coming-soon-logo {
	margin-bottom: 3rem;
	animation: fadeInDown 1s ease;
}

.coming-soon-logo img {
	max-height: 80px;
	height: auto;
	width: auto;
	max-width: 300px;
	filter: drop-shadow(0 4px 15px rgba(63, 203, 158, 0.4));
}

.coming-soon-social {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 3rem;
	animation: fadeInUp 1s ease 0.8s both;
}

.coming-soon-social a {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(63, 203, 158, 0.1);
	border: 2px solid rgba(63, 203, 158, 0.3);
	border-radius: 50%;
	color: var(--color-primary);
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.coming-soon-social a:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-secondary);
	transform: translateY(-3px);
	box-shadow: 
		0 8px 20px rgba(63, 203, 158, 0.4),
		0 0 30px rgba(63, 203, 158, 0.3);
}

/* Hide admin bar in coming soon */
.coming-soon-page #wpadminbar {
	display: none !important;
}

/* ===============================================
   SCROLL TO TOP BUTTON
   =============================================== */

.scroll-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	font-size: 1.5rem;
	font-weight: 700;
}

.scroll-to-top.show {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(63, 203, 158, 0.4);
}

/* ===============================================
   BUTTON RIPPLE EFFECT
   =============================================== */

.btn-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	pointer-events: none;
	transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* ===============================================
   ANIMATIONS
   =============================================== */

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInFallback {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Fallback animation for elements if JS doesn't load */
.service-card,
.why-item,
.process-step {
	animation: fadeInFallback 0.8s ease forwards;
	animation-delay: 0.5s;
}

/* ===============================================
   RESPONSIVE
   =============================================== */

@media (max-width: 1024px) {
	.about-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.about-left {
		position: static;
		text-align: center;
	}
	
	.about-intro {
		max-width: 100%;
	}
	
	.about-badge-circle {
		margin: 3rem auto;
	}
	
	.about-card {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	.about-card-number {
		font-size: 3rem;
		min-width: auto;
	}
	
	.process-timeline::before {
		left: 15px;
	}
	
	.process-step {
		padding-left: 70px;
	}
	
	.process-step-marker {
		width: 50px;
		height: 50px;
	}
	
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.site-header {
		padding: 0.6rem 0;
	}
	
	.site-header.scrolled {
		padding: 0.55rem 0;
	}
	
	.header-inner {
		flex-direction: column;
		gap: 1rem;
	}
	
	.main-navigation ul {
		gap: 1rem;
		font-size: 14px;
	}
	
	.container {
		padding: 0 15px;
	}
	
	.homepage-hero {
		min-height: auto;
		padding: 6rem 0 4rem;
	}
	
	.homepage-hero::after {
		width: 300px;
		height: 300px;
		right: -20%;
	}
	
	.hero-title {
		margin-bottom: 1.5rem;
	}
	
	.hero-description {
		font-size: 1.1rem;
		margin-bottom: 2rem;
	}
	
	/* Hide some floating shapes on tablet */
	.shape-3,
	.shape-4 {
		display: none;
	}
	
	.shape-1,
	.shape-2 {
		opacity: 0.1;
	}
	
	.hero-buttons {
		gap: 1rem;
	}
	
	.about-badge-circle {
		width: 150px;
		height: 150px;
	}
	
	.badge-center {
		width: 70px;
		height: 70px;
	}
	
	.badge-center svg {
		width: 50px;
		height: 50px;
	}
	
	.circle-text text {
		font-size: 12px;
	}
	
	.about-card {
		padding: 2rem;
	}
	
	.about-card-number {
		font-size: 2.5rem;
	}
	
	.about-card-title {
		font-size: 1.2rem;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.why-choose-grid,
	.faq-accordion {
		gap: 0.75rem;
	}
	
	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1.05rem;
	}
	
	.faq-answer {
		padding: 0 1.5rem;
	}
	
	.faq-item.active .faq-answer {
		padding: 0 1.5rem 1.25rem;
	}
	
	.check-list {
		grid-template-columns: 1fr;
	}
	
	.section-title {
		font-size: 2.2rem;
	}
	
	.section-label {
		padding: 0.3rem 1rem;
		font-size: 12px;
	}
	
	.process-timeline::before {
		display: none;
	}
	
	.process-step {
		padding-left: 0;
		margin-bottom: 2rem;
	}
	
	.process-step-marker {
		position: static;
		margin-bottom: 1rem;
	}
	
	.contact-info-inline {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	/* Footer Responsive */
	.footer-main {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding-bottom: 40px;
	}
	
	.footer-bottom {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.footer-branding,
	.footer-social {
		justify-content: center;
	}
	
	.footer-social {
		order: 3;
	}
}

@media (max-width: 480px) {
	/* Hide all floating shapes on mobile */
	.floating-shapes {
		display: none;
	}
	
	.hero-buttons,
	.form-row {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	
	.contact-form .btn {
		width: 100%;
		align-self: stretch;
	}
	
	.btn {
		width: 100%;
		text-align: center;
	}
	
	.services-marquee-content {
		gap: 2rem;
	}
	
	.service-tag {
		font-size: 13px;
	}
	
	.homepage-about,
	.homepage-services,
	.homepage-why-choose,
	.homepage-process,
	.homepage-faq,
	.homepage-website-check,
	.homepage-contact {
		padding: 60px 0;
	}
	
	.contact-form-wrapper {
		margin-bottom: 3rem;
	}
	
	.contact-info-section {
		padding-top: 2rem;
	}
	
	.contact-info-inline {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.site-footer {
		padding: 40px 0 0;
	}
	
	.footer-main {
		gap: 2.5rem;
		padding-bottom: 30px;
	}
	
	.footer-title {
		font-size: 1.5rem;
	}
	
	.footer-newsletter-form button {
		width: 100%;
	}
}
