/* ==================== JOB HEADER ==================== */
.job-header {
    padding: 140px 0 60px;
    background: #0a0a0a;
}

.job-back {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.job-back:hover {
    color: #ffffff;
}

.job-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.job-dot {
    color: rgba(255, 255, 255, 0.3);
}

/* ==================== JOB CONTENT ==================== */
.job-content {
    padding: 60px 0;
    background: #0a0a0a;
}

.job-main {
    max-width: 720px;
}

.job-section {
    margin-bottom: 48px;
}

.job-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.job-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 12px;
}

.job-section ul {
    list-style: none;
    padding: 0;
}

.job-section ul li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.job-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}

/* ==================== BENEFITS GRID ==================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit {
    background: #161616;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==================== FORM SECTION ==================== */
.job-form-section {
    padding: 80px 0;
    background: #111111;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.job-form {
    max-width: 720px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #666;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==================== FILE UPLOAD ==================== */
.file-upload {
    position: relative;
    border: 2px dashed #333;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.file-upload:hover {
    border-color: #555;
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-upload-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.file-upload-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.file-upload-name {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.file-upload.has-file {
    border-color: #3B6D11;
    background: rgba(59, 109, 17, 0.1);
}

/* ==================== RODO ==================== */
.rodo-section {
    margin-top: 8px;
}

.rodo-info {
    background: #161616;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.rodo-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #444;
    border-radius: 6px;
    background: #1a1a1a;
    cursor: pointer;
    margin-top: 2px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #ffffff;
    border-color: #ffffff;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 700;
}

.checkbox-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ==================== SUBMIT ==================== */
.btn-submit {
    margin-top: 24px;
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
}

/* ==================== THANK YOU ==================== */
.thank-you {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.thank-you.show {
    display: block;
}

.thank-you-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.thank-you h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.thank-you p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ==================== FORM ERROR ==================== */
.form-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #e74c3c;
    font-size: 0.9rem;
    display: none;
}

.form-error.show {
    display: block;
}

/* ==================== SOCIAL FIELDS ==================== */
.links-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.social-field {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.social-field .social-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #161616;
    border: 1px solid #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-field .social-icon svg {
    width: 18px;
    height: 18px;
}

.social-field .icon-linkedin { color: #0A66C2; }
.social-field .icon-youtube { color: #FF0000; }
.social-field .icon-tiktok { color: #fff; }
.social-field .icon-instagram { color: #E4405F; }
.social-field .icon-facebook { color: #1877F2; }
.social-field .icon-twitter { color: #fff; }
.social-field .icon-other { color: #999; }

.social-field .social-label {
    flex: 0 0 90px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.social-field input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.2s;
    min-width: 0;
}

.social-field input:focus {
    outline: none;
    border-color: #666;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .job-header {
        padding: 120px 0 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .social-field {
        flex-wrap: wrap;
        gap: 8px;
    }

    .social-field .social-label {
        flex: 1;
    }

    .social-field input {
        flex: 1 1 100%;
    }
}
