/* Work With Us page style */
.work-with-us-header {
    position: relative;
    background-image: url('../assets/stock/pexels-jakubzerdzicki-21228271.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    margin: 0;
    width: 100%;
    min-height: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-with-us-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

#work-with-us-title {
    position: relative;
    padding: 4rem 2rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

.introTextBlock {
    position: relative;
    z-index: 1;
}

/* Work With Us Form Styling */
.work-with-us-form {
    max-width: 700px;
    margin: 2rem auto;
    padding: 3rem;
    background-color: #2a252c;
    border: 1px solid #635d6b;
    position: relative;
}

.work-with-us-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 191, 133, 0.05), rgba(92, 191, 133, 0.02));
    pointer-events: none;
}

.work-with-us-form > * {
    position: relative;
    z-index: 1;
}

.work-with-us-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.work-with-us-form input,
.work-with-us-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #635d6b;
    background-color: #3a3540;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 50px;
}

.work-with-us-form textarea {
    min-height: 120px;
    resize: vertical;
    overflow-y: auto;
}

.work-with-us-form input[type="file"] {
    padding: 10px;
    background-color: #2a252c;
    border: 2px dashed #635d6b;
    color: #ffffff;
    cursor: pointer;
}

.work-with-us-form input[type="file"]:hover {
    border-color: #5cbf85;
    background-color: rgba(92, 191, 133, 0.1);
}

.work-with-us-form input:focus,
.work-with-us-form textarea:focus {
    outline: none;
    border-color: #5cbf85;
    background-color: #454050;
    transform: translateY(-2px);
}

.work-with-us-form button[type="submit"] {
    background-color: #5cbf85;
    color: #2a252c;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.work-with-us-form button[type="submit"]:hover {
    background-color: #4aa66d;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .work-with-us-form {
        max-width: 90%;
        margin: 1rem auto;
        padding: 2rem;
    }
    
    .work-with-us-form input,
    .work-with-us-form textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .work-with-us-form {
        padding: 1.5rem;
        margin: 0.5rem auto;
    }
}

