/* Variables de colores */
:root {
    --primary-color: #00c3ff;  /* Azul más suave */
    --secondary-color: #00e6a8;  /* Verde más suave */
    --dark-color: #050813;  /* Fondo oscuro uniforme */
    --light-color: #f0f8ff;  /* Blanco más suave */
    --accent-color: #6a4c93;  /* Púrpura más suave */
    --text-color: #e0e0e0;
    --text-muted: #b0b0b0;  /* Texto más legible */
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --glass-bg: rgba(5, 8, 19, 0.9);  /* Fondo más oscuro */
    --glass-border: rgba(0, 195, 255, 0.15);  /* Borde más sutil */
    --shadow: 0 4px 20px rgba(0, 195, 255, 0.1);  /* Sombra más sutil */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #0a0f1a;
    overflow-x: hidden;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0, 195, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 195, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at center, #0a0f1a 0%, #050813 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

/* Contenedor de partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #00a8e8, #00c3a0);  /* Gradiente más suave */
    color: #0a0f1a;  /* Color de texto más oscuro para mejor contraste */
    padding: 0.8rem 2.2rem;  /* Un poco más de padding horizontal */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;  /* Texto más grueso */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.3);  /* Sombra más suave */
}

.btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);  /* Menos movimiento en hover */
    box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
    color: #0a0f1a;  /* Color de texto consistente */
    background: linear-gradient(135deg, #00b4e6, #00d4aa);  /* Gradiente ligeramente más claro */
}

.btn:active {
    transform: translateY(-1px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin: 0 0 1.5rem 0;  /* Más espacio debajo de los títulos */
    line-height: 1.3;  /* Mejor legibilidad */
    text-transform: uppercase;
    letter-spacing: 1.5px;  /* Menos espaciado para mejor legibilidad */
    color: var(--light-color);  /* Color más consistente */
}

p {
    margin: 0 0 1.5rem 0;
    color: var(--text-color);  /* Texto más visible */
    font-size: 1.1rem;
    line-height: 1.8;  /* Mejor espaciado de línea */
    font-weight: 400;  /* Texto ligeramente más grueso */
    opacity: 0.9;  /* Ligera transparencia para mejor contraste */
}

/* ==================== */
/* ESTILOS FUTURISTAS */
/* ==================== */

/* Efecto de partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* Fondo con gradiente animado */
body {
    background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1a1a2e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

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

/* Fuentes personalizadas */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ==================== */
/* HEADER FUTURISTA */
/* ==================== */
header {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    transition: all 0.5s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==================== */
/* LOGO FUTURISTA */
/* ==================== */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.logo-icon {
    color: #00c3ff;
    font-size: 2.2rem;
    margin-right: 12px;
    text-shadow: 0 0 15px rgba(0, 195, 255, 0.7);
    animation: pulse 2s infinite alternate;
    position: relative;
    z-index: 2;
}

.futuristic-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.5rem; /* Aumentado de 2rem a 2.5rem */
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.futuristic-logo .cyber {
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.7);
    position: relative;
    z-index: 2;
    margin-right: 5px;
    animation: neonBlue 1.5s ease-in-out infinite alternate;
}

.futuristic-logo .tech {
    color: #00e6a8;
    text-shadow: 0 0 10px rgba(0, 230, 168, 0.7);
    position: relative;
    z-index: 2;
    animation: neonGreen 1.5s ease-in-out infinite alternate;
    animation-delay: 0.3s;
}

.futuristic-logo .glow {
    position: absolute;
    top: -10px;
    left: -15px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(0, 195, 255, 0.2), rgba(0, 230, 168, 0.2));
    filter: blur(15px);
    z-index: 1;
    border-radius: 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo:hover .glow {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes neonBlue {
    from {
        text-shadow: 0 0 5px rgba(0, 195, 255, 0.7),
                     0 0 10px rgba(0, 195, 255, 0.5),
                     0 0 20px rgba(0, 195, 255, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(0, 195, 255, 0.9),
                     0 0 20px rgba(0, 195, 255, 0.6),
                     0 0 30px rgba(0, 255, 255, 0.4);
    }
}

@keyframes neonGreen {
    from {
        text-shadow: 0 0 5px rgba(0, 230, 168, 0.7),
                     0 0 10px rgba(0, 230, 168, 0.5),
                     0 0 20px rgba(0, 230, 168, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(0, 230, 168, 0.9),
                     0 0 20px rgba(0, 230, 168, 0.6),
                     0 0 30px rgba(0, 255, 200, 0.4);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 5px rgba(0, 195, 255, 0.7),
                     0 0 10px rgba(0, 195, 255, 0.5),
                     0 0 20px rgba(0, 195, 255, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(0, 195, 255, 0.9),
                     0 0 20px rgba(0, 195, 255, 0.6),
                     0 0 30px rgba(0, 255, 200, 0.4);
    }
}

.logo span {
    color: #00ffaa;
    text-shadow: 0 0 10px #00ffaa;
}

/* ==================== */
/* MENÚ NEON FUTURISTA */
/* ==================== */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px #00f3ff,
                     0 0 10px #00f3ff,
                     0 0 20px #00f3ff,
                     0 0 40px #00f3ff;
        box-shadow: 0 0 5px rgba(0, 243, 255, 0.2),
                    0 0 10px rgba(0, 243, 255, 0.4),
                    0 0 15px rgba(0, 255, 170, 0.3);
    }
    50% {
        text-shadow: 0 0 10px #00f3ff,
                     0 0 20px #00f3ff,
                     0 0 30px #00f3ff,
                     0 0 50px #00f3ff;
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.4),
                    0 0 20px rgba(0, 243, 255, 0.6),
                    0 0 30px rgba(0, 255, 170, 0.5);
    }
}

/* Estilos del menú de navegación - Diseño sofisticado */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    position: relative;
    margin: 0.3rem 0;
}

nav ul li a {
    color: #b0e0ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
}

/* Línea decorativa inferior */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00c3ff, #00e6a8);
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Efecto de fondo sutil */
nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.05), rgba(0, 230, 168, 0.03));
    backdrop-filter: blur(5px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Efecto hover */
nav ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.7);
    transform: translateY(-2px);
}

nav ul li a:hover::after {
    width: 80%;
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
}

nav ul li a:hover::before {
    opacity: 1;
}

/* Estado activo */
nav ul li a.active {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 195, 255, 0.9);
    transform: translateY(-1px);
}

nav ul li a.active::after {
    width: 100%;
    background: linear-gradient(90deg, #00c3ff, #00e6a8);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.7);
    height: 2px;
}

/* Efecto de partículas sutiles */
nav ul li a .nav-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    z-index: -1;
}

nav ul li a:hover .nav-glow {
    width: 150%;
    height: 300%;
    opacity: 0.5;
}

/* Efecto de borde sutil */
nav ul li a span:first-child,
nav ul li a span:last-child {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    transition: all 0.4s ease;
}

nav ul li a span:first-child {
    top: 0;
    left: 0;
    border-left: 1px solid #00c3ff;
    border-top: 1px solid #00c3ff;
    transform: translate(-5px, -5px);
}

nav ul li a span:last-child {
    bottom: 0;
    right: 0;
    border-right: 1px solid #00e6a8;
    border-bottom: 1px solid #00e6a8;
    transform: translate(5px, 5px);
}

nav ul li a:hover span:first-child,
nav ul li a:hover span:last-child {
    opacity: 1;
    transform: translate(0, 0);
}

/* Efecto de texto en hover */
nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;
    text-shadow: 0 0 10px #00f3ff,
                 0 0 20px #00f3ff,
                 0 0 30px #00f3ff;
    background: rgba(0, 30, 60, 0.9);
    border: 1px solid #00f3ff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5),
                0 0 40px rgba(0, 255, 170, 0.3);
}

/* Efecto de partículas al hacer hover */
nav ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.5s;
    z-index: -1;
}

nav ul li a:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Efecto de borde resplandeciente */
nav ul li a span {
    position: absolute;
    display: block;
}

nav ul li a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f3ff);
    transition: 0.5s;
}

nav ul li a:hover span:nth-child(1) {
    left: 100%;
    transition: 1s;
}

nav ul li a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #00ffaa);
    transition: 0.5s;
    transition-delay: 0.2s;
}

nav ul li a:hover span:nth-child(3) {
    right: 100%;
    transition: 1s;
    transition-delay: 0.2s;
}

/* Efecto para el ítem activo */
nav ul li a.active {
    animation: neonPulse 2s infinite alternate;
    background: rgba(0, 30, 60, 0.9);
    border: 1px solid #00ffaa;
    color: #ffffff;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 992px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    nav ul li a {
        display: block;
        text-align: center;
        padding: 1rem;
    }
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.menu-toggle:hover {
    color: #00ffaa;
    background: rgba(0, 255, 170, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transform: translateY(-2px);
}

/* Menú móvil mejorado */
@media (max-width: 992px) {
    header {
        background: #001a33; /* Fondo azul marino */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    header .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: transparent;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
        height: 70px; /* Altura fija para el header */
    }
    
    .logo {
        display: flex;
        align-items: center;
        z-index: 1001;
        height: 100%;
    }
    
    .logo .futuristic-logo {
        font-size: 1.5rem;
        margin: 0;
        color: #00f3ff;
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }
    
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        cursor: pointer;
        background: rgba(0, 51, 102, 0.8);
        border: 1px solid #00f3ff;
        border-radius: 4px;
        z-index: 1001;
        margin: 0;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover {
        background: rgba(0, 123, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .menu-toggle i {
        font-size: 1.5rem;
        color: #00f3ff;
        text-shadow: 0 0 5px rgba(0, 243, 255, 0.7);
    }
    
    nav {
        display: none;
        width: 100%;
        max-width: 280px; /* Ancho ligeramente reducido */
        background: #00264d !important;
        border: 1px solid #00f3ff !important;
        border-top: none !important;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 1000;
        margin: 0;
        padding: 10px 0; /* Ajustado para dar espacio al borde */
        overflow: hidden;
    }
    
    nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
        background: #00264d !important;
        padding-bottom: 1cm; /* Espacio de 1cm después del último elemento */
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        transition: all 0.3s ease;
        background: #00264d !important;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: flex;
        align-items: center;
        padding: 10px 15px; /* Ajustado el padding vertical */
        color: #00f3ff !important;
        font-size: 0.9rem; /* Tamaño de fuente ligeramente más pequeño */
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
        background: transparent !important;
        line-height: 1.2; /* Ajuste del interlineado */
        min-height: 42px; /* Altura mínima consistente */
    }
    
    nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: #00f3ff;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(0, 150, 255, 0.15) !important;
        color: #fff !important;
        padding-left: 20px; /* Ajuste del padding al hacer hover */
    }
    
    nav ul li a:hover::before,
    nav ul li a.active::before {
        transform: scaleY(1);
    }
    
    nav ul li a i {
        margin-right: 10px;
        font-size: 1.1em;
    }
}

/* ==================== */
/* HERO FUTURISTA */
/* ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 120px 2rem 60px; /* Aumentado el padding superior e inferior */
    overflow-y: auto; /* Permite hacer scroll si el contenido es muy largo */
    margin-top: 0;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 195, 255, 0.08) 0%, rgba(5, 8, 19, 0.2) 70%);
    z-index: -1;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero h2 {
    font-size: 2.8rem;  /* Tamaño ajustado para mejor legibilidad */
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.7);
    animation: neonGlow 2s ease-in-out infinite alternate;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    padding: 0 1rem;
}

.hero .btn:hover {
    transform: translateY(-2px);  /* Menos movimiento en hover */
    box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
    color: #0a0f1a;  /* Color de texto consistente */
    background: linear-gradient(135deg, #00b4e6, #00d4aa);  /* Gradiente ligeramente más claro */
}

.hero .btn:active {
    transform: translateY(-1px);
}

/* Efecto de partículas en el hero */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Efecto de grid en el fondo */
.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 243, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

/* Efecto de brillo en los textos */
.hero h2 span {
    position: relative;
    display: inline-block;
}

.hero h2 span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

/* Efecto de partículas flotantes */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(0, 243, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

/* ==================== */
/* SECCIONES FUTURISTAS */
/* ==================== */

/* Contenedor principal */
.container {
    position: relative;
    z-index: 2;
}

/* Títulos de sección */
.section-title {
    text-align: center;
    margin: 0 auto 2.5rem; /* Reducido de 5rem a 2.5rem */
    position: relative;
    padding: 0 1.5rem 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Ajuste específico para la sección de servicios */
.services .section-title {
    margin-bottom: 1.5rem; /* Menor margen para servicios */
}

.section-title h2 {
    font-size: 2rem; /* Tamaño de fuente reducido */
    font-weight: 800;
    margin: 0 0 0.8rem; /* Margen inferior reducido */
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    position: relative;
    display: inline-block;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
    line-height: 1.3; /* Interlineado aumentado para mejor legibilidad */
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    width: 100%;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .section-title h2 span {
        display: block;
        width: 100%;
    }
}

.section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem; /* Tamaño de fuente reducido */
    max-width: 700px;
    margin: 0 auto 0.5rem; /* Margen inferior reducido */
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.4; /* Interlineado reducido */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

/* ==================== */
/* CARACTERÍSTICAS */
/* ==================== */
.features {
    padding: 6rem 0;
    background: transparent !important;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 65%, rgba(0, 243, 255, 0.03) 65.1%, transparent 65.2%),
        linear-gradient(-45deg, transparent 65%, rgba(0, 255, 170, 0.03) 65.1%, transparent 65.2%);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    background: transparent !important;
}

/* Estilos para las tarjetas de características */
.feature {
    background: rgba(10, 15, 30, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.15) !important;
    border-radius: 10px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    color: #ffffff !important;
}

.feature i {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #00c3ff;
    transition: all 0.4s ease;
    display: inline-block;
    background: linear-gradient(135deg, #00c3ff, #00e6a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.3));
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00c3ff, #00e6a8);
    transition: all 0.3s ease;
}

.feature p {
    color: #e0e0e0 !important;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Efecto de borde resplandeciente para las tarjetas de características */
.feature::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f3ff, #00ffaa, #00f3ff);
    background-size: 200% 200%;
    z-index: -2;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientBG 3s ease infinite;
}

.feature:hover::after {
    opacity: 0.7;
    animation: gradientBG 3s ease infinite, glow 2s ease-in-out infinite alternate;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.3);
    border-color: rgba(0, 243, 255, 0.3);
}

.service-card {
    background: rgba(10, 15, 30, 0.4) !important; /* Fondo más transparente */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.15) !important;
    border-radius: 10px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    color: #ffffff !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(0, 255, 170, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.3);
    border-color: rgba(0, 243, 255, 0.3);
}

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

.service-card i {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #00c3ff;
    transition: all 0.4s ease;
    display: inline-block;
    background: linear-gradient(135deg, #00c3ff, #00e6a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.3));
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff !important; /* Texto blanco */
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00c3ff, #00e6a8);
    transition: all 0.3s ease;
}

.service-card p {
    color: #e0e0e0 !important; /* Texto más claro */
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Efecto de borde resplandeciente */
.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f3ff, #00ffaa, #00f3ff);
    background-size: 200% 200%;
    z-index: -2;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientBG 3s ease infinite;
}

.service-card:hover::after {
    opacity: 0.7;
    animation: gradientBG 3s ease infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(0, 243, 255, 0.3), 0 0 20px rgba(0, 255, 170, 0.3); }
    to { box-shadow: 0 0 20px rgba(0, 243, 255, 0.6), 0 0 40px rgba(0, 255, 170, 0.6); }
}

/* ==================== */
/* SECCIÓN DE SERVICIOS */
/* ==================== */
.services {
    padding: 3rem 0 4rem; /* Reducido el padding vertical */
    background: transparent !important;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Botón de desplazamiento en servicios */
.scroll-down-btn {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 0;
    cursor: pointer;
    color: #00f3ff !important;
    text-transform: uppercase;
    font-size: 1rem !important; /* Tamaño aumentado */
    font-weight: 700; /* Texto más grueso */
    letter-spacing: 1.5px;
    opacity: 1; /* Opacidad completa */
    transition: all 0.3s ease;
    text-decoration: none !important;
    background: rgba(0, 195, 255, 0.1) !important; /* Fondo sutil */
    border: 1px solid rgba(0, 195, 255, 0.3) !important; /* Borde sutil */
    outline: none;
    padding: 0.8rem 1.5rem; /* Más espacio interno */
    border-radius: 30px; /* Bordes más redondeados */
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3); /* Sombra para resaltar */
    width: auto;
    max-width: 200px;
}

.scroll-down-btn:hover {
    opacity: 1;
    transform: translateY(3px);
    color: #00ffaa !important;
}

.scroll-down-btn i {
    display: block !important;
    margin-top: 0.5rem;
    font-size: 1.4rem !important;
    animation: bounce 2s infinite;
    color: inherit !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 65%, rgba(0, 243, 255, 0.03) 65.1%, transparent 65.2%),
        linear-gradient(-45deg, transparent 65%, rgba(0, 255, 170, 0.03) 65.1%, transparent 65.2%);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem; /* Reducido el espacio entre tarjetas */
    margin-top: 1.5rem; /* Reducido el margen superior */
    position: relative;
    z-index: 2;
    background: transparent !important;
}

.service-card {
    background: rgba(15, 20, 35, 0.95) !important;
    border: 1px solid rgba(0, 195, 255, 0.2) !important;
    border-radius: 10px;
    padding: 1.5rem 1.2rem; /* Reducido el padding */
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important; /* Sombra más sutil */
    color: #f0f0f0 !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(0, 255, 170, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 195, 255, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(0, 195, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
}

.service-icon i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #00c3ff, #00e6a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.3));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00c3ff, #00e6a8);
    transition: all 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #e0e0e0 !important;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.service-card .btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: #00c3ff;
    text-decoration: none;
    border: 2px solid #00c3ff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 140px;
    font-family: 'Orbitron', sans-serif;
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #00c3ff, #00e6a8);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card .btn:hover {
    color: #000;
    border-color: transparent;
}

.service-card .btn:hover::before {
    width: 100%;
}

/* Efecto de borde resplandeciente para tarjetas de servicio */
.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00c3ff, #00e6a8, #00c3ff);
    background-size: 200% 200%;
    z-index: -2;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientBG 3s ease infinite;
}

.service-card:hover::after {
    opacity: 0.7;
    animation: gradientBG 3s ease infinite, glow 2s ease-in-out infinite alternate;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #00f3ff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00f3ff;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    background: linear-gradient(45deg, #00f3ff, #00ffaa);
    color: #000;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.newsletter-form button i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #00f3ff;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.footer-social a:hover {
    background: linear-gradient(45deg, #00f3ff, #00ffaa);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
    border-color: transparent;
}

/* Efecto de partículas en el footer */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

/* Animación de gradiente para fondos */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efecto de brillo en elementos */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f3ff, #00ffaa, #00f3ff);
    background-size: 200% 200%;
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientBG 3s ease infinite;
}

.glow-effect:hover::after {
    opacity: 0.7;
}
.features {
    padding: 100px 0;
    background: white;
}

.features h2 {
    margin-bottom: 3.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #192a56 0%, #00a8ff 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Page */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.service {
    display: flex;
    margin-bottom: 60px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    flex: 1;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.service-icon i {
    font-size: 5rem;
    color: white;
}

.service-content {
    flex: 2;
    padding: 40px;
}

.service h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.service ul {
    margin-bottom: 1.5rem;
}

.service ul li {
    margin-bottom: 0.5rem;
    padding-left: 25px;
    position: relative;
}

.service ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Equipment Page */
.equipment {
    padding: 80px 0;
    background: #f8f9fa;
}

.equipment-category {
    margin-bottom: 60px;
}

.equipment-category h2 {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.equipment-category h2:after {
    display: none;
}

.equipment-category h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 30px 20px;
}

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

.equipment-img {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.equipment-img i {
    font-size: 3rem;
    color: var(--primary-color);
}

.equipment-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.equipment-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.brands {
    padding: 60px 0;
    background: white;
}

.brands h2 {
    margin-bottom: 3rem;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
    min-width: 150px;
}

.brand:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.brand i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.brand span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Contact Page */
.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 80px 0;
}

.contact-info h2,
.contact-form h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-info h2:after,
.contact-form h2:after {
    left: 0;
    transform: none;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
    color: var(--text-muted);
}

.social-media {
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2);
}

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

.map {
    height: 450px;
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #192a56 0%, #00a8ff 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: #b2bec3;
    margin-bottom: 1rem;
}

.footer-section i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background: #1e272e;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #b2bec3;
    font-size: 0.9rem;
}

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

/* Hero Section */
.hero-buttons {
    margin: 0.5rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Contenedor del Video Promocional */
.promo-video-container {
    margin: 1.5rem auto 3rem auto;
    max-width: 800px;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    box-sizing: border-box;
}

.promo-video-container video {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid rgba(0, 195, 255, 0.3);
    border-radius: 10px;
}

.promo-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 195, 255, 0.4);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .promo-video-container {
        max-width: 90%;
    }
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #00f3ff;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.scroll-down:hover {
    opacity: 1;
    transform: translateY(3px);
}

.scroll-down i {
    margin-top: 5px;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service {
        flex-direction: column;
    }
    
    .service:nth-child(even) {
        flex-direction: column;
    }
    
    .service-icon {
        padding: 30px;
    }
    
    .service-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        transition: var(--transition);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .menu-toggle {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .features-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature, .service-card {
        padding: 20px;
    }
    
    .contact-info, .contact-form-container {
        padding: 20px 15px;
    }
    
    .info-card {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
    }
    
    .input-group input, 
    .textarea-group textarea,
    .select-wrapper select {
        padding: 14px 15px 6px 45px;
        font-size: 0.9rem;
    }
    
    .input-group i,
    .textarea-group i {
        left: 15px;
        font-size: 1rem;
    }
    
    .futuristic-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .subtitle {
        font-size: 1rem !important;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .features, .services, .contact-section {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 20px;
        justify-content: center;
    }
}

/* =================================
   EQUIPMENT PAGE - FUTURISTIC DESIGN
   ================================= */

/* Page Header */
.page-header {
    position: relative;
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, #0a0e1f 0%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
    margin-top: 80px; /* Para el header fijo */
}

main {
    padding-top: 80px; /* Ajuste para el header fijo */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Asegurar que el contenido no se oculte debajo del header */
.hero, section {
    position: relative;
    z-index: 1;
}

/* Ajustar el padding en móviles */
@media (max-width: 992px) {
    main {
        padding-top: 70px; /* Reducir espacio para el header en móvil */
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.futuristic-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #b0e0ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
}

.futuristic-title .highlight {
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.futuristic-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.subtitle {
    color: #b0e0ff;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.2);
}

.header-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Equipment Section */
.equipment {
    padding: 6rem 0;
    background: #0a0e17;
    position: relative;
    overflow: hidden;
}

.equipment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
}

/* Category Styles */
.equipment-category {
    margin-bottom: 6rem;
    position: relative;
    padding: 0 1rem;
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.1);
    transition: all 0.4s ease;
}

.category-icon:hover {
    transform: rotate(10deg) scale(1.1);
    background: rgba(0, 195, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.2);
}

.category-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 243, 255, 0.2);
    animation: pulse 4s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.7; }
}

.category-icon i {
    font-size: 2.2rem;
    color: #00f3ff;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.equipment-category h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
}

.category-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    margin: 1.5rem 0;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Equipment Item */
.equipment-item {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 195, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.equipment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.05), rgba(0, 230, 168, 0.03));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.3);
}

.equipment-item:hover::before {
    opacity: 1;
}

.equipment-img {
    width: 90px;
    height: 90px;
    margin: 0 0 2rem;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00f3ff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 195, 255, 0.2);
}

.equipment-item:hover .equipment-img {
    transform: rotate(5deg) scale(1.05);
    background: rgba(0, 195, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.2);
}

.equipment-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.2), transparent 70%);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.equipment-item:hover .equipment-glow {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.equipment-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0 0 1.2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.equipment-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.equipment-item:hover .equipment-content h3::after {
    width: 80px;
}

.equipment-content p {
    color: #b0c4de;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(0, 195, 255, 0.1);
}

.equipment-features span {
    color: #a0b8d0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 5px;
}

.equipment-features i {
    color: #00ffaa;
    margin-right: 0.8rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.equipment-item:hover .equipment-features span {
    color: #ffffff;
    transform: translateX(8px);
}

.equipment-item:hover .equipment-features i {
    color: #00f3ff;
    transform: scale(1.2);
}

/* Brands Section */
.brands {
    padding: 5rem 0;
    background: rgba(10, 14, 23, 0.8);
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
}

.brands h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.brands h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    border-radius: 3px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.brand {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 195, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 195, 255, 0.1);
    border-color: rgba(0, 243, 255, 0.3);
}

.brand:hover::before {
    opacity: 1;
}

.brand i {
    font-size: 2.5rem;
    color: #00f3ff;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
}

.brand:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #00ffaa;
}

.brand span {
    color: #b0c4de;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brand:hover span {
    color: #ffffff;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    .futuristic-title {
        font-size: 4rem;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        margin-bottom: 4rem;
        padding: 0 1.5rem 1.5rem;
    }
    .section-title h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    .section-title p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    .futuristic-title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .equipment-category h2 {
        font-size: 2.2rem;
    }
    
    .equipment-item {
        padding: 2rem 1.5rem;
    }
    
    .equipment-img {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .equipment-content h3 {
        font-size: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 3rem;
        padding: 0 1rem 1.5rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .section-title p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 8rem 0 6rem;
    }
    
    .futuristic-title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .equipment-category {
        margin-bottom: 4rem;
    }
    
    .equipment-category h2 {
        font-size: 2rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .brands h2 {
        font-size: 1.8rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .futuristic-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .futuristic-title::after {
        width: 80px;
        height: 3px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .equipment {
        padding: 4rem 0;
    }
    
    .equipment-category h2 {
        font-size: 1.6rem;
    }
    
    .equipment-item {
        padding: 1.8rem 1.5rem;
    }
    
    .equipment-img {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .equipment-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .equipment-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .equipment-features {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .equipment-features span {
        font-size: 0.95rem;
    }
    
    .brands {
        padding: 4rem 0;
    }
    
    .brands h2 {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .brand {
        padding: 1.5rem 0.5rem;
    }
    
    .brand i {
        font-size: 2rem;
    }
    
    .brand span {
        font-size: 1rem;
    }
}

/* Animation for equipment items */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
}

/* Custom AOS animations */
[data-aos^='fade'][data-aos^='fade'] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos^='fade'][data-aos^='fade'].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

[data-aos='fade-up'] {
    transform: translate3d(0, 30px, 0);
}

[data-aos='fade-down'] {
    transform: translate3d(0, -30px, 0);
}

[data-aos='fade-right'] {
    transform: translate3d(-30px, 0, 0);
}

[data-aos='fade-left'] {
    transform: translate3d(30px, 0, 0);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 200px 0 120px;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.contact-hero .futuristic-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #b0e0ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero .subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #0c0f1a;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 247, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 170, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    display: inline-block;
    color: #00f3ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.section-title .highlight {
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00f3ff, #00ffaa);
    margin: 0 auto 25px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 15px;
    height: 9px;
    background: #00f3ff;
    animation: pulse 2s infinite;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: rgba(20, 25, 40, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.1);
}

.info-card {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
}

.info-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(0, 170, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: #00f3ff;
    flex-shrink: 0;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(0, 170, 255, 0.2));
}

.info-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
    line-height: 1.6;
}

.info-note {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* Social Links */
.social-links {
    margin-top: 40px;
}

.social-links h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

.social-icon .icon-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #00f3ff, #00aaff);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover .icon-border {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: #00f3ff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Contact Form */
.contact-form-container {
    flex: 1.5;
    min-width: 300px;
    background: rgba(20, 25, 40, 0.5);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.1);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.futuristic-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.input-group, .textarea-group {
    position: relative;
    margin-bottom: 5px;
}

.input-group input, 
.textarea-group textarea,
.select-wrapper select {
    width: 100%;
    padding: 18px 20px 10px 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.textarea-group textarea {
    min-height: 150px;
    resize: vertical;
    padding: 25px 20px 15px 50px;
    line-height: 1.5;
}

.input-group label,
.textarea-group label,
.select-label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: transparent;
    padding: 0 10px;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.textarea-group label {
    top: 25px;
    transform: none;
}

.select-label {
    left: 20px;
    top: -10px;
    font-size: 0.8rem;
    background: #0c0f1a;
    padding: 0 10px;
    opacity: 0;
    visibility: hidden;
}

.input-group i,
.textarea-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 243, 255, 0.6);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.textarea-group i {
    top: 25px;
    transform: none;
}

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

.line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00f3ff, #00aaff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.input-group input:focus,
.textarea-group textarea:focus,
.select-wrapper select:focus {
    outline: none;
    border-color: rgba(0, 243, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.textarea-group textarea:focus + label,
.textarea-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 20px;
    font-size: 0.8rem;
    color: #00f3ff;
    background: #0c0f1a;
    padding: 0 10px;
    transform: none;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-group input:focus ~ .input-decoration .line,
.textarea-group textarea:focus ~ .input-decoration .line {
    transform: scaleX(1);
}

.input-group input:focus ~ i,
.textarea-group textarea:focus ~ i {
    color: #00f3ff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Select Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper:hover .select-arrow {
    color: #00f3ff;
}

.select-wrapper select:focus ~ .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-wrapper select:valid ~ .select-label {
    opacity: 1;
    visibility: visible;
    top: -10px;
    left: 20px;
    color: #00f3ff;
}

/* Submit Button */
.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #00a2ff, #00f3ff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 162, 255, 0.3);
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00f3ff, #00a2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 162, 255, 0.4);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-icon {
    margin-left: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50px;
    z-index: -1;
}

.btn-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-submit:hover .btn-particles::before {
    opacity: 1;
}

/* Loading State */
.btn-submit.loading {
    pointer-events: none;
    padding-right: 50px;
}

.btn-submit.loading .btn-icon {
    position: absolute;
    right: 20px;
    margin-left: 0;
    animation: spin 1s linear infinite;
}

/* Map Section */
.map-section {
    position: relative;
    padding: 0;
    background: #0a0e17;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 14, 23, 0.9) 0%, rgba(10, 14, 23, 0.7) 50%, transparent 100%);
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 5%;
    pointer-events: none;
}

.map-info {
    max-width: 500px;
    background: rgba(15, 20, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
    pointer-events: auto;
}

.map-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.map-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-details {
    margin-top: 25px;
}

.map-details p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.map-details i {
    margin-right: 10px;
    color: #00f3ff;
    width: 20px;
    text-align: center;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(110%) brightness(0.8);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, 
    .contact-form-container {
        width: 100%;
        max-width: 100%;
    }
    
    .map-overlay {
        background: linear-gradient(0deg, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.8) 50%, transparent 100%);
        align-items: flex-end;
        padding-bottom: 30px;
    }
    
    .map-info {
        max-width: 100%;
        margin: 0 20px;
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .contact-hero .futuristic-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .map-info {
        padding: 20px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-hero .futuristic-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* Animation Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 14, 23, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00c3ff, #00e6a8);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00a8e8, #00c3a0);
}
