/* Structural Styles for Join Our Network Form */
.join-network-container {
    padding: 80px 20px;
    background-color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333333;
}

.join-network-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.join-network-header {
    text-align: center;
    margin-bottom: 50px;
}

.join-network-eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.join-network-heading {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.join-network-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    max-width: 680px;
    margin: 0 auto;
}

/* Form Styles */
.join-network-form {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.form-step-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 35px;
}

.form-step-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section-heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px 0;
}

.form-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group-col {
    padding: 0 15px;
    margin-bottom: 25px;
    box-sizing: border-box;
}

.form-group-col.width-100 { width: 100%; }
.form-group-col.width-50 { width: 50%; }
.form-group-col.width-33 { width: 33.333%; }
.form-group-col.width-66 { width: 66.666%; }

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #444444;
}

.required-asterisk {
    margin-left: 3px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #D5D9DC;
    border-radius: 8px;
    font-size: 15px;
    color: #333333;
    background-color: #FAFAFA;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.form-input:focus {
    background-color: #FFFFFF;
    outline: none;
}

/* Custom Searchable Dropdown */
.searchable-select-container {
    position: relative;
    width: 100%;
}

.searchable-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.select-caret {
    font-size: 12px;
    color: #64748B;
    transition: transform 0.2s ease;
}

.searchable-select-container.open .select-caret {
    transform: rotate(180deg);
}

.searchable-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-height: 280px;
    display: flex;
    flex-direction: column;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #E2E8F0;
}

.select-search-icon {
    font-size: 14px;
    color: #94A3B8;
    margin-right: 8px;
}

.select-search-field {
    border: none !important;
    background: transparent !important;
    width: 100%;
    font-size: 14px;
    color: #334155;
    outline: none !important;
    padding: 0 !important;
}

.searchable-select-options {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    max-height: 220px;
}

.searchable-select-options li {
    padding: 10px 14px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.searchable-select-options li:hover {
    background-color: #F1F5F9;
}

.text-muted {
    color: #94A3B8;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

.option-item {
    display: flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 14px 18px;
    cursor: pointer;
    background-color: #FAFAFA;
    transition: all 0.2s ease;
    user-select: none;
}

.option-item:hover {
    border-color: #CBD5E1;
    background-color: #F8FAFC;
    transform: translateY(-1px);
}

.option-text {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

/* Custom Checks & Radios */
.option-check, .option-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #CBD5E1;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.option-check { border-radius: 4px; }
.option-radio { border-radius: 50%; }

.option-item.selected .option-check {
    background-size: contain;
}

.option-item.selected .option-check::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option-item.selected .option-radio::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.hidden-input {
    display: none !important;
}

/* CV Dropzone */
.cv-dropzone {
    border: 2px dashed #CBD5E1;
    background-color: #FAFAFA;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.cv-dropzone:hover, .cv-dropzone.dragover {
    border-color: #0B7A86;
    background-color: #0B7A860F;
}

.dropzone-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dropzone-icon {
    font-size: 36px;
    color: #64748B;
    margin-bottom: 12px;
}

.dropzone-title {
    font-weight: 600;
    font-size: 15px;
    color: #334155;
    margin-bottom: 6px;
}

.dropzone-subtitle {
    font-size: 12px;
    color: #64748B;
}

.hidden-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* File Preview */
.dropzone-file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F1F5F9;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 5px;
}

.preview-file-icon {
    font-size: 24px;
    color: #0B7A86;
}

.preview-details {
    flex: 1;
    text-align: left;
    margin-left: 12px;
}

.preview-filename {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
}

.preview-filesize {
    display: block;
    font-size: 12px;
    color: #64748B;
}

.remove-file-btn {
    font-size: 20px;
    color: #94A3B8;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.remove-file-btn:hover {
    color: #EF4444;
}

.upload-error-msg {
    color: #EF4444;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

/* Submit and Privacy area */
.form-action-section {
    margin-top: 40px;
    text-align: center;
}

.privacy-notice {
    font-size: 12px;
    line-height: 1.5;
    color: #64748B;
    margin-bottom: 24px;
}

.brand-primary-btn {
    border: none;
    color: #FFFFFF;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 122, 134, 0.15);
}

.brand-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 75, 60, 0.25);
}

.hp-hidden-field {
    display: none !important;
}

/* Response Message */
.form-response-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.form-response-message.success {
    background-color: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-response-message.error {
    background-color: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.form-final-cta {
    margin-top: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    border-top: 1px solid #F0F0F0;
    padding-top: 35px;
}

/* Animations Initialization */
.anim-init-2d2eaeaf [data-anim="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-init-2d2eaeaf [data-anim="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    .join-network-container {
        padding: 50px 15px;
    }
    .join-network-form {
        padding: 25px 20px;
    }
    .form-group-col.width-50, .form-group-col.width-33, .form-group-col.width-66 {
        width: 100%;
    }
    .join-network-heading {
        font-size: 32px;
    }
}
