/* ============================================
   SECTION 5: CONTACT (Mission Comms) STYLING
   ============================================ */

/* Layout: Centered Single Column - COMPACTED */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    /* Reduced from 60px */
    margin-bottom: 20px;
    /* Reduced from 40px */
    max-width: 800px;
    /* Constrain width for better centered look */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* --- Comms Channel (Form) --- */
.footer-comms {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced from 30px */
    width: 100%;
    align-items: center;
}

.comms-header {
    text-align: center;
}

.comms-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    /* Slightly smaller */
    font-weight: 800;
    margin-bottom: 5px;
    /* Reduced */
    letter-spacing: -1px;
    line-height: 1;
}

.comms-subtitle {
    font-size: 0.95rem;
    /* Reduced */
    color: rgba(248, 249, 250, 0.7);
    font-family: var(--font-body);
}

/* Glass Form Styling - COMPACT */
.comms-form {
    padding: 20px 30px;
    /* Reduced vertical padding */
    background: rgba(10, 31, 68, 0.6);
    /* Darker glass for input contrast */
    border: 1px solid rgba(0, 168, 232, 0.2);
    /* Sonic blue accent border */
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 550px;
    /* Slightly narrower */
}

.form-group {
    margin-bottom: 12px;
    /* Reduced from 20px */
    text-align: left;
    /* Keep labels left aligned */
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    /* Smaller label */
    font-weight: 700;
    color: var(--sonic-blue);
    margin-bottom: 4px;
    /* Reduced */
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    /* Reduced padding */
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sonic-blue);
    background: rgba(0, 168, 232, 0.1);
    box-shadow: 0 0 15px rgba(0, 168, 232, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    /* Reduced min-height */
}

/* Secure Channel Indicator (Aesthetic) */
.secure-line-indicator {
    margin-top: 10px;
    /* Reduced */
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #10B981;
    /* Green secure color */
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    justify-content: center;
}

.secure-dot {
    width: 5px;
    height: 5px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 5px #10B981;
    animation: blink 2s infinite;
}

/* --- Base Info (Centered below form) --- */
.footer-base-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 10px;
}

.footer-links-grid {
    display: none;
    /* Removed as requested since nav is fixed at top */
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-container {
        gap: 40px;
        max-width: 100%;
    }
}