/* Profile Setup Modal Theme Styling */
.profile-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 27, 68, 0.25);
}

.profile-modal .modal-header {
    background: linear-gradient(135deg, #001b44 0%, #002d70 100%);
    color: #ffffff;
    padding: 24px 30px;
    border-bottom: none;
    position: relative;
}

.profile-modal .modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-modal .modal-title i {
    color: #00afa9;
    font-size: 24px;
}

.profile-modal .btn-close-custom {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-modal .btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.3);
}

.profile-modal .modal-body {
    padding: 30px;
    background-color: #f8fafc;
}

.profile-modal .form-label-custom {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 8px;
    display: block;
}

.profile-modal .form-control-custom {
    height: 50px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    padding: 0 16px;
    font-size: 14px;
    color: #0f172a;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.profile-modal .form-control-custom:focus {
    border-color: #00afa9;
    box-shadow: 0 0 0 4px rgba(0, 175, 169, 0.15);
    outline: none;
}

.profile-modal textarea.form-control-custom {
    height: auto;
    padding: 12px 16px;
}

/* Custom High-Contrast Card Checkboxes for Skills & Services */
.skill-card-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}

.skill-card-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.skill-card-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a !important; /* Dark text high contrast */
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.skill-card-checkbox:hover .skill-card-content {
    border-color: #00afa9;
    background-color: #f0fdfa;
}

.skill-card-checkbox input[type="checkbox"]:checked ~ .skill-card-content {
    background-color: #eaf8f7;
    border-color: #00afa9;
    color: #007c77 !important;
    box-shadow: 0 2px 8px rgba(0, 175, 169, 0.2);
}

.skill-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.skill-card-checkbox input[type="checkbox"]:checked ~ .skill-card-content .skill-check-icon {
    background-color: #00afa9;
    border-color: #00afa9;
    color: #ffffff;
}

/* Select2 Theme Customization */
.select2-container--default .select2-selection--multiple {
    min-height: 50px;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 4px 8px !important;
    background-color: #ffffff !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #00afa9 !important;
    box-shadow: 0 0 0 4px rgba(0, 175, 169, 0.15) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #eaf8f7 !important;
    border: 1px solid #00afa9 !important;
    color: #006864 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border-radius: 20px !important;
    padding: 4px 12px 4px 8px !important;
    margin-top: 4px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #00afa9 !important;
    margin-right: 6px !important;
    font-weight: bold !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #e11d48 !important;
}

.select2-dropdown {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    z-index: 99999 !important;
}

.select2-results__option {
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    color: #0f172a !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #00afa9 !important;
    color: #ffffff !important;
}

.profile-modal .modal-footer {
    padding: 20px 30px;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.btn-modal-submit {
    background-color: #00afa9;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-modal-submit:hover {
    background-color: #009691;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 175, 169, 0.3);
}

.btn-modal-back {
    background-color: #ffffff;
    color: #001b44;
    border: 1.5px solid #cbd5e1;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-modal-back:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
    color: #001b44;
}

/* Custom File Upload Dropzone */
.custom-file-dropzone {
    border: 2px dashed #99e2df;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.custom-file-dropzone:hover {
    border-color: #00afa9;
    background-color: #eaf8f7;
    box-shadow: 0 4px 14px rgba(0, 175, 169, 0.12);
}

.custom-file-dropzone .upload-icon-circle {
    width: 44px;
    height: 44px;
    background: #eaf8f7;
    color: #00afa9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.custom-file-dropzone:hover .upload-icon-circle {
    background: #00afa9;
    color: #ffffff;
}

.custom-file-dropzone .dropzone-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.custom-file-dropzone .dropzone-subtitle {
    font-size: 12px;
    color: #64748b;
}

.custom-file-dropzone.has-file {
    border-style: solid;
    border-color: #00afa9;
    background-color: #eaf8f7;
}

.custom-file-dropzone.has-file .upload-icon-circle {
    background: #10b981;
    color: #ffffff;
}

