﻿.alert-success {
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    background: rgba(0,245,255,.08);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 1.25rem;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 0 8px var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: max-height .35s ease, opacity .3s ease, padding .35s ease, margin-bottom .35s ease, border-color .3s ease;
}

.alert-success.visible {
    max-height: 3.5rem;
    opacity: 1;
    padding: 0 1.25rem;
    margin-bottom: 1.5rem;
    border-color: rgba(0,245,255,.3);
}

.field-error {
    color: #ff4466;
    font-size: .75rem;
    margin-top: .3rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: .5px;
    display: block;
    height: 1.1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.captcha-question {
    font-family: 'Orbitron', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 9rem;
    display: inline-block;
}

.captcha-row input {
    max-width: 90px;
}

.contacts-hero {
    padding: 5rem 2rem 3.5rem;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,245,255,.08), transparent 70%);
    position: relative;
    z-index: 4;
}

    .contacts-hero h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 900;
        color: #fff;
        letter-spacing: 3px;
        margin-bottom: .75rem;
    }

    .contacts-hero p {
        color: #7070a0;
        max-width: 500px;
        margin: 0 auto;
    }

/* LAYOUT */
.contacts-body {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 4;
}

@media (max-width: 680px) {
    .contacts-body {
        grid-template-columns: 1fr;
    }
}

/* WATCH DOGS STYLE - DEVELOPER PROFILE */
.profiler-section {
    max-width: 1000px;
    margin: 3rem auto 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.profiler-container {
    background: linear-gradient(135deg, rgba(0,0,0,.95), rgba(10,10,30,.95));
    border: 1px solid rgba(0,245,255,.3);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,.7), 0 0 40px rgba(0,245,255,.15);
    z-index: 4;
}

    .profiler-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,245,255,.02) 3px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,245,255,.02) 3px);
        pointer-events: none;
        z-index: 1;
    }

.profiler-header {
    background: rgba(0,245,255,.08);
    border-bottom: 2px solid rgba(0,245,255,.4);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

    .profiler-header::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--neon-cyan);
        box-shadow: 0 0 10px var(--neon-cyan);
        animation: headerScan 2s ease-out forwards;
    }

@keyframes headerScan {
    to {
        width: 100%;
    }
}

.profiler-title {
    font-family: 'Orbitron', sans-serif;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.profiler-id {
    font-family: 'Courier New', monospace;
    font-size: .65rem;
    color: rgba(255,255,255,.5);
    letter-spacing: 2px;
}

.profiler-status {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00ff88;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 1.5s ease-in-out infinite;
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(1.2);
    }
}

.profiler-body {
    padding: 2rem;
    position: relative;
    z-index: 5;
}

.profiler-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.profiler-identity {
    position: relative;
}

.photo-frame {
    position: relative;
    margin-bottom: 1.5rem;
}

.photo-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    background: linear-gradient(135deg, #0a0a1a, #1a1a3a);
    border: 2px solid rgba(0,245,255,.4);
    box-shadow: 0 0 30px rgba(0,245,255,.3), inset 0 0 50px rgba(0,245,255,.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,245,255,.1)), repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,245,255,.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.photo-corners {
    position: absolute;
    inset: -2px;
    pointer-events: none;
    z-index: 2;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}

    .corner.tl {
        top: 0;
        left: 0;
        border-right: none;
        border-bottom: none;
    }

    .corner.tr {
        top: 0;
        right: 0;
        border-left: none;
        border-bottom: none;
    }

    .corner.bl {
        bottom: 0;
        left: 0;
        border-right: none;
        border-top: none;
    }

    .corner.br {
        bottom: 0;
        right: 0;
        border-left: none;
        border-top: none;
    }

.photo-icon {
    font-size: 6rem;
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    position: relative;
    z-index: 10;
    background-image: url(../assets/photo.png);
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    opacity: 0;
    transition: opacity .3s ease;
}

/* PHOTO DECODING ANIMATION */
.photo-decoder {
    position: absolute;
    inset: 0;
    background: #0a0a1a;
    z-index: 15;
    overflow: hidden;
}

.decode-strip {
    position: absolute;
    width: 100%;
    height: 8%;
    background: linear-gradient(90deg, rgba(0,245,255,.8) 0%, rgba(0,245,255,.4) 30%, transparent 50%, rgba(255,0,136,.4) 70%, rgba(255,0,136,.8) 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    box-shadow: 0 0 20px rgba(0,245,255,.6);
}

    .decode-strip.active {
        opacity: 1;
        animation: decodeStrip 1.2s ease-out forwards;
    }

    .decode-strip.glitch {
        animation: decodeGlitch .6s ease-in-out, decodeStrip 1.2s ease-out forwards;
    }

    .decode-strip.critical {
        background: linear-gradient(90deg, rgba(255,0,136,.9) 0%, rgba(255,0,136,.6) 30%, transparent 50%, rgba(0,245,255,.6) 70%, rgba(0,245,255,.9) 100%);
        box-shadow: 0 0 25px rgba(255,0,136,.8);
        animation: decodeGlitch .3s ease-in-out infinite, decodeStrip 1.2s ease-out forwards;
    }

@keyframes decodeStrip {
    0% {
        transform: scaleX(0);
        opacity: 1;
    }

    70% {
        transform: scaleX(1);
        opacity: .8;
    }

    100% {
        transform: scaleX(1);
        opacity: 0;
    }
}

@keyframes decodeGlitch {
    0%, 100% {
        transform: scaleX(1) translateX(0);
        filter: hue-rotate(0deg);
    }

    10% {
        transform: scaleX(1.1) translateX(-4px);
        filter: hue-rotate(180deg) brightness(1.5);
    }

    20% {
        transform: scaleX(0.9) translateX(6px);
        filter: hue-rotate(-120deg) contrast(2);R
    }

    30% {
        transform: scaleX(1.05) translateX(-2px);
        filter: hue-rotate(90deg) saturate(3);
    }

    40% {
        transform: scaleX(0.95) translateX(3px);
        filter: hue-rotate(-60deg) brightness(0.7);
    }

    50% {
        transform: scaleX(1.02) translateX(-1px);
        filter: hue-rotate(240deg) invert(0.2);
    }

    60% {
        transform: scaleX(0.98) translateX(2px);
        filter: hue-rotate(-180deg) brightness(1.3);
    }

    70% {
        transform: scaleX(1.03) translateX(-3px);
        filter: hue-rotate(60deg) contrast(1.5);
    }

    80% {
        transform: scaleX(0.97) translateX(4px);
        filter: hue-rotate(-90deg) saturate(2);
    }

    90% {
        transform: scaleX(1.01) translateX(-1px);
        filter: hue-rotate(150deg) brightness(0.9);
    }
}

.photo-static {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient( 0deg, rgba(0,245,255,.1) 0px, transparent 1px, transparent 2px, rgba(0,245,255,.05) 3px );
    opacity: 0;
    z-index: 12;
}

    .photo-static.active {
        opacity: 1;
        animation: staticNoise .1s linear infinite;
    }

@keyframes staticNoise {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(1px);
    }
}

.decode-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    width: 0%;
    z-index: 16;
    transition: width .5s ease;
}

.photo-noise-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0.8 0 0 0 0.1 0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.4"/></svg>') repeat;
    opacity: 0;
    z-index: 13;
    animation: noiseShift 2s linear infinite;
}

    .photo-noise-overlay.active {
        opacity: .3;
    }

@keyframes noiseShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2px, 2px);
    }

    50% {
        transform: translate(2px, -1px);
    }

    75% {
        transform: translate(-1px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.photo-revealed {
    opacity: 1 !important;
}

/* MATRIX-STYLE DECODING TEXT */
.matrix-decoder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 1;
    transition: opacity .5s ease;
}

    .matrix-decoder.hidden {
        opacity: 0;
        pointer-events: none;
    }

.matrix-text {
    font-family: 'Courier New', monospace;
    font-size: .8rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    text-align: center;
    line-height: 1.4;
    padding: 1rem;
    background: rgba(0,0,0,.8);
    border: 1px solid rgba(0,255,0,.3);
    border-radius: 4px;
    max-width: 80%;
}

.matrix-char {
    display: inline-block;
    animation: matrixFlicker 0.1s linear infinite;
}

    .matrix-char.stable {
        animation: none;
        color: #00ff88;
    }

@keyframes matrixFlicker {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.matrix-cursor {
    display: inline-block;
    width: 8px;
    height: 1rem;
    background: #00ff00;
    margin-left: 2px;
    animation: matrixBlink .6s infinite;
}

@keyframes matrixBlink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

.scan-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,245,255,.3) 50%, transparent);
    height: 4px;
    box-shadow: 0 0 15px rgba(0,245,255,.8);
    animation: verticalScan 3s linear infinite;
}

@keyframes verticalScan {
    0% {
        top: -4px;
    }

    100% {
        top: 100%;
    }
}

.terminal-hack {
    background: #000;
    border: 1px solid rgba(0,255,0,.3);
    border-radius: 4px;
    padding: 0;
    font-family: 'Courier New', monospace;
    font-size: .75rem;
    line-height: 1.5;
    color: #00ff00;
    height: 616px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,255,0,.2), inset 0 0 30px rgba(0,255,0,.05);
    transition: opacity .5s ease, transform .5s ease;
}

    .terminal-hack.hidden {
        opacity: 0;
        transform: scale(0.98);
        pointer-events: none;
        display: none;
    }

    .terminal-hack::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0,255,0,.03) 2px);
        pointer-events: none;
        z-index: 1;
    }

.terminal-content {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
    overflow: hidden;
}

.terminal-lines-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: transform .3s ease;
}

.terminal-line {
    opacity: 0;
    margin-bottom: .3rem;
    white-space: pre-wrap;
    word-break: break-all;
}

    .terminal-line.visible {
        opacity: 1;
        animation: terminalFadeIn .15s ease;
    }

@keyframes terminalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.term-prompt {
    color: #00ff00;
    font-weight: bold;
}

.term-success {
    color: #00ff88;
}

.term-error {
    color: #ff0055;
}

.term-warning {
    color: #ffaa00;
}

.term-info {
    color: #00ffff;
}

.term-dim {
    color: #006600;
}

.term-cursor {
    display: inline-block;
    width: 8px;
    height: 12px;
    background: #00ff00;
    animation: blink .8s infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

.identity-data {
    background: rgba(0,245,255,.05);
    border: 1px solid rgba(0,245,255,.2);
    border-radius: 4px;
    padding: 1rem;
}

    .identity-data.visible {
        animation: dataReveal .5s ease forwards;
    }

@keyframes dataReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.identity-value.masked {
    filter: blur(6px);
    user-select: none;
    transition: filter .5s ease;
}

.identity-value.revealed {
    filter: blur(0);
}

.identity-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-family: 'Courier New', monospace;
    font-size: .75rem;
}

    .identity-row:last-child {
        border-bottom: none;
    }

.identity-label {
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.identity-value {
    color: var(--neon-cyan);
    font-weight: bold;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.profiler-details {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

    .profiler-details.visible {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

.data-block {
    background: rgba(0,0,0,.4);
    border-left: 3px solid var(--neon-purple);
    padding: 1.25rem;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
}

    .data-block.visible {
        animation: slideInRight .4s ease forwards;
    }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.skill-tag.masked {
    filter: blur(4px);
    user-select: none;
    transition: filter .5s ease;
}

.skill-tag.revealed {
    filter: blur(0);
}

.data-block-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.data-icon {
    font-size: 1.5rem;
    color: #666;
    filter: grayscale(1) drop-shadow(0 0 8px rgba(102, 102, 102, 0.5));
}

.data-block-title {
    font-family: 'Orbitron', sans-serif;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-purple);
    text-shadow: 0 0 8px var(--neon-purple);
}

.data-block-content {
    color: #a0a0c0;
    font-size: .9rem;
    line-height: 1.6;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .75rem;
}

.skill-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .35rem .75rem;
    border-radius: 3px;
    background: rgba(0,245,255,.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(0,245,255,.3);
    box-shadow: 0 0 10px rgba(0,245,255,.2);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: .75rem;
}

.stat-item {
    background: rgba(191,0,255,.05);
    border: 1px solid rgba(191,0,255,.2);
    border-radius: 4px;
    padding: .75rem;
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
    display: block;
    margin-bottom: .25rem;
}

.stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.glitch-effect {
    position: relative;
    display: inline-block;
}

    .glitch-effect::before,
    .glitch-effect::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    .glitch-effect::before {
        color: #00ffff;
        animation: glitch1 2s infinite;
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }

    .glitch-effect::after {
        color: #ff00ff;
        animation: glitch2 2s infinite;
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }

@keyframes glitch1 {
    0%, 90%, 100% {
        opacity: 0;
        transform: translateX(0);
    }

    91%, 94% {
        opacity: .7;
        transform: translateX(-2px);
    }
}

@keyframes glitch2 {
    0%, 90%, 100% {
        opacity: 0;
        transform: translateX(0);
    }

    92%, 95% {
        opacity: .7;
        transform: translateX(2px);
    }
}

.access-badge {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .25rem .6rem;
    border-radius: 3px;
    background: rgba(0,255,136,.15);
    color: #00ff88;
    border: 1px solid rgba(0,255,136,.4);
    box-shadow: 0 0 10px rgba(0,255,136,.3);
    margin-left: .5rem;
}

@media (max-width: 768px) {
    .profiler-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profiler-section {
        margin: 2rem auto;
        padding: 0 1.25rem;
    }

    .terminal-hack {
        font-size: .65rem;
        padding: .75rem;
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .profiler-section {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }

    .profiler-header {
        padding: .75rem 1rem;
        flex-direction: column;
        gap: .5rem;
        align-items: flex-start;
    }

    .profiler-body {
        padding: 1.25rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .terminal-hack {
        font-size: .6rem;
        padding: .5rem;
        min-height: 160px;
    }
}

/* SIDEBAR */
.contacts-sidebar h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    margin-bottom: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 6px var(--neon-cyan));
    flex-shrink: 0;
    margin-top: .1rem;
}

.contact-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: .2rem;
}

.contact-item p, .contact-item a {
    font-size: .9rem;
    color: #8686B3;
    text-decoration: none;
    transition: color .2s;
}

    .contact-item a:hover {
        color: var(--neon-cyan);
    }

.socials {
    margin-top: 2rem;
}

    .socials h2 {
        font-family: 'Orbitron', sans-serif;
        font-size: .9rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--neon-purple);
        text-shadow: 0 0 8px var(--neon-purple);
        margin-bottom: 1rem;
    }

.social-links {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.social-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--border);
    color: #a0a0c0;
    transition: all .2s;
}

    .social-btn:hover {
        color: var(--neon-purple);
        border-color: var(--neon-purple);
        text-shadow: 0 0 8px var(--neon-purple);
    }

/* FORM */
.contact-form h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        font-family: 'Orbitron', sans-serif;
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #6060a0;
        margin-bottom: .4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background: #0e0e1a;
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: .7rem 1rem;
        color: #d0d0e8;
        font-family: 'Rajdhani', sans-serif;
        font-size: .95rem;
        transition: border-color .25s, box-shadow .25s;
        outline: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 0 3px rgba(0,245,255,.1);
        }

    .form-group textarea {
        resize: none;
        min-height: 120px;
        height: 120px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .contacts-hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .contacts-body {
        margin: 2rem auto 3rem;
        padding: 0 1.25rem;
    }

    .captcha-row {
        flex-wrap: wrap;
    }

    .captcha-question {
        min-width: unset;
    }

    .captcha-row input {
        max-width: 100%;
    }
}