/* ========================================================
   CONTACT PAGE NEURAL STYLES
   ======================================================== */

.contact-page {
    background: linear-gradient(135deg, #020b12 0%, #03141f 50%, #010609 100%);
    color: #ffffff;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.contact-hero {
    padding-bottom: 30px;
}

.electric-shift {
    background: linear-gradient(90deg, #00F0FF, #00FFB2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-command-section {
    padding: 60px 20px 100px;
    position: relative;
    z-index: 10;
}

.command-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.neon-card {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.neon-card>h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00F0FF;
    margin-top: 0;
    margin-bottom: 10px;
}

.micro-trust {
    font-size: 0.85rem;
    color: #00FFB2;
    margin-bottom: 30px;
}

/* Floating Input Forms */
.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-field {
    position: relative;
    width: 100%;
}

.floating-field input,
.floating-field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 15px 15px 5px;
    /* Offset padding for label */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.floating-field input:focus,
.floating-field textarea:focus {
    outline: none;
    border-color: #00F0FF;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.floating-field label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #A0AEC0;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Float label up when field has focus or contains text (using :not(:placeholder-shown)) */
.floating-field input:focus+label,
.floating-field textarea:focus+label,
.floating-field input:not(:placeholder-shown)+label,
.floating-field textarea:not(:placeholder-shown)+label {
    top: 5px;
    font-size: 0.70rem;
    color: #00F0FF;
}

.submit-btn {
    margin-top: 10px;
    font-size: 1.1rem;
    width: 100%;
}

/* Info Panel Styling */
.hq-desc {
    color: #A0AEC0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.list-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #00F0FF;
    text-shadow: 0 0 8px #00F0FF;
}

.map-wrap {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 240, 255, 0.2);
    height: 200px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) contrast(1.1);
    /* Hacked Dark Mode Map */
}

.visual-board {
    padding: 0 20px 80px;
}

.gap-lg {
    gap: 20px;
}

.visual-board img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}