
.career-section {
    padding: 8% 20px 60px; 
    background: url('../assets/img/asfalt-dark-bg.png'), #3a383860;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-container {
    width: 100%;
    max-width: 900px;
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.career-header {
    background-color: #1f1f1f;
    padding: 40px 30px;
    border-bottom: 4px solid #ffc107;
    text-align: center;
}

.career-header h1 {
    font-size: 2.5rem;
    color: #ffc107;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.career-header p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper {
    padding: 40px;
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.career-form label {
    color: #ffc107;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.career-form input[type="text"],
.career-form input[type="email"],
.career-form input[type="tel"],
.career-form select,
.career-form textarea {
    background-color: #3a3a3a;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: none;
    border-color: #ffc107;
    background-color: #444;
}

.career-form input[type="file"] {
    background-color: #3a3a3a;
    padding: 10px;
    border: 1px dashed #777;
    border-radius: 6px;
    color: #ccc;
    cursor: pointer;
    width: 100%;
}

.form-actions {
    margin-top: 10px;
    text-align: center;
}

.btn-career {
    background-color: #ffc107;
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    width: 100%;
}

.btn-career:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .career-section {
        padding-top: 120px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .career-header h1 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 25px;
    }
}