/* ═══════════════════════════════════════════════════
   RevCreed Talent Manager — v2.3
   Playfair Display headings · Inter body
   #0D1B2A dark · #E8192C red · consistent across all pages
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─── */
:root {
    --rc-red:       #E8192C;
    --rc-red-d:     #c41225;
    --rc-dark:      #0D1B2A;
    --rc-dark2:     #1e3a5f;
    --rc-white:     #ffffff;
    --rc-grey:      #f8fafc;
    --rc-border:    #e2e8f0;
    --rc-text:      #1a202c;
    --rc-muted:     #64748b;
    --rc-green:     #22c55e;
    --rc-yellow:    #f59e0b;
    --rc-r:         10px;
    --rc-r-lg:      16px;
    --rc-shadow:    0 2px 16px rgba(13,27,42,0.08);
    --rc-shadow-lg: 0 6px 32px rgba(13,27,42,0.13);
    --f-head:       'Playfair Display', Georgia, serif;
    --f-body:       'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── Global scope ─── */
.rct-page-wrap,
.rct-auth-wrap,
.rct-card,
.rct-form,
.rct-dashboard {
    font-family: var(--f-body);
    box-sizing: border-box;
}
.rct-page-wrap *,
.rct-auth-wrap *,
.rct-card * {
    box-sizing: border-box;
}

/* ─── Page wrapper — prevents horizontal scroll ─── */
.rct-page-wrap {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ═══════════════════════════════════════════════════
   SHARED: NOTICES
═══════════════════════════════════════════════════ */
.rct-notice {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 16px; border-radius: var(--rc-r);
    margin-bottom: 18px; font-size: 14px;
    font-family: var(--f-body);
}
.rct-notice.rct-success { background:#f0fdf4; border:1.5px solid #86efac; color:#166534; }
.rct-notice.rct-error   { background:#fef2f2; border:1.5px solid #fca5a5; color:#991b1b; }
.rct-notice.rct-info    { background:#eff6ff; border:1.5px solid #93c5fd; color:#1e40af; }
.rct-notice ul { margin:0; padding-left:18px; }

/* ═══════════════════════════════════════════════════
   SHARED: BUTTONS
═══════════════════════════════════════════════════ */
.rct-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; border-radius: 8px;
    font-size: 14px; font-weight: 600; font-family: var(--f-body);
    cursor: pointer; text-decoration: none;
    border: 2px solid transparent;
    transition: background .18s, border-color .18s, box-shadow .18s, transform .15s;
    white-space: nowrap; line-height: 1.3;
    -webkit-appearance: none; appearance: none;
}
.rct-btn svg { flex-shrink:0; }

.rct-btn-primary {
    background: var(--rc-red); color: #fff; border-color: var(--rc-red);
}
.rct-btn-primary:hover, .rct-btn-primary:focus {
    background: var(--rc-red-d); border-color: var(--rc-red-d); color: #fff;
    box-shadow: 0 4px 14px rgba(232,25,44,0.28);
}
.rct-btn-outline {
    background: transparent; color: var(--rc-dark); border-color: var(--rc-border);
}
.rct-btn-outline:hover { border-color: var(--rc-dark); background: #f8fafc; color: var(--rc-dark); }
.rct-btn-ghost {
    background: transparent; color: var(--rc-muted); border-color: transparent;
}
.rct-btn-ghost:hover { color: var(--rc-dark); background: #f1f5f9; }
.rct-btn-danger {
    background: transparent; color: #dc2626; border-color: #fca5a5;
}
.rct-btn-danger:hover { background: #fef2f2; }
.rct-btn-sm { padding: 7px 14px; font-size: 13px; }

/* ═══════════════════════════════════════════════════
   SHARED: CARD
═══════════════════════════════════════════════════ */
.rct-card {
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-r-lg);
    box-shadow: var(--rc-shadow);
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   AUTH PAGES (LOGIN & REGISTER)
   — no horizontal overflow, clean layout
═══════════════════════════════════════════════════ */
.rct-auth-wrap {
    display: flex;
    width: 100%;
    max-width: 1040px;
    min-height: 560px;
    margin: 0 auto;
    border-radius: var(--rc-r-lg);
    box-shadow: var(--rc-shadow-lg);
    border: 1px solid var(--rc-border);
    overflow: hidden;
}

/* ── Card (white form side) ── */
.rct-auth-card {
    flex: 1; min-width: 0;
    background: #fff;
    padding: 40px 44px;
    display: flex; flex-direction: column; justify-content: center;
}

/* ── Logo ── */
.rct-auth-logo { margin-bottom: 22px; }
.rct-logo-rev   { font-family: var(--f-head); font-size: 24px; font-weight: 700; color: var(--rc-dark); }
.rct-logo-creed { font-family: var(--f-head); font-size: 24px; font-weight: 700; color: var(--rc-red); }
.rct-auth-tagline { font-size: 12px; color: var(--rc-muted); margin: 3px 0 0; font-style: italic; }

/* ── Auth header ── */
.rct-auth-header { margin-bottom: 22px; }
.rct-auth-header h1 {
    font-family: var(--f-head); font-size: 26px; font-weight: 700;
    color: var(--rc-dark); margin: 0 0 6px; line-height: 1.2;
}
.rct-auth-header p { font-size: 14px; color: var(--rc-muted); margin: 0; line-height: 1.6; }

/* ── Auth notices ── */
.rct-auth-notice {
    display: flex; align-items: flex-start; gap: 8px;
    padding: 11px 14px; border-radius: 8px; font-size: 13px;
    margin-bottom: 18px; line-height: 1.5;
}
.rct-auth-notice svg { flex-shrink:0; margin-top:1px; }
.rct-auth-error   { background:#fef2f2; border:1px solid #fca5a5; color:#991b1b; }
.rct-auth-success { background:#f0fdf4; border:1px solid #86efac; color:#166534; }

/* ── Form layout ── */
.rct-auth-form { display: flex; flex-direction: column; }
.rct-auth-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── Auth field ── */
.rct-auth-field { margin-bottom: 16px; }
.rct-auth-field > label {
    display: flex !important; justify-content: space-between; align-items: center;
    font-size: 13px !important; font-weight: 600 !important;
    color: var(--rc-text) !important;
    margin-bottom: 7px !important;
    /* override theme resets */
    padding: 0 !important; background: none !important; border: none !important;
    cursor: default !important; float: none !important; width: auto !important;
}

/* ── Input wrapper ── */
.rct-input-wrap {
    position: relative;
    display: flex; align-items: stretch;
}
.rct-input-icon {
    position: absolute;
    left: 12px; top: 50%; transform: translateY(-50%);
    color: #b0bac4; pointer-events: none; z-index: 1;
    width: 18px; height: 18px; display: block;
}
.rct-input-wrap input[type="text"],
.rct-input-wrap input[type="email"],
.rct-input-wrap input[type="password"] {
    width: 100%;
    /* left padding clears icon; right padding clears eye toggle */
    padding: 11px 44px 11px 42px;
    border: 1.5px solid var(--rc-border);
    border-radius: 8px; font-size: 14px;
    color: var(--rc-text); background: #fff;
    font-family: var(--f-body); outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none; appearance: none; margin: 0;
}
.rct-input-wrap input:focus {
    border-color: var(--rc-red);
    box-shadow: 0 0 0 3px rgba(232,25,44,0.10);
}
.rct-input-wrap input::placeholder { color: #c8d4de; }

/* ── Password eye toggle ── */
.rct-toggle-pw {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--rc-muted); padding: 0; z-index: 2;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
}
.rct-toggle-pw:hover { color: var(--rc-dark); }
.rct-toggle-pw svg { display: block; width: 18px; height: 18px; }

/* ── Forgot link ── */
.rct-forgot-link {
    font-size: 12px; font-weight: 400 !important;
    color: var(--rc-red) !important; text-decoration: none; cursor: pointer !important;
}
.rct-forgot-link:hover { text-decoration: underline; }

/* ── Password strength ── */
.rct-pw-strength-wrap {
    margin-top: 6px; height: 4px; background: #f1f5f9;
    border-radius: 4px; overflow: hidden;
}
.rct-pw-strength { height: 100%; border-radius: 4px; width: 0; transition: width .4s, background .4s; }

/* ── Checkbox ── */
.rct-auth-remember, .rct-auth-terms { margin-bottom: 18px; }
.rct-checkbox-label {
    display: flex !important; align-items: center !important; gap: 10px !important;
    cursor: pointer !important; font-size: 13px !important;
    font-weight: 400 !important; color: var(--rc-muted) !important;
    margin: 0 !important; padding: 0 !important; background: none !important;
    border: none !important; float: none !important; width: auto !important; line-height: 1.4 !important;
}
.rct-checkbox-label input[type="checkbox"] {
    position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.rct-checkmark {
    width: 18px; height: 18px; min-width: 18px;
    border: 2px solid var(--rc-border); border-radius: 4px;
    background: #fff; display: flex; align-items: center; justify-content: center;
    transition: background .15s, border-color .15s; flex-shrink: 0;
}
.rct-checkbox-label input:checked ~ .rct-checkmark {
    background: var(--rc-red); border-color: var(--rc-red);
}
.rct-checkbox-label input:checked ~ .rct-checkmark::after {
    content: ''; width: 5px; height: 9px;
    border: 2px solid #fff; border-top: none; border-left: none;
    transform: rotate(45deg) translate(-1px,-1px); display: block;
}
.rct-auth-link { color: var(--rc-red) !important; text-decoration: none; font-weight: 600; }
.rct-auth-link:hover { text-decoration: underline; }

/* ── Submit button ── */
.rct-auth-submit {
    width: 100%; padding: 13px 24px;
    background: var(--rc-red); color: #fff;
    border: none; border-radius: 8px;
    font-size: 15px; font-weight: 700;
    cursor: pointer; font-family: var(--f-body);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .2s, box-shadow .2s;
    margin-bottom: 6px; line-height: 1;
    -webkit-appearance: none; appearance: none;
}
.rct-auth-submit:hover {
    background: var(--rc-red-d);
    box-shadow: 0 4px 16px rgba(232,25,44,0.28);
}
.rct-auth-submit:disabled { opacity: .65; cursor: not-allowed; }
.rct-auth-small { text-align: center; font-size: 11px; color: #c0cad4; margin: 4px 0 0; }

/* ── Divider ── */
.rct-auth-divider {
    display: flex; align-items: center; gap: 10px;
    margin: 18px 0 14px; color: #c0cad4; font-size: 12px;
}
.rct-auth-divider::before, .rct-auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--rc-border);
}

/* ── Alt button ── */
.rct-auth-alt-btn {
    display: block; width: 100%; padding: 12px 24px;
    text-align: center; background: var(--rc-dark); color: #fff;
    border: 2px solid var(--rc-dark); border-radius: 8px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: background .18s, border-color .18s;
    font-family: var(--f-body);
}
.rct-auth-alt-btn:hover { background: var(--rc-dark2); border-color: var(--rc-dark2); color: #fff; }
.rct-auth-alt-outline {
    background: transparent; color: var(--rc-dark); border-color: var(--rc-border);
}
.rct-auth-alt-outline:hover { border-color: var(--rc-dark); background: #f8fafc; color: var(--rc-dark); }

/* ── Sidebar (dark) ── */
.rct-auth-sidebar {
    width: 340px; flex-shrink: 0;
    background: var(--rc-dark);
    padding: 40px 32px;
    display: flex; align-items: center;
}
.rct-auth-sidebar-left { order: -1; }
.rct-auth-sidebar-content { width: 100%; }

.rct-auth-sidebar-badge {
    display: inline-block;
    background: rgba(232,25,44,.15); color: var(--rc-red);
    font-size: 10px; font-weight: 700; letter-spacing: .10em;
    text-transform: uppercase; padding: 4px 12px;
    border-radius: 20px; border: 1px solid rgba(232,25,44,.25);
    margin-bottom: 16px;
}
.rct-auth-sidebar h2 {
    font-family: var(--f-head); font-size: 22px; font-weight: 700;
    color: #fff; line-height: 1.3; margin: 0 0 12px;
}
.rct-auth-sidebar-content > p {
    font-size: 13px; color: #94a3b8; line-height: 1.7; margin: 0 0 20px;
}
.rct-auth-benefits { list-style: none; padding: 0; margin: 0 0 22px; }
.rct-auth-benefits li {
    display: flex; align-items: center; gap: 9px;
    font-size: 13px; color: #e2e8f0;
    padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.rct-auth-benefits li svg { color: var(--rc-red); flex-shrink: 0; }
.rct-auth-testimonial {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px; padding: 14px; margin-top: 18px;
}
.rct-auth-testimonial p { font-size: 13px; color: #e2e8f0; font-style: italic; margin: 0 0 6px; line-height: 1.6; }
.rct-auth-testimonial span { font-size: 11px; color: #64748b; font-weight: 600; }

/* Register steps */
.rct-auth-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.rct-auth-step { display: flex; gap: 12px; align-items: flex-start; }
.rct-step-num {
    width: 26px; height: 26px; min-width: 26px;
    background: var(--rc-red); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; margin-top: 1px;
}
.rct-auth-step strong { display: block; font-size: 13px; color: #e2e8f0; font-weight: 600; margin-bottom: 2px; }
.rct-auth-step p { font-size: 12px; color: #64748b; margin: 0; }
.rct-auth-logos-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #64748b; margin-bottom: 8px; }
.rct-auth-trust { display: flex; flex-wrap: wrap; gap: 6px; }
.rct-auth-trust span {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
    color: #94a3b8; padding: 3px 9px; border-radius: 6px; font-size: 11px;
}

/* ═══════════════════════════════════════════════════
   PROFILE FORM (submit / edit)
═══════════════════════════════════════════════════ */
.rct-form {
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-r-lg);
    box-shadow: var(--rc-shadow);
    overflow: visible; /* prevent inner content clipping */
}

/* ── Tabs ── */
.rct-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 2px solid var(--rc-border);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}
.rct-tabs::-webkit-scrollbar { display: none; }

.rct-tab {
    display: flex; align-items: center; gap: 6px;
    padding: 14px 18px;
    background: transparent; border: none;
    font-size: 13px; font-weight: 600;
    color: var(--rc-muted); cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .18s, border-color .18s, background .18s;
    font-family: var(--f-body);
}
.rct-tab:hover { color: var(--rc-text); background: rgba(255,255,255,.6); }
.rct-tab.active { color: var(--rc-red); border-bottom-color: var(--rc-red); background: #fff; }
.rct-tab svg { flex-shrink: 0; }

/* ── Form progress bar ── */
.rct-form-progress {
    height: 3px; background: #f1f5f9; margin: 0;
}
.rct-form-progress-fill {
    height: 100%; background: var(--rc-red);
    transition: width .35s ease;
}

/* ── Panel ── */
.rct-panel { display: none; padding: 28px 30px; }
.rct-panel.active { display: block; }

.rct-panel-header { margin-bottom: 22px; }
.rct-panel-header h3 {
    font-family: var(--f-head); font-size: 20px; font-weight: 700;
    color: var(--rc-dark); margin: 0 0 5px;
}
.rct-panel-header p { font-size: 13px; color: var(--rc-muted); margin: 0; }

/* ── Fields grid ── */
.rct-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rct-field { display: flex; flex-direction: column; gap: 5px; }
.rct-field-full { grid-column: 1 / -1; }

.rct-field label {
    font-size: 13px; font-weight: 600; color: var(--rc-text);
}
.rct-req { color: var(--rc-red); }
.rct-field-hint { font-size: 12px; color: var(--rc-muted); margin: 2px 0 0; }

.rct-field input[type="text"],
.rct-field input[type="number"],
.rct-field input[type="url"],
.rct-field select,
.rct-field textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--rc-border); border-radius: 8px;
    font-size: 14px; color: var(--rc-text); background: #fff;
    font-family: var(--f-body); outline: none;
    transition: border-color .18s, box-shadow .18s;
    -webkit-appearance: none; appearance: none; margin: 0;
    width: 100%;
}
.rct-field input:focus,
.rct-field select:focus,
.rct-field textarea:focus {
    border-color: var(--rc-red);
    box-shadow: 0 0 0 3px rgba(232,25,44,.08);
}
.rct-field textarea { resize: vertical; min-height: 80px; }

/* ── Field with icon (URL fields) ── */
.rct-input-icon-wrap { position: relative; }
.rct-field-icon {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: #b0bac4; pointer-events: none; z-index: 1;
}
.rct-input-icon-wrap input { padding-left: 38px; }

/* ── File inputs ── */
.rct-file-input {
    padding: 8px 12px;
    border: 1.5px dashed var(--rc-border); border-radius: 8px;
    font-size: 13px; color: var(--rc-muted);
    background: #fafafa; cursor: pointer; width: 100%;
    font-family: var(--f-body);
}
.rct-file-input:hover { border-color: var(--rc-red); }
.rct-current-photo {
    width: 68px; height: 68px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--rc-red); margin-bottom: 8px;
    display: block;
}
.rct-current-file {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--rc-muted);
    background: #f8fafc; border: 1px solid var(--rc-border);
    padding: 8px 12px; border-radius: 7px; margin-bottom: 8px;
}
.rct-current-file a { color: var(--rc-red); font-weight: 600; text-decoration: none; }
.rct-current-file a:hover { text-decoration: underline; }

/* ── Tags preview ── */
.rct-tags-preview {
    display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; min-height: 0;
}
.rct-tag {
    background: #fef2f2; color: var(--rc-red);
    padding: 3px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
}

/* ── Form footer ── */
.rct-form-footer {
    display: flex; align-items: center; gap: 10px;
    padding: 18px 30px;
    border-top: 1px solid var(--rc-border);
    background: #f8fafc;
}
.rct-form-footer .rct-btn-primary { margin-left: auto; }

/* ═══════════════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════════════ */

/* ── Dashboard header ── */
.rct-dash-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.rct-dash-header-left { display: flex; align-items: center; gap: 14px; }
.rct-dash-avatar-wrap img,
.rct-dash-avatar-placeholder {
    width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--rc-red); flex-shrink: 0;
}
.rct-dash-avatar-placeholder {
    background: var(--rc-dark); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; font-family: var(--f-head);
    border: 2px solid var(--rc-red);
}
.rct-dash-header h1 {
    font-family: var(--f-head); font-size: 22px; font-weight: 700;
    color: var(--rc-dark); margin: 0 0 3px;
}
.rct-dash-header p { font-size: 13px; color: var(--rc-muted); margin: 0; }

/* ── Status card ── */
.rct-status-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px; margin-bottom: 16px;
    border-radius: var(--rc-r-lg); border: 1.5px solid;
}
.rct-status-card.status-pending  { background:#fffbeb; border-color:#f59e0b; }
.rct-status-card.status-approved { background:#f0fdf4; border-color:#22c55e; }
.rct-status-card.status-rejected { background:#fef2f2; border-color:#ef4444; }
.rct-status-card.status-hold     { background:#f5f3ff; border-color:#8b5cf6; }
.rct-status-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.rct-status-body strong {
    font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--rc-dark);
    display: block; margin-bottom: 3px;
}
.rct-status-body p { font-size: 13px; color: var(--rc-muted); margin: 0; }
.rct-rejection-note {
    margin-top: 8px; padding: 8px 12px; background: rgba(239,68,68,.08);
    border-radius: 6px; font-size: 12px; color: #991b1b;
}

/* ── Stats row ── */
.rct-stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-bottom: 16px;
}
.rct-stat-card {
    background: #fff; border: 1px solid var(--rc-border);
    border-radius: var(--rc-r-lg); padding: 16px 20px;
    text-align: center; box-shadow: var(--rc-shadow);
}
.rct-stat-num {
    font-family: var(--f-head); font-size: 28px; font-weight: 700;
    color: var(--rc-dark); line-height: 1; display: block;
}
.rct-stat-label { font-size: 12px; color: var(--rc-muted); margin-top: 4px; display: block; }
.rct-stat-badge {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    font-size: 13px; font-weight: 700; line-height: 1.4;
}
.avail-green  { background:#f0fdf4; color:#166534; border:1px solid #86efac; }
.avail-yellow { background:#fffbeb; color:#92400e; border:1px solid #fde68a; }
.avail-red    { background:#fef2f2; color:#991b1b; border:1px solid #fca5a5; }

/* ── Profile overview card ── */
.rct-profile-overview {
    padding: 22px; margin-bottom: 16px;
    display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap;
}
.rct-profile-overview-left { display: flex; gap: 14px; align-items: flex-start; flex: 1; min-width: 200px; }
.rct-profile-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--rc-red); flex-shrink: 0;
}
.rct-profile-avatar-placeholder {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--rc-dark); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700; font-family: var(--f-head);
    border: 3px solid var(--rc-red); flex-shrink: 0;
}
.rct-profile-overview-info h3 {
    font-family: var(--f-head); font-size: 18px; font-weight: 700;
    color: var(--rc-dark); margin: 0 0 3px;
}
.rct-overview-role { font-size: 13px; color: var(--rc-red); font-weight: 600; margin: 0 0 4px; }
.rct-overview-loc {
    display: flex; align-items: center; gap: 4px;
    font-size: 12px; color: var(--rc-muted); margin: 0;
}
.rct-profile-overview-actions {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}

/* ── Completeness card ── */
.rct-completeness-card { padding: 22px; margin-bottom: 16px; }
.rct-completeness-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 12px; margin-bottom: 12px;
}
.rct-completeness-top h4 {
    font-family: var(--f-head); font-size: 15px; font-weight: 700;
    color: var(--rc-dark); margin: 0 0 3px;
}
.rct-completeness-top p { font-size: 12px; color: var(--rc-muted); margin: 0; }
.rct-pct-badge {
    font-family: var(--f-head); font-size: 22px; font-weight: 700;
    color: var(--rc-red); white-space: nowrap; flex-shrink: 0;
}
.rct-pct-badge.pct-full { color: #16a34a; }
.rct-progress-track {
    height: 7px; background: #f1f5f9; border-radius: 7px;
    overflow: hidden; margin-bottom: 14px;
}
.rct-progress-bar {
    height: 100%; background: linear-gradient(90deg, var(--rc-red), #ff4d5e);
    border-radius: 7px; transition: width .8s ease;
}
.rct-check-items { display: flex; flex-wrap: wrap; gap: 7px; }
.rct-check-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: 500;
}
.rct-check-item.done    { background:#f0fdf4; color:#166534; }
.rct-check-item.done svg { color:#16a34a; }
.rct-check-item.missing { background:#f8fafc; color:var(--rc-muted); }

/* ── Empty state ── */
.rct-empty-state {
    text-align: center; padding: 52px 24px;
}
.rct-empty-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: #f1f5f9; color: var(--rc-muted);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.rct-empty-state h3 {
    font-family: var(--f-head); font-size: 22px; font-weight: 700;
    color: var(--rc-dark); margin: 0 0 8px;
}
.rct-empty-state p { font-size: 14px; color: var(--rc-muted); margin: 0 0 22px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 860px) {
    /* Auth */
    .rct-auth-wrap { flex-direction: column; }
    .rct-auth-sidebar { width: 100%; order: 0; padding: 28px 24px; }
    .rct-auth-sidebar-left { order: -1; }
    .rct-auth-card { padding: 28px 22px; }
    .rct-auth-row { grid-template-columns: 1fr; }
    /* Form */
    .rct-fields-grid { grid-template-columns: 1fr; }
    .rct-field-full { grid-column: 1; }
    .rct-panel { padding: 22px 18px; }
    .rct-form-footer { padding: 14px 18px; }
    /* Dashboard */
    .rct-stats-row { grid-template-columns: 1fr 1fr; }
    .rct-profile-overview { flex-direction: column; }
}
@media (max-width: 520px) {
    .rct-auth-sidebar { display: none; }
    .rct-auth-card { padding: 24px 16px; }
    .rct-auth-header h1 { font-size: 22px; }
    .rct-tab { padding: 10px 12px; font-size: 12px; }
    .rct-stats-row { grid-template-columns: 1fr; }
    .rct-dash-header { flex-direction: column; align-items: flex-start; }
    .rct-profile-overview-actions { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   v2.3 — PROFILE FORM: AUTH-STYLE LAYOUT
   .rct-form-wrap extends .rct-auth-wrap
═══════════════════════════════════════════════════ */

/* Make the form wrapper match auth-wrap width */
.rct-form-wrap {
    max-width: 1100px;
    align-items: stretch;
    min-height: 600px;
}

/* Sidebar on the LEFT for submit/edit forms */
.rct-form-wrap .rct-auth-sidebar {
    order: -1;
    width: 300px;
    align-items: flex-start;
}
.rct-form-wrap .rct-auth-sidebar-content {
    width: 100%;
}

/* Form card: white panel */
.rct-form-card {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 36px 0;
    overflow: visible;
}

/* Inner form fills the card */
.rct-profile-form-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Tabs sit right below the header inside the card */
.rct-form-card .rct-tabs {
    margin: 0 -36px;
    border-radius: 0;
}

/* Panel padding accounts for card padding */
.rct-form-card .rct-panel {
    padding: 24px 0;
}

/* Input fields in form panels — match auth input style */
.rct-input-wrap--field {
    position: relative;
    display: flex;
    align-items: stretch;
}
.rct-input-wrap--field .rct-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0bac4;
    pointer-events: none;
    z-index: 1;
}
.rct-input-wrap--field input {
    width: 100%;
    padding: 11px 14px 11px 40px !important;
    border: 1.5px solid var(--rc-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--rc-text);
    background: #fff;
    font-family: var(--f-body);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.rct-input-wrap--field input:focus {
    border-color: var(--rc-red);
    box-shadow: 0 0 0 3px rgba(232,25,44,0.10);
}
.rct-input-wrap--field input::placeholder { color: #c8d4de; }

/* Selects — styled like auth inputs */
.rct-select-styled {
    width: 100%;
    padding: 11px 14px !important;
    border: 1.5px solid var(--rc-border) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: var(--rc-text) !important;
    background: #fff !important;
    font-family: var(--f-body) !important;
    outline: none !important;
    transition: border-color .2s, box-shadow .2s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}
.rct-select-styled:focus {
    border-color: var(--rc-red) !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,0.10) !important;
}

/* Textareas in profile form */
.rct-form-card .rct-field textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--rc-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--rc-text);
    background: #fff;
    font-family: var(--f-body);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    width: 100%;
    resize: vertical;
    min-height: 80px;
}
.rct-form-card .rct-field textarea:focus {
    border-color: var(--rc-red);
    box-shadow: 0 0 0 3px rgba(232,25,44,0.10);
}
.rct-form-card .rct-field textarea::placeholder { color: #c8d4de; }

/* Form footer */
.rct-form-card .rct-form-footer {
    margin: 0 -36px;
    padding: 18px 36px;
    border-top: 1px solid var(--rc-border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rct-form-card .rct-form-footer .rct-btn-primary { margin-left: auto; }

/* Auth logo + header inside form card */
.rct-form-card .rct-auth-logo { margin-bottom: 14px; }
.rct-form-card .rct-auth-header { margin-bottom: 0; }

/* Panel header */
.rct-form-card .rct-panel-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rc-border);
}
.rct-form-card .rct-panel-header h3 {
    font-family: var(--f-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--rc-dark);
    margin: 0 0 4px;
}
.rct-form-card .rct-panel-header p {
    font-size: 13px;
    color: var(--rc-muted);
    margin: 0;
}

/* Progress bar */
.rct-form-card .rct-form-progress {
    margin: 0 -36px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .rct-form-wrap {
        flex-direction: column;
    }
    .rct-form-wrap .rct-auth-sidebar {
        width: 100%;
        order: 0;
        padding: 24px 22px;
    }
    .rct-form-card {
        padding: 24px 22px 0;
    }
    .rct-form-card .rct-tabs {
        margin: 0 -22px;
    }
    .rct-form-card .rct-form-progress {
        margin: 0 -22px;
    }
    .rct-form-card .rct-form-footer {
        margin: 0 -22px;
        padding: 14px 22px;
    }
}
@media (max-width: 480px) {
    .rct-form-card {
        padding: 20px 16px 0;
    }
    .rct-form-card .rct-tabs {
        margin: 0 -16px;
    }
    .rct-form-card .rct-form-progress {
        margin: 0 -16px;
    }
    .rct-form-card .rct-form-footer {
        margin: 0 -16px;
        padding: 14px 16px;
    }
}

/* ═══════════════════════════════════════════════════
   ELEMENTOR / THEME OVERRIDE LAYER
   High-specificity rules to beat Elementor's defaults
   on all plugin pages: edit-profile, submit-profile,
   my-dashboard, talent-login, talent-register
═══════════════════════════════════════════════════ */

/* ── Reset Elementor's button normalisation on our tabs ── */
.elementor-widget-wrap .rct-tabs,
.elementor .rct-tabs,
.e-con .rct-tabs,
body .rct-tabs {
    display: flex !important;
    background: #f1f5f9 !important;
    border-bottom: 2px solid #e2e8f0 !important;
    border-radius: 0 !important;
    overflow-x: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    box-shadow: none !important;
    list-style: none !important;
}

/* ── Individual tab buttons — full reset then re-apply ── */
body .rct-tab,
.elementor-widget-wrap .rct-tab,
.elementor .rct-tab,
.e-con .rct-tab,
.rct-auth-wrap .rct-tab,
.rct-form-wrap .rct-tab {
    /* Reset ALL Elementor/WP button styles */
    all: unset !important;
    /* Re-apply our styles */
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 13px 20px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    margin-bottom: -2px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: color .18s, border-color .18s, background .18s !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    border-radius: 0 !important;
    outline: none !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

body .rct-tab:hover,
.elementor .rct-tab:hover,
body .rct-tab:focus,
.elementor .rct-tab:focus {
    color: #1a202c !important;
    background: rgba(255,255,255,0.7) !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

body .rct-tab.active,
.elementor .rct-tab.active,
.rct-form-wrap .rct-tab.active,
.rct-auth-wrap .rct-tab.active {
    color: #E8192C !important;
    background: #ffffff !important;
    border-bottom: 3px solid #E8192C !important;
    font-weight: 700 !important;
}

body .rct-tab svg,
.elementor .rct-tab svg {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

/* ── Panels: ensure only active shows ── */
body .rct-panel,
.elementor .rct-panel {
    display: none !important;
}
body .rct-panel.active,
.elementor .rct-panel.active {
    display: block !important;
}

/* ── Kill Elementor's input/select overrides inside our forms ── */
body .rct-auth-wrap input[type="text"],
body .rct-auth-wrap input[type="email"],
body .rct-auth-wrap input[type="password"],
body .rct-auth-wrap input[type="number"],
body .rct-auth-wrap input[type="url"],
body .rct-auth-wrap select,
body .rct-auth-wrap textarea,
body .rct-form-wrap input[type="text"],
body .rct-form-wrap input[type="email"],
body .rct-form-wrap input[type="number"],
body .rct-form-wrap input[type="url"],
body .rct-form-wrap select,
body .rct-form-wrap textarea,
body .rct-dashboard input[type="text"],
body .rct-dashboard select {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 14px !important;
    color: #1a202c !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 10px 40px !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    transition: border-color .2s, box-shadow .2s !important;
}

/* Input with icon needs left padding */
body .rct-input-wrap--field input,
body .rct-input-wrap input[type="text"],
body .rct-input-wrap input[type="email"],
body .rct-input-wrap input[type="password"],
body .rct-input-wrap input[type="number"] {
    padding: 11px 14px 11px 40px !important;
}

body .rct-auth-wrap input:focus,
body .rct-form-wrap input:focus,
body .rct-auth-wrap select:focus,
body .rct-form-wrap select:focus,
body .rct-auth-wrap textarea:focus,
body .rct-form-wrap textarea:focus {
    border-color: #E8192C !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,0.10) !important;
    outline: none !important;
}

/* Styled selects (custom chevron) */
body .rct-select-styled,
body .rct-form-wrap .rct-select-styled,
.elementor .rct-select-styled {
    padding: 11px 36px 11px 14px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
}

/* ── Kill Elementor label overrides ── */
body .rct-auth-wrap label,
body .rct-form-wrap label,
body .rct-field label,
body .rct-auth-field label,
.elementor .rct-field label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a202c !important;
    display: block !important;
    margin-bottom: 6px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    float: none !important;
    width: auto !important;
    cursor: default !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* ── Primary buttons — beat Elementor ── */
body .rct-btn-primary,
.elementor .rct-btn-primary,
body .rct-auth-submit,
.elementor .rct-auth-submit {
    background: #E8192C !important;
    border-color: #E8192C !important;
    color: #ffffff !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background .18s, box-shadow .18s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
body .rct-btn-primary:hover,
.elementor .rct-btn-primary:hover,
body .rct-auth-submit:hover,
.elementor .rct-auth-submit:hover {
    background: #c41225 !important;
    border-color: #c41225 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(232,25,44,0.28) !important;
    text-decoration: none !important;
}

/* ── Outline / ghost buttons ── */
body .rct-btn-outline,
.elementor .rct-btn-outline {
    background: transparent !important;
    border: 2px solid #e2e8f0 !important;
    color: #0D1B2A !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}
body .rct-btn-outline:hover,
.elementor .rct-btn-outline:hover {
    border-color: #0D1B2A !important;
    background: #f8fafc !important;
    color: #0D1B2A !important;
    text-decoration: none !important;
}

/* ── Sidebar dark background ── */
body .rct-auth-sidebar,
.elementor .rct-auth-sidebar {
    background: #0D1B2A !important;
    color: #e2e8f0 !important;
}
body .rct-auth-sidebar h2,
.elementor .rct-auth-sidebar h2 {
    color: #ffffff !important;
}
body .rct-auth-sidebar p,
.elementor .rct-auth-sidebar p {
    color: #94a3b8 !important;
}

/* ── Auth card white side ── */
body .rct-auth-card,
body .rct-form-card,
.elementor .rct-auth-card,
.elementor .rct-form-card {
    background: #ffffff !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* ── Auth wrap container ── */
body .rct-auth-wrap,
.elementor .rct-auth-wrap {
    background: transparent !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* ── Form progress bar ── */
body .rct-form-progress,
.elementor .rct-form-progress {
    height: 3px !important;
    background: #f1f5f9 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
body .rct-form-progress-fill,
.elementor .rct-form-progress-fill {
    height: 100% !important;
    background: #E8192C !important;
    transition: width .35s ease !important;
}

/* ── Form footer ── */
body .rct-form-footer,
.elementor .rct-form-footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
    padding: 18px 30px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
body .rct-form-card .rct-form-footer {
    margin: 0 -36px !important;
    padding: 18px 36px !important;
}

/* ── Panel heading ── */
body .rct-panel-header h3,
.elementor .rct-panel-header h3,
body .rct-form-card .rct-panel-header h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0D1B2A !important;
    margin: 0 0 5px !important;
    line-height: 1.3 !important;
}
body .rct-panel-header p,
.elementor .rct-panel-header p {
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
}

/* ── Fields grid layout ── */
body .rct-fields-grid,
.elementor .rct-fields-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}
body .rct-field-full,
.elementor .rct-field-full {
    grid-column: 1 / -1 !important;
}
body .rct-field,
.elementor .rct-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

/* ── Step numbers in sidebar ── */
body .rct-step-num,
.elementor .rct-step-num {
    background: #E8192C !important;
    color: #ffffff !important;
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    flex-shrink: 0 !important;
}

/* ── Badge in sidebar ── */
body .rct-auth-sidebar-badge,
.elementor .rct-auth-sidebar-badge {
    display: inline-block !important;
    background: rgba(232,25,44,.15) !important;
    color: #E8192C !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .10em !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(232,25,44,.25) !important;
    margin-bottom: 16px !important;
}

/* ── Notice strips ── */
body .rct-notice,
.elementor .rct-notice {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 13px 16px !important;
    border-radius: 10px !important;
    margin-bottom: 18px !important;
    font-size: 14px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}
body .rct-notice.rct-success { background: #f0fdf4 !important; border: 1.5px solid #86efac !important; color: #166534 !important; }
body .rct-notice.rct-error   { background: #fef2f2 !important; border: 1.5px solid #fca5a5 !important; color: #991b1b !important; }
body .rct-notice.rct-info    { background: #eff6ff !important; border: 1.5px solid #93c5fd !important; color: #1e40af !important; }

/* ── Dashboard card shells ── */
body .rct-card,
.elementor .rct-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(13,27,42,0.08) !important;
    overflow: hidden !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* ── Stat cards ── */
body .rct-stat-card,
.elementor .rct-stat-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    text-align: center !important;
    box-shadow: 0 2px 16px rgba(13,27,42,0.08) !important;
}
body .rct-stat-num,
.elementor .rct-stat-num {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #0D1B2A !important;
    line-height: 1 !important;
    display: block !important;
}
body .rct-stat-label,
.elementor .rct-stat-label {
    font-size: 12px !important;
    color: #64748b !important;
    margin-top: 4px !important;
    display: block !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* ── Dashboard header headings ── */
body .rct-dash-header h1,
.elementor .rct-dash-header h1 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0D1B2A !important;
    margin: 0 0 3px !important;
}

/* ── Auth logo ── */
body .rct-logo-rev,
.elementor .rct-logo-rev {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #0D1B2A !important;
    text-decoration: none !important;
}
body .rct-logo-creed,
.elementor .rct-logo-creed {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #E8192C !important;
    text-decoration: none !important;
}
body .rct-auth-tagline,
.elementor .rct-auth-tagline {
    font-size: 12px !important;
    color: #64748b !important;
    margin: 3px 0 0 !important;
    font-style: italic !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* ── Auth header titles ── */
body .rct-auth-header h1,
.elementor .rct-auth-header h1,
body .rct-form-card .rct-auth-header h1 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #0D1B2A !important;
    margin: 0 0 6px !important;
    line-height: 1.2 !important;
}
body .rct-auth-header p,
.elementor .rct-auth-header p {
    font-size: 14px !important;
    color: #64748b !important;
    margin: 0 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* ── Tag pills ── */
body .rct-tag,
.elementor .rct-tag {
    background: #fef2f2 !important;
    color: #E8192C !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    display: inline-block !important;
}

/* ── Checklist items (dashboard completeness) ── */
body .rct-check-item.done    { background: #f0fdf4 !important; color: #166534 !important; }
body .rct-check-item.missing { background: #f8fafc !important; color: #64748b !important; }
body .rct-check-item.done svg { color: #16a34a !important; }

/* ── Progress bar in completeness card ── */
body .rct-progress-track,
.elementor .rct-progress-track {
    height: 7px !important;
    background: #f1f5f9 !important;
    border-radius: 7px !important;
    overflow: hidden !important;
}
body .rct-progress-bar,
.elementor .rct-progress-bar {
    height: 100% !important;
    background: linear-gradient(90deg, #E8192C, #ff4d5e) !important;
    border-radius: 7px !important;
}

/* ── File inputs ── */
body .rct-file-input,
.elementor .rct-file-input {
    padding: 8px 12px !important;
    border: 1.5px dashed #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    color: #64748b !important;
    background: #fafafa !important;
    cursor: pointer !important;
    width: 100% !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    box-sizing: border-box !important;
}
body .rct-file-input:hover,
.elementor .rct-file-input:hover {
    border-color: #E8192C !important;
}

/* ── Auth testimonial block ── */
body .rct-auth-testimonial,
.elementor .rct-auth-testimonial {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 10px !important;
    padding: 14px !important;
}
body .rct-auth-testimonial p,
.elementor .rct-auth-testimonial p {
    font-size: 13px !important;
    color: #e2e8f0 !important;
    font-style: italic !important;
    margin: 0 0 6px !important;
    line-height: 1.6 !important;
}
body .rct-auth-testimonial span,
.elementor .rct-auth-testimonial span {
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

/* ── Availability badges ── */
body .avail-green  { background: #f0fdf4 !important; color: #166534 !important; border: 1px solid #86efac !important; }
body .avail-yellow { background: #fffbeb !important; color: #92400e !important; border: 1px solid #fde68a !important; }
body .avail-red    { background: #fef2f2 !important; color: #991b1b !important; border: 1px solid #fca5a5 !important; }

/* ── Status cards ── */
body .rct-status-card.status-pending  { background: #fffbeb !important; border-color: #f59e0b !important; }
body .rct-status-card.status-approved { background: #f0fdf4 !important; border-color: #22c55e !important; }
body .rct-status-card.status-rejected { background: #fef2f2 !important; border-color: #ef4444 !important; }
body .rct-status-card.status-hold     { background: #f5f3ff !important; border-color: #8b5cf6 !important; }

/* ── Responsive override ── */
@media (max-width: 860px) {
    body .rct-fields-grid,
    .elementor .rct-fields-grid {
        grid-template-columns: 1fr !important;
    }
    body .rct-field-full,
    .elementor .rct-field-full {
        grid-column: 1 !important;
    }
}

@media (max-width: 520px) {
    body .rct-tab,
    .elementor .rct-tab {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }
}

/* ═══════════════════════════════════════════════════
   CLEAN FORM LAYOUT — no sidebar, no logo/title header
   Applied via .rct-form-wrap--clean + .rct-form-card--full
═══════════════════════════════════════════════════ */

/* Wrapper: remove auth-wrap flex/border/shadow that was
   designed for the two-column sidebar+card layout */
body .rct-form-wrap--clean,
.elementor .rct-form-wrap--clean {
    display: block !important;
    max-width: 860px !important;
    margin: 0 auto !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    min-height: unset !important;
    padding: 0 !important;
}

/* Card: full-width white card, no sidebar sibling */
body .rct-form-card--full,
.elementor .rct-form-card--full {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(13,27,42,0.08) !important;
    overflow: hidden !important;
    padding: 0 !important; /* tabs flush to edges */
    display: flex !important;
    flex-direction: column !important;
}

/* Tabs: flush to top of card, full width */
body .rct-form-card--full .rct-tabs,
.elementor .rct-form-card--full .rct-tabs {
    margin: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
}

/* Progress bar: small gap below the tab bar */
body .rct-form-card--full .rct-form-progress,
body .rct-form-wrap--clean .rct-form-progress,
.elementor .rct-form-card--full .rct-form-progress {
    margin: 6px 0 0 !important;
}

/* Panels: add side padding now that card has none */
body .rct-form-card--full .rct-panel,
.elementor .rct-form-card--full .rct-panel {
    padding: 28px 32px !important;
}

/* Form footer: full-width flush to card bottom */
body .rct-form-card--full .rct-form-footer,
.elementor .rct-form-card--full .rct-form-footer {
    margin: 0 !important;
    padding: 16px 32px !important;
    border-top: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
}

@media (max-width: 600px) {
    body .rct-form-card--full .rct-panel,
    .elementor .rct-form-card--full .rct-panel {
        padding: 20px 16px !important;
    }
    body .rct-form-card--full .rct-form-footer,
    .elementor .rct-form-card--full .rct-form-footer {
        padding: 14px 16px !important;
    }
}

/* ═══════════════════════════════════════════════════
   v2.3.3 FIXES
═══════════════════════════════════════════════════ */

/* 1. Hide progress bar everywhere (removed from HTML but JS may recreate) */
body .rct-form-progress,
.elementor .rct-form-progress {
    display: none !important;
}

/* 2. URL / icon inputs in Documents tab — rct-input-wrap--field with url type */
body .rct-input-wrap--field,
.elementor .rct-input-wrap--field {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

body .rct-input-wrap--field .rct-input-icon,
.elementor .rct-input-wrap--field .rct-input-icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #b0bac4 !important;
    pointer-events: none !important;
    z-index: 2 !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    display: block !important;
}

/* All inputs inside icon-wrap get left padding to clear the icon */
body .rct-input-wrap--field input,
.elementor .rct-input-wrap--field input {
    width: 100% !important;
    padding: 11px 14px 11px 40px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #1a202c !important;
    background: #ffffff !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: border-color .2s, box-shadow .2s !important;
    line-height: 1.5 !important;
}

body .rct-input-wrap--field input:focus,
.elementor .rct-input-wrap--field input:focus {
    border-color: #E8192C !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,0.10) !important;
    outline: none !important;
}

body .rct-input-wrap--field input::placeholder,
.elementor .rct-input-wrap--field input::placeholder {
    color: #c8d4de !important;
}

/* 3. Auth-wrap restored — ensure sidebar+card sit side by side */
body .rct-auth-wrap.rct-form-wrap,
.elementor .rct-auth-wrap.rct-form-wrap {
    display: flex !important;
    max-width: 1100px !important;
    min-height: 600px !important;
    align-items: stretch !important;
}

/* ═══════════════════════════════════════════════════
   FRONTEND DISPLAY SHORTCODES
   [rct_skills], [rct_languages], [rct_achievements],
   [rct_bio], [rct_lines]
═══════════════════════════════════════════════════ */

/* ── Skills tag cloud ── */
.rct-skills-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
}

.rct-skill-tag {
    display: inline-flex;
    align-items: center;
    background: #fef2f2;
    color: #E8192C;
    border: 1px solid rgba(232,25,44,0.20);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.4;
    transition: background .15s, border-color .15s;
    white-space: nowrap;
}

.rct-skill-tag:hover {
    background: rgba(232,25,44,0.10);
    border-color: rgba(232,25,44,0.40);
}

/* ── Languages list ── */
.rct-languages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rct-lang-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
}

.rct-lang-name {
    font-size: 14px;
    font-weight: 600;
    color: #0D1B2A;
}

.rct-lang-level {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Achievements list ── */
.rct-achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rct-achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #1a202c;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}

.rct-achievement-bullet {
    display: inline-block;
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: #E8192C;
    margin-top: 7px;
    flex-shrink: 0;
}

/* ── Bio text ── */
.rct-bio-display {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #1a202c;
    line-height: 1.8;
}

.rct-bio-display p {
    margin: 0 0 12px;
}

.rct-bio-display p:last-child {
    margin-bottom: 0;
}

/* ── Generic lines list ── */
.rct-lines-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rct-lines-list li {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #1a202c;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.rct-lines-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #E8192C;
}

/* Elementor scoped overrides for all display shortcodes */
.elementor .rct-skill-tag,
body .rct-skill-tag {
    background: #fef2f2 !important;
    color: #E8192C !important;
    border: 1px solid rgba(232,25,44,0.20) !important;
    border-radius: 20px !important;
    padding: 5px 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

/* ═══════════════════════════════════════════════════
   v2.3.5 — SKILL TAGS: match screenshot pill style
   Overrides Elementor's default tag/badge styling
═══════════════════════════════════════════════════ */

/* Nuclear-specificity reset for skill tags */
body.elementor-page .rct-skills-display,
body .rct-skills-display,
.elementor-widget-shortcode .rct-skills-display,
.elementor-section .rct-skills-display,
.e-con .rct-skills-display {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    background: transparent !important;
}

body.elementor-page .rct-skill-tag,
body .rct-skill-tag,
.elementor-widget-shortcode .rct-skill-tag,
.elementor-section .rct-skill-tag,
.e-con .rct-skill-tag,
span.rct-skill-tag {
    /* full reset */
    all: unset !important;
    /* re-apply pill style matching screenshot */
    display: inline-flex !important;
    align-items: center !important;
    background: #ffffff !important;
    color: #1a202c !important;
    border: 1.5px solid #d1d5db !important;
    padding: 5px 14px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    cursor: default !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body.elementor-page .rct-skill-tag:hover,
body .rct-skill-tag:hover,
.elementor-section .rct-skill-tag:hover {
    border-color: #E8192C !important;
    color: #E8192C !important;
    background: #fff5f5 !important;
}

/* ═══════════════════════════════════════════════════
   v2.3.6 — DOCUMENTS TAB: Fix icon overlap on URL inputs
   The icon SVG was flowing inline; force it absolutely
   positioned and ensure input padding clears it.
═══════════════════════════════════════════════════ */

/* Wrapper must be relative so the absolute icon anchors correctly */
body .rct-input-wrap--field,
body .rct-auth-wrap .rct-input-wrap--field,
body .rct-form-wrap .rct-input-wrap--field,
.elementor .rct-input-wrap--field {
    position: relative !important;
    display: block !important;   /* NOT flex — flex makes icon a flex child */
    width: 100% !important;
}

/* Icon: truly absolute, vertically centred, never a flex child */
body .rct-input-wrap--field > .rct-input-icon,
body .rct-input-wrap--field > svg.rct-input-icon,
.elementor .rct-input-wrap--field > .rct-input-icon,
.elementor .rct-input-wrap--field > svg.rct-input-icon {
    position: absolute !important;
    left: 13px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    pointer-events: none !important;
    color: #b0bac4 !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Input: left padding must be wider than icon + gap */
body .rct-input-wrap--field > input,
body .rct-input-wrap--field input[type="text"],
body .rct-input-wrap--field input[type="url"],
body .rct-input-wrap--field input[type="email"],
body .rct-input-wrap--field input[type="number"],
body .rct-input-wrap--field input[type="password"],
.elementor .rct-input-wrap--field > input,
.elementor .rct-input-wrap--field input[type="url"],
.elementor .rct-input-wrap--field input[type="text"],
.elementor .rct-input-wrap--field input[type="email"],
.elementor .rct-input-wrap--field input[type="number"],
.elementor .rct-input-wrap--field input[type="password"] {
    display: block !important;
    width: 100% !important;
    padding: 11px 14px 11px 42px !important;  /* 42px clears 13px + 16px icon + 13px gap */
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    color: #1a202c !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    line-height: 1.5 !important;
    transition: border-color .2s, box-shadow .2s !important;
}

body .rct-input-wrap--field > input:focus,
body .rct-input-wrap--field input[type="url"]:focus,
body .rct-input-wrap--field input[type="text"]:focus,
body .rct-input-wrap--field input[type="email"]:focus,
body .rct-input-wrap--field input[type="number"]:focus,
body .rct-input-wrap--field input[type="password"]:focus,
.elementor .rct-input-wrap--field > input:focus,
.elementor .rct-input-wrap--field input[type="url"]:focus,
.elementor .rct-input-wrap--field input[type="text"]:focus,
.elementor .rct-input-wrap--field input[type="email"]:focus,
.elementor .rct-input-wrap--field input[type="number"]:focus,
.elementor .rct-input-wrap--field input[type="password"]:focus {
    border-color: #E8192C !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,0.10) !important;
}

body .rct-input-wrap--field > input::placeholder,
body .rct-input-wrap--field input[type="text"]::placeholder,
body .rct-input-wrap--field input[type="url"]::placeholder,
body .rct-input-wrap--field input[type="email"]::placeholder,
body .rct-input-wrap--field input[type="number"]::placeholder,
body .rct-input-wrap--field input[type="password"]::placeholder,
.elementor .rct-input-wrap--field > input::placeholder,
.elementor .rct-input-wrap--field input[type="text"]::placeholder,
.elementor .rct-input-wrap--field input[type="url"]::placeholder,
.elementor .rct-input-wrap--field input[type="email"]::placeholder,
.elementor .rct-input-wrap--field input[type="number"]::placeholder,
.elementor .rct-input-wrap--field input[type="password"]::placeholder {
    color: #c8d4de !important;
}

/* ═══════════════════════════════════════════════════
   v2.4 — MODERN SIDEBAR FILTERS (Matches Screenshot)
═══════════════════════════════════════════════════ */
.rct-sidebar-modern {
    font-family: 'Inter', system-ui, sans-serif;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(13,27,42,0.03);
}

.rct-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.rct-filter-block {
    margin-bottom: 22px;
}

.rct-filter-block label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.rct-input, .rct-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #1a202c;
    font-family: 'Inter', sans-serif;
    outline: none;
    box-sizing: border-box;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.rct-input:focus, .rct-select:focus {
    border-color: #E8192C;
    box-shadow: 0 0 0 3px rgba(232,25,44,.1);
}

.rct-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Red Checkbox Styles */
.rct-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rct-checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    text-transform: none !important;
}

.rct-checkbox input {
    display: none;
}

.rct-checkbox .rct-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    flex-shrink: 0;
    background: #fff;
}

.rct-checkbox .rct-box svg {
    width: 12px;
    height: 12px;
    color: #fff;
    opacity: 0;
    transition: .2s;
}

.rct-checkbox input:checked ~ .rct-box {
    background: #E8192C;
    border-color: #E8192C;
}

.rct-checkbox input:checked ~ .rct-box svg {
    opacity: 1;
}

.rct-checkbox .rct-label {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.rct-checkbox input:checked ~ .rct-label {
    color: #0D1B2A;
    font-weight: 600;
}

.rct-btn-apply {
    width: 100%;
    padding: 14px;
    background: #E8192C;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-top: 10px;
}

.rct-btn-apply:hover {
    background: #c41225;
}

/* Loader state for Elementor Loop */
#rct-talent-loop.rct-loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* ══════════════════════════════════════════
   FORM FIELD ICONS v2.4
   Textareas: wrapper ::before pseudo-element
   Selects: dual background-image (left icon + right chevron)
   Inputs: inline SVG element (absolute positioned)
══════════════════════════════════════════ */

/* ── Hide the inline SVG we put in HTML (not needed for textareas) ── */
.rct-textarea-icon { display: none !important; }
.rct-select-icon   { display: none !important; }

/* ── Textarea wrapper: relative so ::before is contained ── */
.rct-textarea-wrap {
    position: relative !important;
    display: block !important;
    width: 100% !important;
}

/* ── Icon pseudo-element on the wrapper ── */
.rct-textarea-wrap::before {
    content: '' !important;
    position: absolute !important;
    left: 12px !important;
    top: 13px !important;
    width: 16px !important;
    height: 16px !important;
    background-repeat: no-repeat !important;
    background-size: 16px 16px !important;
    background-position: center !important;
    pointer-events: none !important;
    z-index: 3 !important;
    display: block !important;
}

/* ── Per-field icons via data-icon attribute on the wrapper ── */
.rct-textarea-wrap[data-icon="bio"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Cline x1='17' y1='10' x2='3' y2='10'/%3E%3Cline x1='21' y1='6' x2='3' y2='6'/%3E%3Cline x1='21' y1='14' x2='3' y2='14'/%3E%3Cline x1='17' y1='18' x2='3' y2='18'/%3E%3C/svg%3E") !important;
}
.rct-textarea-wrap[data-icon="skills"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Cpolyline points='9 11 12 14 22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E") !important;
}
.rct-textarea-wrap[data-icon="languages"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") !important;
}
.rct-textarea-wrap[data-icon="achievements"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E") !important;
}
.rct-textarea-wrap[data-icon="experience"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E") !important;
}
.rct-textarea-wrap[data-icon="education"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Cpath d='M22 10v6M2 10l10-5 10 5-10 5z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3C/svg%3E") !important;
}
.rct-textarea-wrap[data-icon="certifications"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M15.477 12.89L17 22l-5-3-5 3 1.523-9.11'/%3E%3C/svg%3E") !important;
}

/* ── Textarea base style ── */
.rct-textarea-wrap textarea {
    display: block !important;
    width: 100% !important;
    padding: 11px 14px 11px 38px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #1a202c !important;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
    outline: none !important;
    resize: vertical !important;
    min-height: 90px !important;
    line-height: 1.6 !important;
    box-sizing: border-box !important;
    transition: border-color .18s, box-shadow .18s !important;
    position: relative !important;
    z-index: 1 !important;
}
.rct-textarea-wrap textarea::placeholder {
    color: #b8c4d0 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}
.rct-textarea-wrap textarea:focus {
    border-color: #E8192C !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,.09) !important;
}

/* ── Select base style ── */
.rct-select-wrap { display: block !important; }
.rct-select-styled {
    display: block !important;
    width: 100% !important;
    padding: 11px 36px 11px 14px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #1a202c !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 14px 14px !important;
    font-family: 'Inter', sans-serif !important;
    outline: none !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    transition: border-color .18s, box-shadow .18s !important;
    box-sizing: border-box !important;
}
.rct-select-styled:focus {
    border-color: #E8192C !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,.09) !important;
}

/* Selects with left icon */
select[name="availability"] {
    padding-left: 38px !important;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-position: 12px center, right 12px center !important;
    background-size: 15px 15px, 14px 14px !important;
    background-repeat: no-repeat !important;
}
select[name="employment_type"] {
    padding-left: 38px !important;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-position: 12px center, right 12px center !important;
    background-size: 15px 15px, 14px 14px !important;
    background-repeat: no-repeat !important;
}
select[name="notice_period"] {
    padding-left: 38px !important;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-position: 12px center, right 12px center !important;
    background-size: 15px 15px, 14px 14px !important;
    background-repeat: no-repeat !important;
}
select[name="willing_to_travel"] {
    padding-left: 38px !important;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23b0bac4' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-position: 12px center, right 12px center !important;
    background-size: 15px 15px, 14px 14px !important;
    background-repeat: no-repeat !important;
}

/* ── Input wrap for text/number/url fields ── */
.rct-input-wrap--field {
    position: relative !important;
    display: block !important;
}
.rct-input-wrap--field .rct-input-icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #b0bac4 !important;
    pointer-events: none !important;
    z-index: 2 !important;
    width: 16px !important;
    height: 16px !important;
    display: block !important;
}
.rct-input-wrap--field input {
    display: block !important;
    width: 100% !important;
    padding: 11px 14px 11px 38px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #1a202c !important;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
    outline: none !important;
    transition: border-color .18s, box-shadow .18s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
}
.rct-input-wrap--field input:focus {
    border-color: #E8192C !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,.09) !important;
}
.rct-input-wrap--field input::placeholder { color: #b8c4d0 !important; }


/* ══════════════════════════════════════════
   CONSENT CHECKBOXES
══════════════════════════════════════════ */
.rct-consent-inner {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .25s, background .25s, box-shadow .25s;
}
.rct-consent-inner.rct-consent-error,
#rct-consent-block.rct-consent-error {
    border-color: #E8192C !important;
    background: #fef2f2 !important;
    box-shadow: 0 0 0 3px rgba(232,25,44,.10) !important;
}
.rct-consent-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 2px;
}
.rct-consent-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    float: none !important;
    width: 100% !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #374151 !important;
    line-height: 1.6 !important;
    vertical-align: top !important;
}
/* Hide the real checkbox completely — visual is handled by .rct-consent-box */
.rct-consent-label input[type="checkbox"].rct-consent-check {
    display: none !important;
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    float: none !important;
}
.rct-consent-box {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    border: 2px solid #d1d5db !important;
    border-radius: 5px !important;
    background: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    margin: 2px 12px 0 0 !important;
    padding: 0 !important;
    transition: background .15s, border-color .15s;
    cursor: pointer !important;
    vertical-align: top !important;
}
.rct-consent-box svg {
    opacity: 0 !important;
    color: #fff !important;
    transition: opacity .15s;
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
}
.rct-consent-label input:checked ~ .rct-consent-box,
.rct-consent-box.rct-checked {
    background: #E8192C !important;
    border-color: #E8192C !important;
}
.rct-consent-label input:checked ~ .rct-consent-box svg,
.rct-consent-box.rct-checked svg {
    opacity: 1 !important;
}
.rct-consent-text {
    display: block !important;
    flex: 1 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #374151 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 640px) {
    .rct-consent-inner { padding: 16px; }
}
