/* --- CONTACTO SPECTACULAR: THE COMMAND CENTER --- */
:root {
    --cmd-bg: #111827;
    --cmd-panel: #1f2937;
    --cmd-accent: #10b981;
    /* Neon Green for "Online/Active" */
    --cmd-blue: #3b82f6;
    --cmd-text: #f3f4f6;
    --cmd-border: rgba(59, 130, 246, 0.2);
}

body.contacto-page {
    background-color: var(--cmd-bg);
    color: var(--cmd-text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* --- HERO: HOLOGRAPHIC TERRAIN --- */
.contacto-hero-spec {
    position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1e3a8a 0%, #000 100%);
    overflow: hidden;
}

.radar-scan {
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(16, 185, 129, 0.1) 60deg, transparent 80deg);
    animation: radarSpin 10s linear infinite;
    top: -50%;
    left: -50%;
    border-radius: 50%;
    z-index: 1;
}

@keyframes radarSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content-spec {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--cmd-accent);
    color: var(--cmd-accent);
    border-radius: 30px;
    font-family: monospace;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--cmd-accent);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--cmd-accent);
    animation: blink 2s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

.hero-title-spec {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* --- COMMAND INTERFACE --- */
.contact-interface-section {
    padding: 80px 20px;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.interface-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

/* Left Panel: Info */
.info-panel {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, rgba(31, 41, 55, 0) 100%);
    padding: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-header {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 30px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Decorative line */
    padding-bottom: 10px;
}

.contact-method {
    margin-bottom: 40px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cmd-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border: 1px solid var(--cmd-border);
}

.contact-method h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.contact-method p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Right Panel: Form */
.form-panel {
    padding: 50px;
}

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

.form-group-spec label {
    display: block;
    margin-bottom: 10px;
    color: #9ca3af;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input-spec {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: white;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input-spec:focus {
    outline: none;
    border-color: var(--cmd-blue);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

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

.submit-btn-spec {
    background: linear-gradient(90deg, var(--cmd-blue), var(--cmd-accent));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn-spec:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Map Section that looks like Satellite Feed */
.satellite-map {
    height: 400px;
    width: 100%;
    position: relative;
    border-top: 1px solid var(--cmd-blue);
}

.satellite-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    color: var(--cmd-accent);
    font-family: monospace;
    border: 1px solid var(--cmd-accent);
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 900px) {
    .interface-container {
        grid-template-columns: 1fr;
    }
}