.contact-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.contact-hero-container {
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(30px);
}

.contact-hero-container {
    position: relative;
    z-index: 5;
    opacity: 1;
    transform: translateY(0);
}

.telemetry-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(245, 185, 0, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
}

.moving-coordinates {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--primary-color);
    opacity: 0.4;
    z-index: 2;
    animation: pulseCoordinates 4s ease-in-out infinite;
}

@keyframes pulseCoordinates {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

.contact-hero-container {
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(30px);
}

.contact-hero-container.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.contact-hero-content {
    max-width: 750px;
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-icon {
    width: 25px;
    height: 40px;
    border: 2px solid var(--road-gray);
    border-radius: 15px;
    position: relative;
}

.mouse-icon .wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 70vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .moving-coordinates {
        bottom: 20px;
        right: 20px;
        font-size: 0.6rem;
    }

    .contact-hero-content {
        padding: 0 20px;
    }
}










.contact-channels {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.channel-card {
    background: var(--bg-surface);
    padding: 50px 30px;
    border: 1px solid var(--road-gray);
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.channel-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.channel-icon {
    font-size: 2rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(245, 185, 0, 0.2));
}

.channel-info h3 {
    font-size: 1.3rem;
    color: var(--text-header);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.channel-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.channel-link {
    display: block;
    color: var(--primary-color);
    font-weight: 800;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}

.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    transition: width 0.4s ease;
}

.channel-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.channel-card:hover .card-accent-line {
    width: 100%;
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .channel-card {
        padding: 40px 20px;
        transition-delay: 0s !important;
    }
}









.contact-form-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.intro-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.form-checklist {
    margin-top: 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-header);
    font-size: 0.9rem;
}

.check-item span {
    color: var(--primary-color);
}

.form-terminal {
    background: var(--bg-dark);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    box-shadow: var(--shadow-industrial);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.field-group {
    position: relative;
    margin-bottom: 25px;
}

.field-group #subject option {
    background-color: var(--secondary-color);
}


.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--road-gray);
    border-radius: 4px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.field-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.field-group textarea~label {
    top: 25px;
}

.field-group input:focus~label,
.field-group input:not(:placeholder-shown)~label,
.field-group textarea:focus~label,
.field-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: var(--bg-dark);
    padding: 0 5px;
}

.field-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.4s ease;
}

.field-group input:focus~.field-glow {
    width: 100%;
}

.btn-submit {
    position: relative;
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.btn-scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-submit:hover .btn-scan-line {
    left: 100%;
}

@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-terminal {
        padding: 30px 20px;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .intro-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .intro-text {
        text-align: center;
    }
}









.location-map {
    position: relative;
    padding: 120px 0;
    min-height: 600px;
    background: #000;
    overflow: hidden;
}

.map-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/world.webp');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.2);
    z-index: 1;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, #000 90%);
    z-index: 2;
}

.tracking-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(245, 185, 0, 0.2);
    transform: translate(-50%, -50%);
    z-index: 3;
}

.tracking-crosshair::before,
.tracking-crosshair::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
}

.tracking-crosshair::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.tracking-crosshair::after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
}

.tracking-crosshair {
    animation: crosshairScale 4s ease-in-out infinite alternate;
}

@keyframes crosshairScale {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

.hq-container {
    position: relative;
    z-index: 10;
}

.hq-status-card {
    max-width: 400px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--road-gray);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 10px #28a745;
}

.detail-row {
    margin: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.detail-row .label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.detail-row .value {
    font-weight: 700;
    color: var(--text-header);
}

@media (max-width: 768px) {
    .location-map {
        padding: 80px 0;
        min-height: 500px;
    }

    .hq-status-card {
        margin: 0 20px;
        max-width: 100%;
        text-align: center;
    }

    .card-header {
        justify-content: center;
    }

    .tracking-crosshair {
        width: 150px;
        height: 150px;
    }
}







.diagnostic-tiers {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.diag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diag-card {
    background: #111;
    border: 1px solid var(--road-gray);
    padding: 40px 30px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.diag-scanner {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(245, 185, 0, 0.1), transparent);
    border-bottom: 1px solid var(--primary-color);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.diag-card:hover .diag-scanner {
    opacity: 1;
    animation: scanMove 2s linear infinite;
}

@keyframes scanMove {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

.diag-code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.diag-header h3 {
    margin: 10px 0 25px;
    text-transform: uppercase;
    font-size: 1.4rem;
    color: var(--text-header);
}

.diag-list {
    list-style: none;
    margin-bottom: 30px;
}

.diag-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.diag-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #444;
}

.pulse-text {
    color: var(--primary-color);
    animation: textPulse 2s infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.featured-diag {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(180deg, #111 0%, #080808 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .diag-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-diag {
        transform: scale(1);
    }
}







.signal-cta {
    position: relative;
    padding: 140px 0;
    background-color: #080808;
    overflow: hidden;
    text-align: center;
}

.signal-waves {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    animation: signalFlow 4s linear infinite;
}

.wave-2 {
    animation-delay: 1.3s;
}

.wave-3 {
    animation-delay: 2.6s;
}

@keyframes signalFlow {
    0% {
        transform: translateX(-50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translateX(-50%) scale(4);
        opacity: 0;
    }
}

.cta-container {
    position: relative;
    z-index: 5;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-signal {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn-signal:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .signal-cta {
        padding: 100px 0;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .btn-signal {
        width: 85%;
        padding: 18px 30px;
    }
}