/* =========================================
   QUANTUMRECORDS – TALENT PAGE (LIGHT THEME)
   Clean + light futuristic + floating UI
========================================= */

:root {
    --qr-bg: #F0F0F0;
    --qr-text: #222;
    --qr-text-soft: #555;
    --qr-card-bg: #ffffff;
    --qr-card-border: rgba(0,0,0,0.08);
    --qr-accent: #e0e0e0;
}

/* PAGE WRAPPER */
.qr-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--qr-bg);
}

/* BACKGROUND – LIGHT SOUNDWAVES */
.qr-bg {
    position: fixed;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    background:#fff
}

.qr-bg::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: repeating-linear-gradient(
        90deg,
        rgba(0,0,0,0.1) 0px,
        rgba(0,0,0,0.05) 2px,
        transparent 2px,
        transparent 18px
    );
    opacity: 0.28;
    animation: qrWaveSlide 26s linear infinite;
}

.qr-bg::after {
    content: "";
    position: absolute;
    inset: -25%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.1) 0px,
        rgba(0,0,0,0.2) 2px,
        transparent 2px,
        transparent 16px
    );
    opacity: 0.1;
    animation: qrWaveVertical 38s linear infinite;
}

@keyframes qrWaveSlide {
    0% { transform: translateX(100px) translateY(620px); }
    100% { transform: translateX(-500px) translateY(20px); }
}

@keyframes qrWaveVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-600px); }
}

/* MAIN CONTAINER */
.qr-container {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--qr-text);
    animation: qrReveal 0.9s ease-out forwards;
    opacity: 0;
}

@keyframes qrReveal {
    0%   { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* HERO */
.qr-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    font-weight: 700;
    color: #646464;
}

.qr-hero p {
    color: #646464;
}

.qr-hero-badges span {
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.16);
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(6px);
    color: var(--qr-text);
}

/* STEPS – FLOATING CARDS LIGHT */
.qr-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 40px 0 50px;
}

.qr-step {
    background: var(--qr-card-bg);
    border: 1px solid var(--qr-card-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    animation: qrWobble 4s ease-in-out infinite;
}

@keyframes qrWobble {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-6px); }
    50%  { transform: translateY(0); }
    75%  { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

.qr-step-number {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #646464;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.qr-step h2 {
    font-size: 1.15rem;
    color: #646464;
    margin-bottom: 6px;
}

.qr-step p {
    color: #646464;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FORM – LIGHT FLOATING */
.qr-form {
    position: relative;
    background: var(--qr-card-bg);
    border-radius: 18px;
    padding: 26px 24px;
    border: 1px solid var(--qr-card-border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
}

.qr-form-header h2 {
    font-size: 1.4rem;
    color: var(--qr-text);
}

.qr-form-header p {
    color: var(--qr-text-soft);
}

/* FORM FIELDS */
.qr-field label {
    color: var(--qr-text);
}

.qr-field input,
.qr-field textarea,
.qr-field select {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.16);
    color: var(--qr-text);
}

.qr-field input:focus,
.qr-field textarea:focus,
.qr-field select:focus {
    border-color: #ccc;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* ERROR BOX */
.qr-error {
    background: rgba(255, 50, 50, 0.06);
    border: 1px solid rgba(255, 80, 80, 0.4);
    color: #b00000;
}

/* SUBMIT BUTTON */
.qr-submit-btn {
    background: #000;
    color: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

.qr-submit-btn:hover {
    opacity: 0.88;
}

/* FORM – FLOATING UI, PLAYFUL BUT CLEAN */
.qr-form {
    position: relative;
    margin-top: 10px;
    background: #fff;
    border-radius: 18px;
    padding: 26px 24px 26px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
}

.qr-form::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.22), transparent 55%);
    opacity: 0.2;
    pointer-events: none;
}

.qr-form-header h2 {
    font-size: 1.4rem;
    margin: 0 0 6px;
    color: #646464;
}

.qr-form-header p {
    font-size: 0.92rem;
    color: #646464;
    max-width: 640px;
}

/* FORM GRID */
.qr-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.qr-field {
    margin-top: 16px;
    position: relative;
}

.qr-divider {
    margin-top: 28px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #a5a5a5;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 10px;
}

/* LABELS & INPUTS */
.qr-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.85rem;
    color: #646464;
}

.qr-field input,
.qr-field textarea,
.qr-field select {
    width: 100%;
    padding: 10px 11px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    color: #646464;
    font-size: 0.9rem;
    outline: none;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        transform 0.16s ease;
}

.qr-field input::placeholder,
.qr-field textarea::placeholder {
    color: #777;
    font-size: 0.86rem;
}

.qr-field input:focus,
.qr-field textarea:focus,
.qr-field select:focus {
    border-color: #ffffff;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 5px 5px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

/* FILE FIELD */
.qr-field-file input[type="file"] {
    padding: 8px 0;
    border-radius: 0;
    border: none;
    background: transparent;
}

.qr-field-hint {
    margin-top: 4px;
    font-size: 0.78rem;
    color: #aaaaaa;
}

/* ERROR MESSAGE */
.qr-error {
    background: rgba(255, 80, 80, 0.12);
    border: 1px solid rgba(255, 120, 120, 0.7);
    padding: 12px 14px;
    border-radius: 10px;
    color: #ffb4b4;
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* FORM FOOTER / BUTTON */
.qr-form-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
}

.qr-note {
    font-size: 0.8rem;
    color: #b8b8b8;
    max-width: 680px;
}

.qr-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;

    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    overflow: hidden;

    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: #646464;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

.qr-submit-btn span:first-child {
    position: relative;
    z-index: 1;
}

.qr-submit-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.6), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateX(-30%);
}

.qr-submit-btn:hover .qr-submit-glow {
    opacity: 1;
    transform: translateX(20%);
}

/* === FOOTER CLEANUP (NO FLOATING / NO EFFECTS) === */
footer, .footer, #footer {
position: relative !important;
z-index: 5 !important;
background: #ffffff !important;
}


.qr-faq-section {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.qr-faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s ease;
    color:#646464;
}

.qr-faq-question:hover {
    background: #f9f9f9;
}

.qr-faq-answer {
    overflow: hidden;
    max-height: 0;
    background: #ffffff;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-right: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-radius: 0 0 10px 10px;
    padding: 0 16px;
    transition: max-height 0.25s ease;
}

.qr-faq-answer p, .qr-faq-answer ul {
    color: #646464;
    font-size: 0.92rem;
    margin: 14px 0;
}


/* RESPONSIVE */
@media (max-width: 780px) {
    .qr-container {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .qr-hero h1 {
        font-size: 2.1rem;
    }

    .qr-field-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .qr-form {
        padding: 22px 18px 24px;
    }

    .qr-steps {
        margin-top: 26px;
    }
}
