/* ==========================================================================
   VYXRA CYBERPUNK STOREFRONT - CONTACT PAGE STYLING LAYOUT
   ========================================================================== */

.vyxra-contact-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #07070c;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

/* --- ANIMATED BACKGROUND SCENE COMPONENTS --- */
.bg-scene {
    position: fixed; inset: 0; z-index: 0;
    overflow: hidden; pointer-events: none;
}
.bg-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.35;
}
.orb1 {
    width: 60vw; height: 60vw; max-width: 500px; max-height: 500px;
    top: -20%; right: -15%;
    background: radial-gradient(circle, #7B2FFF 0%, transparent 70%);
    animation: orbMove1 12s ease-in-out infinite;
}
.orb2 {
    width: 50vw; height: 50vw; max-width: 400px; max-height: 400px;
    bottom: -20%; left: -10%;
    background: radial-gradient(circle, #0066FF 0%, transparent 70%);
    animation: orbMove2 15s ease-in-out infinite;
}
.orb3 {
    width: 30vw; height: 30vw; max-width: 280px; max-height: 280px;
    top: 40%; left: 30%;
    background: radial-gradient(circle, rgba(123,47,255,0.6) 0%, transparent 70%);
    animation: orbMove3 9s ease-in-out infinite;
    opacity: 0.2;
}
@keyframes orbMove1 { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(-30px,20px) scale(1.08) } }
@keyframes orbMove2 { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(20px,-25px) scale(1.06) } }
@keyframes orbMove3 { 0%,100% { transform: translate(0,0) } 50% { transform: translate(15px,-15px) } }

.laser {
    position: absolute; width: 1px;
    background: linear-gradient(to bottom, transparent, #7B2FFF, transparent);
    opacity: 0.2; animation: laserPulse 4s ease-in-out infinite;
}
.l1 { height: 60%; top: 10%; left: 20%; animation-delay: 0s }
.l2 { height: 40%; top: 30%; left: 60%; animation-delay: 1.5s; opacity: 0.12 }
.l3 { height: 50%; top: 5%; right: 25%; animation-delay: 3s; background: linear-gradient(to bottom, transparent, #0066FF, transparent) }
@keyframes laserPulse { 0%,100% { opacity: 0.08 } 50% { opacity: 0.25 } }

.grain {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* --- MAIN INTERFACE CARD RENDER CONFIGURATIONS --- */
.main {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 40px 20px 48px; position: relative; z-index: 5;
}
.contact-card {
    width: 100%; max-width: 1100px;
    background: rgba(15, 15, 22, 0.85);
    border: 1px solid #1e1e2a; border-radius: 32px; padding: 48px 40px;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    animation: cardIn .6s cubic-bezier(.34,1.1,.64,1) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(24px) scale(0.97) } to { opacity: 1; transform: none } }

.card-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: #a855f7; margin-bottom: 8px;
    display: flex; align-items: center; gap: 8px;
}
.card-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: #7B2FFF; border-radius: 2px; }

.card-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 56px;
    letter-spacing: 0.04em; line-height: 0.9; color: #ffffff; margin-bottom: 36px;
}

.contact-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media(min-width: 860px) {
    .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 48px; }
}

/* --- LEFT COLUMN INFRASTRUCTURE & LAYOUT MARGINS --- */
.info-section h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700; letter-spacing: 0.1em;
    color: #a855f7; margin: 0 0 24px 0; text-transform: uppercase;
}
.contact-details {
    display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px;
}
.contact-item {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.02); border-radius: 20px;
    padding: 14px 20px; border: 1px solid #1e1e2a; transition: all .2s;
}
.contact-item:hover { border-color: #7B2FFF; background: rgba(123,47,255,0.05); }

.contact-icon {
    width: 40px; height: 40px; background: rgba(123,47,255,0.15);
    border-radius: 30px; display: flex; align-items: center; justify-content: center; color: #a855f7;
}
.contact-icon svg { width: 20px; height: 20px; stroke: #a855f7; stroke-width: 1.8; fill: none; }

.contact-info p:first-child {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.55);
}
.contact-info p:last-child {
    font-size: 15px; font-weight: 500; color: white; word-break: break-word;
}

.social-head {
    font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
    letter-spacing: 0.15em; margin: 20px 0; color: rgba(255,255,255,0.55);
}
.social-grid {
    display: flex; flex-wrap: wrap; gap: 14px;
}
.social-icon-btn {
    flex: 1 0 calc(50% - 14px); min-width: 140px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: #16161f; border: 1px solid #1e1e2a; border-radius: 50px;
    padding: 12px 8px; font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; transition: all .25s; color: rgba(255,255,255,0.55);
}
.social-icon-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-icon-btn:hover {
    border-color: #7B2FFF; background: rgba(123,47,255,0.15); color: #ffffff; transform: translateY(-2px);
}
.support-note {
    font-size: 12px; margin-top: 26px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px;
}

/* --- RIGHT COLUMN DATA ACQUISITION FORM --- */
.form-group { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.field-input, .field textarea {
    width: 100%; background: #16161f; border: 1.5px solid #1e1e2a;
    border-radius: 14px; padding: 14px 16px; font-size: 14px; color: #ffffff;
    outline: none; transition: border .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.field-input:focus, .field textarea:focus {
    border-color: #7B2FFF; box-shadow: 0 0 0 3px rgba(123,47,255,0.15); background: rgba(22,22,31,0.9);
}

/* Custom Telephone Grid Wrapper Overrides */
.phone-input-wrapper { display: flex; gap: 12px; }
.select-country { width: 110px; max-width: 110px; padding: 0 12px; text-align: center; cursor: pointer; }
.input-tel { flex: 1; }

/* Dynamic Error Notification Modifiers */
.field-err {
    font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
    color: #ef4444; margin-top: 4px; display: none;
}
.field-err.show { display: block; }

.field-input.error-state, .field textarea.error-state {
    border-color: #ef4444 !important; background: rgba(239, 68, 68, 0.03);
}
.field-input.success-state, .field textarea.success-state {
    border-color: #16a34a !important;
}

/* Core Interface Confirmation Action Hooks */
.submit-btn {
    width: 100%; height: 54px; border-radius: 50px; position: relative;
    overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 14px; transition: transform .2s, box-shadow .3s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(123,47,255,0.4); }
.submit-btn:active { transform: scale(0.98) !important }

.submit-bg {
    position: absolute; inset: 0; background: linear-gradient(90deg, #5a1fcc, #7B2FFF, #a855f7);
    background-size: 200% 100%; transition: background-position .4s;
}
.submit-btn:hover .submit-bg { background-position: 100% 0; }

.submit-glow {
    position: absolute; inset: 0; background: linear-gradient(90deg, #5a1fcc, #7B2FFF, #a855f7);
    filter: blur(14px); opacity: 0.4; transition: opacity .3s;
}
.submit-btn:hover .submit-glow { opacity: 0.7; }

.submit-label {
    position: relative; z-index: 2; font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
    color: #fff; display: flex; align-items: center; gap: 8px; transition: opacity 0.2s;
}
.submit-label svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.submit-loading {
    position: absolute; z-index: 3; inset: 0; display: flex;
    align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; pointer-events: none;
}
.submit-btn.loading .submit-label { opacity: 0; pointer-events: none; }
.submit-btn.loading .submit-loading { opacity: 1; }

.spinner {
    width: 22px; height: 22px; border-radius: 50%;
    border: 2.5px solid rgba(255,255,255,0.2); border-top-color: #fff; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg) } }

/* --- HUD COMPLIANT TOAST DISPLAY ENGINE --- */
.toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
    z-index: 99999; background: #0f0f16; border: 1px solid #2a2a38; border-radius: 50px;
    padding: 14px 24px; display: flex; align-items: center; gap: 12px; opacity: 0;
    transition: transform .4s cubic-bezier(.34,1.2,.64,1), opacity .35s; pointer-events: none;
    white-space: nowrap; box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-icon.ok { background: #16a34a; }
.toast-icon.err { background: #ef4444; }
.toast-icon svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 2.5; }
.toast-text { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }

.footer-note {
    text-align: center; margin-top: 40px; font-size: 11px; color: rgba(255,255,255,0.55);
    font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.08em; border-top: 1px solid #1e1e2a; padding-top: 24px;
}

/* --- MOBILE STRUCTURAL VIEWPORT ADAPTERS --- */
@media(max-width: 640px) {
    .card-title { font-size: 42px; }
    .contact-card { padding: 32px 20px; border-radius: 24px; }
    .social-icon-btn { flex: 1 0 100%; }
}