/* 
 * AppsYSoftware - Hoja de estilos principal
 * Tema: Cyberpunk / Futurista
 * Versión: 1.0
 */

/* ===== VARIABLES GLOBALES ===== */
:root {
    /* Colores principales de neón */
    --neon-primary: #0fe0ff;
    --neon-secondary: #ff13cb;
    --neon-tertiary: #6cf92d;
    
    /* Fondos y superficies */
    --dark-bg: #060f19;
    --darker-bg: #030a10;
    --dark-surface: #0a1824;
    
    /* Textos */
    --text-primary: #ffffff;
    --text-secondary: #b3c5d5;
    
    /* Acentos adicionales */
    --accent-purple: #b429ff;
    --accent-blue: #2f72ff;
    --accent-red: #ff3660;
    
    /* Variables para animaciones */
    --transition-speed: 0.3s;
    --glow-intensity: 0.3;
}

/* ===== RESET Y ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Chakra Petch', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

p, li, span {
    font-family: 'Chakra Petch', sans-serif;
}

a {
    text-decoration: none;
    color: var(--neon-primary);
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--neon-secondary);
}

/* ===== EFECTOS DE FONDO CYBERPUNK ===== */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--darker-bg);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--dark-bg) 1px, transparent 1px),
                      linear-gradient(90deg, var(--dark-bg) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    opacity: 0.1;
}

.glow-line {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-primary), transparent);
    animation: scanLine 8s linear infinite;
    opacity: 0.5;
}

.glow-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 224, 255, 0.1) 0%, rgba(15, 224, 255, 0) 70%);
    filter: blur(20px);
    opacity: 0.3;
    animation: pulseGlow 10s ease-in-out infinite;
}

/* ===== NAVBAR FUTURISTA ===== */
.navbar {
    background-color: rgba(3, 10, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 224, 255, 0.2);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary);
    position: relative;
}

.navbar-brand span {
    color: var(--neon-secondary);
    text-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
}

.navbar-brand:hover::after {
    transform: scaleX(1);
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    margin: 0 10px;
    padding: 5px 0;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: -100%;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-secondary));
    transition: left var(--transition-speed) ease;
}

.nav-link:hover {
    color: var(--neon-primary);
}

.nav-link:hover::before {
    left: 0;
}

.nav-link.active {
    color: var(--neon-primary)!important;
}

.nav-link.active::before {
    left: 0;
}

/* ===== BOTONES NEÓN ===== */
.btn-neon {
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 25px;
    border: 1px solid var(--neon-primary);
    background-color: transparent;
    color: var(--neon-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 0 10px rgba(15, 224, 255, 0.3);
    border-radius: 0;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(15, 224, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-neon:hover {
    color: white;
    box-shadow: 0 0 20px rgba(15, 224, 255, 0.6);
    border-color: var(--neon-primary);
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon-secondary {
    border-color: var(--neon-secondary);
    color: var(--neon-secondary);
    box-shadow: 0 0 10px rgba(255, 19, 203, 0.3);
}

.btn-neon-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 19, 203, 0.2), transparent);
}

.btn-neon-secondary:hover {
    color: white;
    box-shadow: 0 0 20px rgba(255, 19, 203, 0.6);
    border-color: var(--neon-secondary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--neon-primary), var(--neon-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    position: relative;
}

.hero-subtitle .highlight {
    color: var(--neon-tertiary);
    font-weight: 700;
}

.hero-image {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background-color: rgba(15, 224, 255, 0.05);
    border: 1px solid rgba(15, 224, 255, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                              rgba(15, 224, 255, 0.1) 0%, 
                              rgba(255, 19, 203, 0.1) 50%, 
                              rgba(108, 249, 45, 0.1) 100%);
}

.hero-image-text {
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ===== PÁGINA HEADER ===== */
.page-header {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
                               rgba(3, 10, 16, 0.9) 0%, 
                               rgba(10, 24, 36, 0.8) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 224, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 224, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 0;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--neon-primary), var(--neon-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* ===== SECCIÓN DE SERVICIOS ===== */
.services-section, 
.service-detail-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--neon-primary), var(--neon-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-secondary));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards de servicio */
.service-card {
    background-color: rgba(10, 24, 36, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 224, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-primary), var(--neon-secondary));
    transition: width var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(15, 224, 255, 0.2);
    border-color: var(--neon-primary);
}

.service-card:hover::before {
    width: 5px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    background: rgba(15, 224, 255, 0.1);
    border: 1px solid rgba(15, 224, 255, 0.3);
    font-size: 2rem;
    color: var(--neon-primary);
}

.service-icon.secondary {
    background: rgba(255, 19, 203, 0.1);
    border-color: rgba(255, 19, 203, 0.3);
    color: var(--neon-secondary);
}

.service-icon.tertiary {
    background: rgba(108, 249, 45, 0.1);
    border-color: rgba(108, 249, 45, 0.3);
    color: var(--neon-tertiary);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Detalle de Servicios */
.service-detail-card {
    background-color: rgba(10, 24, 36, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 224, 255, 0.2);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-secondary));
    opacity: 0.7;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(15, 224, 255, 0.2);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(15, 224, 255, 0.1);
    border: 1px solid rgba(15, 224, 255, 0.3);
    font-size: 2.5rem;
    color: var(--neon-primary);
}

.service-detail-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-detail-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--neon-primary);
}

.service-detail-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Listas de features */
.service-features, 
.zone-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--neon-primary);
    font-weight: bold;
}

.zone-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.zone-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--neon-primary);
    font-weight: bold;
}

/* ===== SECCIÓN DE TECNOLOGÍAS ===== */
.tech-section {
    padding: 100px 0;
    position: relative;
    background-color: rgba(3, 10, 16, 0.8);
}

.tech-container {
    position: relative;
    z-index: 2;
}

.tech-category {
    margin-bottom: 60px;
}

.tech-category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--neon-primary);
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.tech-category-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-primary), transparent);
    bottom: 0;
    left: 0;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-item {
    width: 150px;
    height: 150px;
    background-color: rgba(10, 24, 36, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 224, 255, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                              rgba(15, 224, 255, 0.05) 0%, 
                              rgba(255, 19, 203, 0.05) 100%);
    z-index: -1;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--neon-primary);
    box-shadow: 0 5px 20px rgba(15, 224, 255, 0.3);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, var(--neon-primary), var(--neon-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-name {
    font-size: 1rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 600;
}

/* ===== SECCIÓN DE ZONAS ===== */
.zones-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.zones-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(120%);
}

.zone-card {
    background-color: rgba(10, 24, 36, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 224, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    height: 100%;
    position: relative;
}

.zone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(15, 224, 255, 0.3);
    border-color: var(--neon-primary);
}

.zone-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.zone-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(10, 24, 36, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zone-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                              rgba(15, 224, 255, 0.1) 0%, 
                              rgba(255, 19, 203, 0.1) 100%);
}

.zone-content {
    padding: 30px;
}

.zone-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-primary);
}

.zone-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===== SECCIÓN DE PROCESO ===== */
.process-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, 
                               rgba(3, 10, 16, 0.95) 0%, 
                               rgba(10, 24, 36, 0.9) 100%);
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 224, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 224, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.process-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.process-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--neon-primary), var(--neon-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.process-title p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15, 224, 255, 0.1);
    border: 1px solid rgba(15, 224, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-primary);
    margin: 0 auto 20px;
}

.process-step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.process-step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-secondary));
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 0;
}

/* ===== SECCIÓN CTA ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, 
                              rgba(15, 224, 255, 0.05) 0%, 
                              rgba(255, 19, 203, 0.05) 100%);
    border-top: 1px solid rgba(15, 224, 255, 0.1);
    border-bottom: 1px solid rgba(15, 224, 255, 0.1);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--neon-primary), var(--neon-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== EFECTOS Y ANIMACIONES ===== */
@keyframes scanLine {
    0% {
        top: -10%;
    }
    100% {
        top: 110%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 224, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(15, 224, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 224, 255, 0);
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(34px, 9999px, 10px, 0);
    }
    25% {
        clip: rect(101px, 9999px, 26px, 0);
    }
    50% {
        clip: rect(23px, 9999px, 75px, 0);
    }
    75% {
        clip: rect(92px, 9999px, 31px, 0);
    }
    100% {
        clip: rect(74px, 9999px, 39px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(73px, 9999px, 67px, 0);
    }
    25% {
        clip: rect(22px, 9999px, 98px, 0);
    }
    50% {
        clip: rect(80px, 9999px, 26px, 0);
    }
    75% {
        clip: rect(16px, 9999px, 55px, 0);
    }
    100% {
        clip: rect(29px, 9999px, 94px, 0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Efecto Glitch */
.glitch-effect {
    position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
}

.glitch-effect::before {
    left: 2px;
    text-shadow: -1px 0 var(--neon-secondary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-effect::after {
    left: -2px;
    text-shadow: -1px 0 var(--neon-primary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

/* Efecto de cursor tecno */
.cursor-effect {
    position: relative;
}

.cursor-effect::after {
    content: '|';
    display: inline-block;
    animation: blink 1s infinite;
}

/* Efecto de perspectiva 3D para cards */
.perspective-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.perspective-card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Efecto de botón de energía pulsante */
.pulse-btn {
    position: relative;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 var(--neon-primary);
    animation: pulse 2s infinite;
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
}

/* ===== MORE SERVICES SECTION ===== */
.more-services-section {
    padding: 50px 0 100px;
    position: relative;
}

.more-services-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--text-primary);
}

.more-service-card {
    background-color: rgba(10, 24, 36, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(15, 224, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.more-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-secondary));
    transition: width 0.3s ease;
}

.more-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(15, 224, 255, 0.15);
    border-color: rgba(15, 224, 255, 0.3);
}

.more-service-card:hover::after {
    width: 100%;
}

.more-service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--neon-primary);
}

.more-service-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-align: left;
}

.more-service-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ===== WHATSAPP FLOAT SVG ===== */
.whatsapp-float svg {
    width: 36px;
    height: 36px;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--darker-bg);
    color: var(--text-secondary);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(15, 224, 255, 0.1);
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 224, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 224, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary);
}

.footer-logo span {
    color: var(--neon-secondary);
    text-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary);
}

.footer-column h4 {
    color: var(--neon-primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-primary), transparent);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--neon-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    color: var(--neon-primary);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 24, 36, 0.5);
    border: 1px solid rgba(15, 224, 255, 0.2);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--neon-primary);
    color: var(--dark-bg);
    border-color: var(--neon-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(15, 224, 255, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(15, 224, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}