/* --- PROFESSIONAL SECTION (COLLABORATE) --- */
.professional-section {
    padding: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.professional-layout {
    display: block;
    width: 100%;
    position: static;
}

.professional-caption {
    font-weight: 600;
    color: var(--color-red);
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.professional-content-col {
    width: 100%;
    /* Increase text space since the image is narrower */
    max-width: 60%;
    padding: 4rem 0;
    position: relative;
    z-index: 25;
}

.professional-image-col {
    position: absolute;
    /* 100px top and bottom margins as requested */
    top: 0px;
    bottom: 0px;
    right: 0;
    /* Width reduced to 35% */
    width: 35%;
    display: flex;
    justify-content: flex-end;
    z-index: 20;
    pointer-events: none;
    margin-top: 0;
    transform: none;
}

.professional-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    border-radius: 90px 0 0 90px;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    max-height: none;
}

.professional-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.professional-text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.professional-text strong {
    font-weight: 700;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 3rem;
    background-color: var(--color-red);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-white);
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: var(--color-red-hover);
}

.btn-icon {
    width: 28px;
    height: 28px;
}

/* --- CONTACT SECTION --- */
.contact-section {
    background: linear-gradient(180deg, rgba(0, 12, 27, 1) 0%, rgba(0, 20, 44, 1) 100%);
    padding: 10rem 0;
}

.contact-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

/* NEW STYLES FOR LABELS AND UPLOAD */
.form-section-label {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white, #fff);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.file-input-wrapper {
    grid-column: 1 / -1;
    text-align: left;
    margin-bottom: 1rem;
    width: 100%;
    min-width: 0;
}

.form-input-file {
    font-size: 1.1rem;
    color: var(--color-white, #fff);
    padding: 0.5rem 0;
    cursor: pointer;
    max-width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.4rem 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 1.2rem;
    color: var(--color-navy);
}

.form-textarea {
    grid-column: 1 / -1;
    min-height: 200px;
    resize: vertical;
}

.form-submit-wrapper {
    grid-column: 1 / -1;
    margin-top: 2.5rem;
}

.btn-submit {
    padding: 1.2rem 5rem;
    font-size: 1.3rem;
    font-weight: 700;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--color-red-hover);
}
