/* HEADER (Reutilizado) */
.page-header {
    padding: 140px 0 60px 0;
    text-align: center;
}

/* TARJETAS DE CONTACTO (Izquierda) */
.contact-card-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card-glass:hover {
    background: rgba(0, 168, 204, 0.1);
    border-color: var(--color-cyan);
    transform: translateX(5px);
}

.icon-box-glass {
    width: 50px;
    height: 50px;
    background: rgba(0, 31, 63, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* MAPA RADAR */
.map-radar-frame {
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Línea de escaneo animada sobre el mapa */
.radar-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0, 168, 204, 0.5);
    box-shadow: 0 0 10px var(--color-cyan);
    z-index: 2;
    animation: scanMap 4s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes scanMap {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* FORMULARIO FUTURISTA */
.form-group-glass {
    position: relative;
}

.form-control-glass {
    background-color: rgba(11, 45, 82, 0.6);
    /* Fondo oscuro */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    /* Texto blanco forzado */
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-glass:focus {
    background-color: rgba(11, 45, 82, 0.9);
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 168, 204, 0.2);
    color: #fff;
}

.form-control-glass::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Estilo para el Select (las opciones son difíciles de estilizar cross-browser, 
   así que nos aseguramos que el fondo de las opciones sea oscuro) */
select.form-control-glass option {
    background-color: #001f3f;
    color: #fff;
    padding: 10px;
}

/* DECORACIÓN FONDO (Red reutilizada) */
.network-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 168, 204, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.pointer-events-none {
    pointer-events: none;
}