:root {
    --brand-primary: #c73878;
    --brand-primary-hover: #a52d62;
    --bs-primary: #c14079;
    --bs-primary-rgb: 193, 64, 121;
    --bs-body-font-family: "Inter", sans-serif;
    --bs-dark: #262626;
    --line-color: #e0e0e0;
}
body {
    font-family: var(--bs-body-font-family);
    font-optical-sizing: auto;
    font-variation-settings: "slnt" 0;
    color: var(--bs-dark);
    background-color: #f8f9fe;
    font-size: 1.2rem;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

form .required::after {
    content: " *";
    color: red;
}
.form-control,
.form-select {
    padding: 10px 20px;
}

.text-primary {
    color: var(--bs-primary) !important;
}
.bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: #ce4482;
    border-color: #ce4482;
    box-shadow: none !important;
}
.btn-primary.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #da8baf;
    border-color: #da8baf;
}
.btn-outline-primary {
    color: #ce4482;
    border-color: #ce4482;
}
.btn-outline-primary:hover {
    color: var(--bs-white);
    background-color: #ce4482;
    border-color: #ce4482;
}

.navbar-brand img {
    width: 140px;
}

.main {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.direct-page {
    padding-top: 5.25rem;
    background-color: #fff;
}
.direct-page-hero {
    padding: 4rem 0 3rem;
    background: #fff5f9;
    border-bottom: 1px solid #f3d7e4;
}
.direct-page-title {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--bs-dark);
}
.direct-page-body {
    padding: 3.5rem 0 5rem;
}
.direct-page-content {
    color: #3d3d3d;
    font-size: 1.05rem;
    line-height: 1.8;
}
.direct-page-content h2,
.direct-page-content h3,
.direct-page-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-dark);
    font-weight: 800;
    line-height: 1.25;
}
.direct-page-content p,
.direct-page-content ul,
.direct-page-content ol {
    margin-bottom: 1.2rem;
}
.direct-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.direct-page-content a {
    color: var(--bs-primary);
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fceff6 0%, #e6e9f0 100%);
    padding-top: 8rem;
    padding-bottom: 6rem;
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;
    position: relative;
    overflow: hidden;
}

/* Decoration */
.curved-underline {
    position: relative;
    display: inline-block;
}
.curved-underline svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    opacity: 0.3;
    color: var(--bs-primary);
}

/* Cards */
.main-card {
    background-color: var(--bs-white);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 1.5rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}
.feature-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.feature-card .hover-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--bs-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.feature-card:hover .hover-line {
    transform: translateX(0);
}

.direct-hire-section {
    position: relative;
    overflow: hidden;
}
.direct-hire-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(var(--bs-primary-rgb), 0.06), transparent 36%),
        radial-gradient(circle at 88% 18%, rgba(18, 150, 136, 0.12), transparent 24rem);
    pointer-events: none;
}
.direct-hire-section .container {
    position: relative;
    z-index: 1;
}
.direct-hire-intro {
    position: sticky;
    top: 7rem;
}
.direct-hire-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.direct-hire-steps {
    display: grid;
    gap: 0.9rem;
    counter-reset: direct-hire-step;
}
.direct-hire-step {
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr);
    min-height: 6.75rem;
    position: relative;
}
.direct-hire-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4.4rem;
    bottom: -1.2rem;
    left: 2.1rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.35), rgba(18, 150, 136, 0.18));
}
.direct-hire-step-number {
    position: relative;
    z-index: 1;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow: 0 1rem 2rem rgba(var(--bs-primary-rgb), 0.22);
}
.direct-hire-step-body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 1rem 2.5rem rgba(38, 38, 38, 0.06);
    backdrop-filter: blur(8px);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}
.direct-hire-step:hover .direct-hire-step-body {
    transform: translateX(0.2rem);
    border-color: rgba(var(--bs-primary-rgb), 0.28);
    box-shadow: 0 1.25rem 2.75rem rgba(38, 38, 38, 0.09);
}
.direct-hire-step-icon {
    width: 2.65rem;
    height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: #e9f7f5;
    color: #0f9184;
    font-size: 1rem;
}
.direct-hire-step h3 {
    margin: 0 0 0.25rem;
    color: var(--bs-dark);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
}
.direct-hire-step p {
    margin: 0;
    color: #5f6670;
    font-size: 0.95rem;
    line-height: 1.45;
}

.why-direct-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
    position: relative;
    overflow: hidden;
}
.why-direct-section::before {
    content: "";
    position: absolute;
    top: 4rem;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), 0.08);
    pointer-events: none;
}
.why-direct-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    padding: 2.5rem;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1.5rem 4rem rgba(38, 38, 38, 0.08);
    backdrop-filter: blur(10px);
}
.why-direct-header h2 {
    margin-bottom: 1rem;
    color: var(--bs-dark);
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
}
.why-direct-header h2 span {
    color: var(--bs-primary);
}
.why-direct-header p {
    margin: 0;
    color: #515862;
    font-size: 1.05rem;
    line-height: 1.55;
}
.why-direct-list {
    display: grid;
    gap: 1rem;
}
.why-direct-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 0.8rem 2rem rgba(38, 38, 38, 0.05);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}
.why-direct-item:hover {
    transform: translateY(-0.15rem);
    border-color: rgba(var(--bs-primary-rgb), 0.24);
    box-shadow: 0 1rem 2.4rem rgba(38, 38, 38, 0.08);
}
.why-direct-icon {
    width: 2.65rem;
    height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: #e9f7f5;
    color: #0f9184;
    font-size: 1rem;
}
.why-direct-item h3 {
    margin: 0 0 0.35rem;
    color: var(--bs-dark);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
}
.why-direct-item p {
    margin: 0;
    color: #515862;
    font-size: 0.96rem;
    line-height: 1.45;
}
.why-direct-item a {
    color: var(--bs-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.cost-direct-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f7f8fb 0%, #fff7fb 100%);
}
.cost-direct-section::before {
    content: "";
    position: absolute;
    top: -8rem;
    left: -7rem;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    pointer-events: none;
}
.cost-direct-section::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 3rem;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: rgba(18, 150, 136, 0.1);
    pointer-events: none;
}
.cost-direct-section .container {
    position: relative;
    z-index: 1;
}
.cost-direct-panel {
    padding: 2.5rem;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 1.5rem 4rem rgba(38, 38, 38, 0.08);
}
.cost-direct-header {
    margin-bottom: 1.5rem;
}
.cost-direct-header h2,
.agency-reasons h2 {
    margin: 0 0 0.35rem;
    color: var(--bs-dark);
    font-size: clamp(1.65rem, 2.3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.14;
}
.cost-direct-header p,
.agency-reasons > p {
    margin: 0;
    color: #31363d;
    font-size: 1.02rem;
    line-height: 1.45;
}
.cost-table-wrap {
    overflow-x: auto;
    border: 1px solid #d8dce2;
    border-radius: 0.85rem;
    background: #ffffff;
}
.cost-direct-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    color: #2e3238;
    font-size: 0.96rem;
}
.cost-direct-table th,
.cost-direct-table td {
    padding: 0.7rem 0.9rem;
    border: 1px solid #d8dce2;
    text-align: center;
    vertical-align: middle;
}
.cost-direct-table thead th {
    background: #282828;
    color: #ffffff;
    font-weight: 800;
}
.cost-direct-table thead th:nth-child(2) {
    background: #050505;
}
.cost-direct-table tbody th {
    width: 34%;
    background: #fbfbfc;
    color: #31363d;
    font-weight: 600;
}
.cost-direct-save {
    background: #eaf9ef;
    color: #10722d;
    font-weight: 700;
}
.cost-direct-total th,
.cost-direct-total td {
    background: #fff0f4;
    font-weight: 800;
}
.cost-direct-total td:first-of-type {
    color: var(--bs-primary);
}
.cost-direct-notes {
    margin: 1.25rem 0 0;
    color: #68707a;
    font-size: 0.86rem;
    font-style: italic;
    line-height: 1.4;
}

.agency-reasons-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}
.agency-reasons-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(18, 150, 136, 0.1), transparent 20rem),
        radial-gradient(circle at 88% 65%, rgba(var(--bs-primary-rgb), 0.09), transparent 22rem);
    pointer-events: none;
}
.agency-reasons-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background-image: radial-gradient(rgba(38, 38, 38, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
}
.agency-reasons-section .container {
    position: relative;
    z-index: 1;
}
.agency-reasons-panel {
    padding: 2.5rem;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 1.5rem 4rem rgba(38, 38, 38, 0.06);
}
.agency-reason-list {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.8rem;
}
.agency-reason-item {
    padding-left: 1rem;
    border-left: 3px solid rgba(var(--bs-primary-rgb), 0.24);
}
.agency-reason-item h3 {
    margin: 0 0 0.35rem;
    color: var(--bs-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}
.agency-reason-item p {
    margin: 0;
    color: #31363d;
    font-size: 0.96rem;
    line-height: 1.42;
}
.agency-reason-item a,
.agency-find-link {
    color: var(--bs-primary);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}
.agency-find-link {
    display: inline-flex;
    margin-top: 1.9rem;
    font-weight: 700;
}

.sm-register {
    min-height: calc(100vh - 151px);
    background-image: url("../img/about-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Split Section Images */
.split-card-img {
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}
.split-card {
    height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
.split-card:hover .split-card-img {
    transform: scale(1.05);
}

/* Navbar backdrop */
.navbar-blur {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #1f1f1f 0%, #151515 100%);
    color: #cfcfcf;
}
.site-footer a {
    color: #cfcfcf;
    text-decoration: none;
}
.site-footer a:hover {
    color: var(--bs-white);
}
.site-footer-logo {
    width: 200px;
}
.footer-kicker {
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--bs-white);
}
.footer-desc {
    color: var(--bs-white);
    font-size: 0.95rem;
    line-height: 1.55;
}
.footer-list a {
    display: inline-block;
    padding: 0.25rem 0;
    color: var(--bs-white);
}
.footer-article {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.footer-article img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-article .title {
    font-size: 0.95rem;
    line-height: 1.25;
    color: var(--bs-white);
    margin: 0;
}
.footer-article .date {
    margin: 0;
    font-size: 0.85rem;
    color: var(--bs-primary);
    font-weight: 600;
}
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 0.12s ease,
        background 0.12s ease;
}
.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}
.social-btn i {
    font-size: 1.05rem;
    color: var(--bs-white);
}
.contact-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--bs-white);
}
.contact-pill i {
    color: var(--bs-primary);
    font-size: 1.1rem;
}
.contact-pill a {
    color: var(--bs-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.site-footer-copyright {
    background-color: #000;
    color: var(--bs-white);
    font-size: 0.9rem;
    padding: 1.25rem 0 1.5rem;
    text-align: center;
}

/* Account Type */
.account-type-card {
    cursor: pointer;
    border: 1px solid var(--bs-border-color);
    transition:
        transform 0.08s ease,
        box-shadow 0.08s ease,
        border-color 0.08s ease;
}
.btn-check:checked + .account-type-card {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}
.account-type-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}
.account-type-card:active {
    transform: scale(0.99);
}

/* Utilities */
.fs-default {
    font-size: 1rem !important;
}
.fs-18 {
    font-size: 1.125rem;
}
.rounded-xl {
    border-radius: 1rem !important;
}
.rounded-3xl {
    border-radius: 2rem !important;
}
.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}
.icon-box-lg {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}

/* Custom Dot Pattern for Primary Section */
.pattern-overlay {
    background-image: radial-gradient(var(--bs-white) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

/* --- Step Wizard Styling --- */
.step-wizard-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.step-wizard-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2; /* Keeps circles on top of the line */
}

.step-wizard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px; /* Fixed width to ensure centering */
    position: relative;
}

/* The Connecting Line */
.step-wizard-line {
    position: absolute;
    top: 20px; /* Matches half of circle height (40px/2) */
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--line-color);
    z-index: 1; /* Behind the circles */
    /* Adjust width to connect centers:
       Item width is 150px, center is 75px.
       So line starts at 75px and ends at 75px from right. */
    margin-left: 95px; /* 75px + 20px padding compensation */
    margin-right: 95px;
}

/* Step Circle */
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--line-color);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    /* White border ensures the line doesn't look like it cuts through transparency */
    border: 4px solid var(--bs-light);
    box-sizing: content-box; /* Ensures border adds to width */
}

/* Active State */
.step-wizard-item.active .step-circle {
    background-color: var(--brand-primary);
    color: #fff;
    box-shadow: 0 2px 5px rgba(190, 46, 103, 0.4);
}
.step-wizard-item.completed .step-circle {
    background-color: var(--bs-success);
    color: #fff;
    box-shadow: 0 2px 5px rgba(25, 135, 84, 0.4);
}

/* Labels */
.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.step-wizard-item.active .step-label {
    color: var(--brand-primary);
    font-weight: 700;
}

/* Upload Area */
.upload-circle {
    width: 120px;
    height: 120px;
    border: 2px dashed #dee2e6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    margin: 0 auto;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}
.upload-circle:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background-color: #fff5f8;
}
/* Form Elements */
.helper-text {
    font-size: 0.75rem;
    color: #adb5bd;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Buttons */
.link-skip {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
}
.link-skip:hover {
    color: #343a40;
}

/* Card Selection Styles */
.selection-card {
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.selection-card:hover {
    border-color: #ccc;
}
/* Hidden input handling */
.selection-input:checked + .selection-card {
    border-color: var(--bs-primary);
    background-color: var(--light-pink-bg);
    color: black;
}
.selection-input:checked + .selection-card i {
    color: var(--bs-primary);
}
/* Checkmark Badge */
.check-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--bs-primary);
    display: none;
}
.selection-input:checked + .selection-card .check-badge {
    display: block;
}

.personality-card {
    border-color: #d8dee4;
    background-color: var(--trait-bg, #ffffff);
}
.personality-card:hover {
    border-color: var(--trait-color, #adb5bd);
}
.selection-input:checked + .personality-card {
    border-color: var(--trait-color, var(--bs-primary));
    background-color: var(--trait-bg, var(--light-pink-bg));
}
.selection-input:checked + .personality-card .check-badge {
    color: var(--trait-color, var(--bs-primary));
}

.personality-card .selection-order-badge {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--trait-color, var(--bs-primary));
}

.selection-input:checked + .personality-card .selection-order-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #fff;
}

.personality-card.is-disabled-option {
    opacity: 0.45;
    filter: grayscale(1);
    cursor: not-allowed;
}

.language-skill-list {
    border-top: 1px solid #eceff3;
}

.language-skill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid #eceff3;
}

.language-name-col {
    flex: 1 1 240px;
    max-width: 380px;
}

.language-rating-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.language-stars {
    display: flex;
    align-items: center;
    gap: 0.22rem;
}

.language-star-btn {
    border: 0;
    background: transparent;
    color: #c9ced6;
    padding: 0;
    width: 1.15rem;
    height: 1.15rem;
    line-height: 1;
    cursor: pointer;
}

.language-star-btn.is-active {
    color: var(--brand-primary);
}

.language-star-btn.is-hover-preview {
    color: var(--brand-primary);
    opacity: 0.75;
}

.language-skill-row.is-hovering .language-star-btn {
    color: #c9ced6;
    opacity: 1;
}

.language-skill-row.is-hovering .language-star-btn.is-hover-preview {
    color: var(--brand-primary);
}

.language-level-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #a7afb9;
    text-transform: uppercase;
}

.language-row-action {
    width: 78px;
    display: flex;
    justify-content: flex-end;
}

.language-row-action-placeholder {
    visibility: hidden;
}

.language-remove-btn,
.language-add-btn {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
}

.language-remove-btn:hover,
.language-add-btn:hover {
    color: var(--brand-primary-hover);
}

/* Icons */
.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--bs-primary);
}

/* Radio Group Custom Styling */
.custom-radio-group .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.custom-radio-group .form-check-label {
    font-weight: 500;
    color: #333;
}

/* Accommodation Option */
.accom-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.accom-option.selected {
    border-color: var(--bs-primary);
    background-color: var(--light-pink-bg);
}
.accom-circle {
    height: 18px;
    width: 18px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accom-option.selected .accom-circle {
    border-color: var(--bs-primary);
}
.accom-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: none;
}
.accom-option.selected .accom-circle::after {
    display: block;
}

/* Section Headers */
.section-icon {
    color: var(--bs-primary);
    margin-right: 8px;
}
.section-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

/* Nationality Pills */
.btn-outline-custom {
    border: 1px solid #dee2e6;
    color: #495057;
    background: white;
    border-radius: 50px;
    padding: 8px 24px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}
.btn-outline-custom:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    color: #000;
}
.btn-outline-custom.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

/* Custom Checkbox */
.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Range Slider Styling */
.form-range::-webkit-slider-thumb {
    background: var(--bs-primary);
}
.form-range::-webkit-slider-runnable-track {
    background: #e9ecef; /* Default Bootstrap track */
}
/* Trick to simulate the pink fill on the left requires JS or specific gradient CSS.
   Using a simple background gradient for visual approximation */
.custom-range {
    accent-color: var(--bs-primary);
}
.salary-range-wrapper {
    position: relative;
    height: 56px;
}
.salary-range-track {
    position: absolute;
    left: 0;
    top: 38px;
    height: 6px;
    background: var(--bs-primary);
    border-radius: 999px;
    z-index: 1;
}
.salary-handle-tag {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
    z-index: 7;
}
.salary-handle-tag.min {
    background: #e3f2fd;
    color: #1565c0;
}
.salary-handle-tag.max {
    background: #fce4ec;
    color: #c2185b;
}
.salary-range-input {
    position: absolute;
    left: 0;
    top: 28px;
    width: 100%;
    margin: 0;
    pointer-events: none;
    background: transparent;
    z-index: 4;
}
.salary-range-input::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    margin-top: -6px;
}
.salary-range-input::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
}
.salary-range-input#salaryMinRange {
    z-index: 5;
}
.salary-range-input#salaryMaxRange {
    z-index: 6;
}
.salary-range-input::-webkit-slider-runnable-track {
    background: transparent;
    height: 6px;
}
.salary-range-input::-moz-range-track {
    background: transparent;
    height: 6px;
}
.salary-range-input#salaryMinRange::-webkit-slider-thumb {
    background: #1565c0;
    border: 2px solid #e3f2fd;
}
.salary-range-input#salaryMinRange::-moz-range-thumb {
    background: #1565c0;
    border: 2px solid #e3f2fd;
}
.salary-range-input#salaryMaxRange::-webkit-slider-thumb {
    background: #c2185b;
    border: 2px solid #fce4ec;
}
.salary-range-input#salaryMaxRange::-moz-range-thumb {
    background: #c2185b;
    border: 2px solid #fce4ec;
}
.salary-label {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Off-Day Selection Cards */
.offday-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
}
.offday-option.selected {
    border-color: var(--bs-primary);
    background-color: var(--light-pink-bg);
}
.radio-circle {
    height: 20px;
    width: 20px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.offday-option.selected .radio-circle {
    border-color: var(--bs-primary);
}
.radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: none;
}
.offday-option.selected .radio-circle::after {
    display: block;
}

/* Onboarding Success */
/* Hero Image Area */
.hero-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}
.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    background-color: #ddd; /* Fallback color */
}
.status-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--bs-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Typography */
.completion-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.completion-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}
.highlight-pink {
    color: var(--bs-primary);
    font-weight: 700;
}

/* Action Card */
.action-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    padding: 2.5rem;
    margin-bottom: 4rem;
}
.action-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Resources Section */
.resources-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #adb5bd;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.resource-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s;
    cursor: pointer;
}
.resource-item:hover {
    transform: translateY(-5px);
    color: var(--bs-primary);
}
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #fce4ec; /* Light pink */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--bs-primary);
    font-size: 1.5rem;
}
.resource-label {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 15px; /* Adjust as needed */
    right: 20px;
    z-index: 99;
}
.floating-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: 55px;
    height: 55px;
    border: none;
    outline: none;
    color: var(--bs-white);
    cursor: pointer;
    border-radius: 50%;
    transition: opacity 0.3s;
}
.floating-button:hover {
    opacity: 0.7;
}

.iti {
    display: block !important;
}
.iti .iti__selected-dial-code,
.iti__search-input,
.iti__flag-box,
.iti__country-name,
.iti__dial-code {
    font-size: 1rem;
}

/* User Dashboard */
.user-dashboard .dashboard-title {
    font-size: 2rem;
    font-weight: 700;
}
.user-dashboard .dashboard-subtitle {
    color: #8f8f8f;
    font-size: 0.95rem;
}
.user-dashboard .dashboard-subtitle .dot {
    width: 6px;
    height: 6px;
    background: var(--bs-primary);
    display: inline-block;
    border-radius: 999px;
    margin-right: 6px;
    position: relative;
    top: -1px;
}

.stat-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}
.stat-card .stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--bs-primary);
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(1) .stat-card {
    background: #fff3f8;
    border-color: #f7dbe8;
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(1) .stat-icon {
    background: #f9d4e6;
    color: #b83772;
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(2) .stat-card {
    background: #f2f8ff;
    border-color: #dceaff;
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(2) .stat-icon {
    background: #dbeafe;
    color: #2f6fb8;
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(3) .stat-card {
    background: #f3fbf6;
    border-color: #d9f1e1;
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(3) .stat-icon {
    background: #d8f4e1;
    color: #2f8862;
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(4) .stat-card {
    background: #fff8ef;
    border-color: #f8e9cf;
}
.user-dashboard > .row.g-3.mb-4 > div:nth-child(4) .stat-icon {
    background: #fde8c7;
    color: #b7721f;
}
.bg-soft-primary {
    background: rgba(193, 64, 121, 0.12);
}
.stat-card .stat-label {
    margin: 0;
    font-size: 0.82rem;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.stat-card .stat-value {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bs-primary);
}
.section-title {
    font-size: 1.1rem;
    font-weight: 700;
}
.section-link {
    font-size: 0.85rem;
    color: var(--bs-primary);
    text-decoration: none;
}
.job-listing-card {
    border-radius: 28px;
    border: 1px solid #f0f1f4;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
    padding: 26px;
}
.job-listing-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.job-listing-avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.job-listing-title {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #2f3138;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.2em * 2);
}
.job-listing-family {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
    color: #4a4d56;
}
.job-listing-posted {
    font-size: 1rem;
    color: #9ba0ab;
}
.job-listing-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.job-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.job-badge-warning {
    background: #fff2dc;
    color: #f08a00;
}
.job-badge-accent {
    background: #efe4ff;
    color: #8b4edc;
}
.job-badge-match {
    background: #d8f4e1;
    color: #2f8862;
}
.job-listing-info {
    background: #f5f6f9;
    border-radius: 24px;
    padding: 18px 20px;
    margin-bottom: 18px;
}
.job-listing-info p {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #4f5561;
    font-size: 1rem;
}
.job-listing-info i {
    color: #a0a6b3;
    width: 18px;
    text-align: center;
}
.job-listing-info strong {
    color: #242935;
    font-weight: 700;
}
.job-listing-info span {
    color: #8a91a0;
}
.job-listing-chip-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.job-chip {
    background: #dbeafe;
    color: #2f6fb8;
    border: 1px solid #aecaea;
    border-radius: 999px;
    padding: 0.23rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
}
.job-listing-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.job-apply-btn {
    flex: 1;
    border-radius: 18px;
    /* font-size: 1.28rem; */
    font-weight: 700;
    padding: 8px;
    box-shadow: 0 8px 16px rgba(193, 64, 121, 0.28);
}
.job-save-btn {
    width: 42px;
    height: 42px;
    border-radius: 17px;
    border: 1px solid #e5e7ef;
    background: #fff;
    color: #8d94a2;
    font-size: 1rem;
    display: grid;
    place-items: center;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}
.job-save-btn:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}
.job-save-btn.active,
.job-save-btn[aria-pressed="true"] {
    border-color: #c14079;
    color: #c14079;
}
.job-save-btn.active i,
.job-save-btn[aria-pressed="true"] i {
    color: #c14079;
}
.shortlist-toggle-btn {
    background: #fff;
    border-color: #6f7684;
    color: #6f7684;
}
.shortlist-toggle-btn:hover,
.shortlist-toggle-btn:focus,
.shortlist-toggle-btn:active {
    background: #fff;
    border-color: #6f7684;
    color: #6f7684;
    box-shadow: none;
}
.shortlist-toggle-btn i {
    color: #6f7684;
}
.shortlist-toggle-btn.shortlist-active,
.shortlist-toggle-btn[aria-pressed="true"] {
    background: #fff;
    border-color: #6f7684;
    color: #6f7684;
}
.shortlist-toggle-btn.shortlist-active i,
.shortlist-toggle-btn[aria-pressed="true"] i {
    color: #c14079;
}
.helper-card,
.soft-card {
    border-radius: 16px;
    border: 1px solid #f1f1f1;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.helper-card {
    padding: 16px;
}
.avatar {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #777;
    font-weight: 600;
}
.bg-teal {
    background: #1aa6a6;
}
.bg-dark {
    background: #1d2c36;
}
.bg-sand {
    background: #d8b8a3;
}
.tag-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.tag {
    background: #f3f3f3;
    color: #7a7a7a;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
}
.icon-heart {
    width: 32px;
    height: 32px;
    border: 1px solid #f0f0f0;
    background: #fff;
    border-radius: 10px;
    color: var(--bs-primary);
    display: grid;
    place-items: center;
}
.icon-ghost {
    border: none;
    background: transparent;
    color: #c0c0c0;
}
.applicant-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #fbfbfb;
    margin-bottom: 10px;
}
.status-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
}
.status-review {
    background: #edf4ff;
    color: #3e7ddc;
}
.status-interview {
    background: #fff3e1;
    color: #e6952a;
}
.dashboard-progress {
    height: 8px;
    border-radius: 999px;
    background: #f1f1f1;
}
.dashboard-progress .progress-bar {
    background: var(--bs-primary);
    border-radius: 999px;
}
.search-group .input-group-text {
    background: #fff;
    border-right: 0;
}
.search-group .form-control {
    border-left: 0;
}
.tip-item {
    padding: 12px 0;
    border-bottom: 1px solid #f3f3f3;
}
.tip-item:last-of-type {
    border-bottom: none;
}

/* Maid Profile */
.icon-pill {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(222, 15, 95, 0.12);
    color: var(--brand-primary);
}
.profile-upload {
    max-width: 220px;
}
.profile-photo-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.profile-photo-message {
    max-width: 430px;
    color: #5f6b7a;
    font-size: 0.95rem;
    line-height: 1.55;
}
.profile-ring {
    position: relative;
    width: 128px;
    height: 128px;
    border-radius: 999px;
    border: 2px solid #eef1f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fafbfc;
}
.profile-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background: #f2f4f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.profile-preview {
    width: 112px;
    height: 112px;
    border-radius: 999px;
    object-fit: cover;
}
.profile-camera {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--brand-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(222, 15, 95, 0.25);
}
@media (max-width: 575.98px) {
    .profile-photo-panel {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
.skill-card {
    width: 100%;
    display: block;
    cursor: pointer;
}
.skill-body {
    border: 1px solid #edf0f4;
    border-radius: 16px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    color: #4b5563;
    font-weight: 600;
    transition: all 0.2s ease;
    background: #fff;
    min-height: 92px;
}
.skill-card input:checked + .skill-body {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    box-shadow: 0 6px 18px rgba(222, 15, 95, 0.12);
}

/* Datepicker */
.datepicker table tr td.active,
.datepicker table tr td.active.highlighted,
.datepicker table tr td .focused,
.datepicker table tr td span.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td.range-start,
.datepicker table tr td.range-end {
    background: var(--brand-primary) !important;
    color: #fff !important;
    box-shadow: 0 0.125rem 0.25rem rgba(105, 108, 255, 0.45);
}
.datepicker table tr td.range,
.datepicker table tr td.range.highlighted,
.datepicker table tr td.range.today {
    color: var(--brand-primary) !important;
    background: #e7e7ff !important;
}
.datepicker table tr td.range.focused,
.datepicker table tr td.range.highlighted.focused,
.datepicker table tr td.range.today.focused {
    background: #c8c8ff !important;
}
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.highlighted.disabled,
.datepicker table tr td.range.today.disabled {
    background: rgba(231, 231, 255, 0.5) !important;
    color: rgba(67, 89, 113, 0.5) !important;
}
.datepicker table tr td.today:not(.active) {
    box-shadow: 0 0 0 1px var(--brand-primary) inset;
}

/* Switch */
.public-profile-toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #4b5563;
}
.public-profile-label {
    white-space: nowrap;
}
.public-switch {
    position: relative;
    display: inline-block;
    flex: 0 0 92px;
    width: 92px;
    height: 36px;
}
.public-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.public-switch-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background-color: #d1d5db;
    border-radius: 999px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px 0 35px;
    overflow: hidden;
}
.public-switch-text {
    color: #4b5563;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.public-switch-slider::before {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    left: 4px;
    top: 4px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.2);
}
.public-switch input:checked + .public-switch-slider {
    background-color: var(--bs-primary);
    justify-content: flex-end;
    padding: 0 38px 0 12px;
}
.public-switch input:checked + .public-switch-slider .public-switch-text {
    color: #fff;
}
.public-switch input:checked + .public-switch-slider::before {
    transform: translateX(56px);
}
.public-switch input:focus-visible + .public-switch-slider {
    outline: 2px solid rgba(var(--bs-primary-rgb), 0.45);
    outline-offset: 2px;
}

/* Maid Search */
.maid-filters-shell {
    --bs-offcanvas-bg: #fff;
    background: #fff;
    border: 1px solid #e1e6ee;
    border-radius: 16px;
}
.maid-filters-form {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c8ced8 #f4f6fa;
    scrollbar-gutter: stable;
    padding-right: 0.35rem;
}
.maid-filters-form::-webkit-scrollbar {
    width: 10px;
}
.maid-filters-form::-webkit-scrollbar-track {
    background: #f4f6fa;
    border-radius: 999px;
}
.maid-filters-form::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d3d9e3 0%, #bcc4d1 100%);
    border-radius: 999px;
    border: 2px solid #f4f6fa;
}
.maid-filters-form::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #bcc4d1 0%, #aeb7c5 100%);
}
.maid-sidebar-title {
    font-size: 1.6rem;
    font-weight: 700;
}
.maid-filter-actions {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
}
.maid-filter-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}
.maid-filter-button-row {
    display: flex;
    align-items: center;
    width: 100%;
}
.maid-save-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 36px;
    border: 1px solid #d8e0eb;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: #111827;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}
.maid-save-filter-btn:hover,
.maid-save-filter-btn:focus {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}
.maid-save-filter-btn:disabled {
    opacity: 0.7;
}
.maid-save-filter-btn.is-saving i {
    animation: save-filter-pulse 0.8s ease-in-out infinite alternate;
}
.save-filter-status {
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.save-filter-status.is-success {
    background: #ecfdf3;
    color: #027a48;
}
.save-filter-status.is-error {
    background: #fff1f3;
    color: #b42318;
}
@keyframes save-filter-pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.86);
    }
}
.maid-clear-all {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.filter-group {
    border-top: 1px solid #eef1f5;
    padding-top: 1rem;
    margin-top: 1rem;
}
.filter-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
}
.filter-checklist,
.filter-radios {
    display: grid;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
}
.salary-slider-wrap input[type="range"] {
    width: 100%;
}
.salary-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #67768c;
}
.salary-range-pill {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    background: #fdebf4;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
}
.maid-results-head {
    background: #fff;
    border: 1px solid #e1e6ee;
    border-radius: 16px;
    padding: 1.2rem 1.35rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.maid-page-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
}
.maid-result-subtitle {
    color: #5f6f86;
    font-size: 1rem;
}
.maid-sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.maid-sort-wrap .form-label {
    white-space: nowrap;
}
.maid-sort-wrap .form-select {
    min-width: 220px;
}
.maid-results-list {
    display: grid;
    gap: 1rem;
}
.maid-result-card {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 1rem;
    background: #fff;
    border: 1px solid #dde3ec;
    border-radius: 16px;
    padding: 1.2rem;
}
.maid-result-main {
    display: flex;
    gap: 1rem;
}
.maid-result-avatar-wrap {
    min-width: 130px;
    text-align: center;
}
.maid-result-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ebedf2;
}
.maid-result-ref {
    font-size: 0.8rem;
    color: #7a8698;
    margin-top: 0.6rem;
    font-weight: 700;
}
.maid-result-body {
    flex: 1;
}
.maid-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.maid-result-name {
    font-size: 1.85rem;
    font-weight: 700;
}
.maid-result-profile-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    white-space: nowrap;
}
.maid-result-profile-link:hover {
    text-decoration: underline;
}
.maid-result-description {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #4f5c71;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.maid-result-age {
    background: #eaf0fa;
    color: #4f617a;
    border-radius: 8px;
    font-size: 0.88rem;
    padding: 0.15rem 0.5rem;
    font-weight: 700;
}
.maid-result-meta {
    font-size: 1rem;
    color: #4f5c71;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid #e8edf4;
    padding-bottom: 0.75rem;
}
.maid-skill-title {
    letter-spacing: 0.1em;
    color: #8290a3;
    font-size: 0.83rem;
    font-weight: 700;
}
.maid-skill-tags {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.maid-skill-tag {
    background: #dbeafe;
    color: #2f6fb8;
    border: 1px solid #aecaea;
    border-radius: 999px;
    padding: 0.23rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
}
.maid-skill-empty {
    color: #8594a8;
    font-size: 0.86rem;
}
.maid-result-cta {
    border-left: 1px solid #ebeff5;
    padding-left: 1rem;
}
.maid-salary-title {
    color: #8d9ab0;
    font-size: 0.8rem;
    text-align: right;
}
.maid-salary-value {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    text-align: right;
}
.maid-salary-value small {
    font-size: 1rem;
    color: #8f9bb0;
    font-weight: 500;
}
.infinite-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #607188;
    padding: 1rem 0;
}
.maid-state {
    background: #fff;
    border: 1px dashed #cad4e2;
    border-radius: 12px;
    color: #5e6e84;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
}
.maid-skeleton-list {
    display: grid;
    gap: 1rem;
}
.maid-skeleton-card {
    border: 1px solid #e2e7ef;
    border-radius: 16px;
    padding: 1rem;
    background: #fff;
    display: flex;
    gap: 0.8rem;
}
.maid-skeleton-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    flex-shrink: 0;
}
.maid-skeleton-lines {
    flex: 1;
    display: grid;
    gap: 0.7rem;
}
.line {
    height: 14px;
    border-radius: 8px;
}
.line.long {
    width: 65%;
}
.line.short {
    width: 38%;
}
.shimmer {
    background: linear-gradient(90deg, #f1f3f7 20%, #e6eaf2 35%, #f1f3f7 50%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite linear;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Helper Public Profile */
.helper-profile-page {
    color: #23252d;
}
.helper-card {
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(18, 22, 33, 0.04);
}
.helper-overview-card {
    padding: 28px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 20px;
    border-top: 5px var(--brand-primary) solid;
    margin-bottom: 28px;
}
.helper-overview-left {
    display: contents;
}
.helper-overview-left > .d-flex {
    grid-column: 1;
    grid-row: 1 / span 3;
}
.helper-avatar-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #f2f3f8;
    overflow: hidden;
    flex-shrink: 0;
}
.helper-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ebedf2;
}
.helper-summary {
    display: contents;
}
.helper-title-row {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.helper-name {
    font-size: 2.6rem;
    margin: 0;
    font-weight: 700;
}
.helper-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 10px;
    line-height: 1;
}
.helper-pill-success {
    background: #e6f7ea;
    color: #1f8f4a;
}
.helper-pill-blue {
    background: #e5eefc;
    color: #2858b8;
}
.helper-meta {
    grid-column: 2 / 4;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
    color: #5f6371;
    font-size: 1.05rem;
}
.helper-meta i {
    margin-right: 6px;
    color: #7d8190;
}
.helper-stat-grid {
    grid-column: 2 / 4;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.helper-stat-item {
    border: 1px solid #ececf3;
    border-radius: 12px;
    padding: 12px;
    background: #fcfcff;
}
.helper-stat-label {
    margin: 0 0 4px;
    color: #7a7f90;
    font-size: 0.9rem;
}
.helper-stat-value {
    margin: 0;
    font-weight: 700;
    font-size: 1.25rem;
}
.helper-overview-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    align-self: flex-start;
}
.helper-own-profile-actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.helper-settings-dropdown {
    display: inline-flex;
}
.helper-settings-menu {
    min-width: 310px;
    padding: 10px;
    border: 1px solid #e5e7ef;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(26, 28, 37, 0.14);
}
.helper-settings-menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding: 8px 6px;
}
.helper-settings-label {
    color: #4b5565;
    font-weight: 700;
    line-height: 1.25;
}
.helper-settings-edit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border-radius: 10px;
    color: #c14079;
    font-weight: 700;
}
.helper-settings-edit-link:hover,
.helper-settings-edit-link:focus {
    color: #a92f64;
    background: #fff1f7;
}
.helper-view-profile-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}
.helper-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e3e6ee;
    background: #fff;
    color: #c14079;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.helper-icon-btn:hover,
.helper-icon-btn:focus {
    border-color: #c14079;
    color: #c14079;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(193, 64, 121, 0.14);
}
.helper-icon-btn.active,
.helper-icon-btn[aria-pressed="true"] {
    border-color: #c14079;
}
.helper-section-card {
    padding: 28px;
}
.helper-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.helper-section-title {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 700;
}
.helper-section-title i {
    color: #8b4edc;
    margin-right: 8px;
}
.helper-personality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.helper-personality-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--trait-bg, #f1f2f7);
    color: var(--trait-color, #6c757d);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
}
.helper-about {
    color: #3f4351;
    line-height: 1.7;
}
.helper-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.helper-skill-item {
    border: 1px solid #ececf3;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
}
.helper-skill-item i {
    color: var(--bs-primary);
}
.helper-skill-item .helper-match-icon {
    width: 1rem;
    text-align: center;
}
.helper-match-icon--match {
    color: #16a34a !important;
}
.helper-match-icon--miss {
    color: #dc2626 !important;
}
.helper-skill-empty {
    color: #7a7f90;
    font-weight: 500;
}
.helper-language-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.helper-language-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.helper-language-name-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.helper-language-name-wrap .helper-match-icon {
    width: 1rem;
    text-align: center;
}
.helper-language-level {
    background: #f1f2f7;
    color: #6d7283;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.8rem;
    font-weight: 600;
}
.helper-language-stars {
    display: flex;
    gap: 3px;
    color: #c3c6d2;
}
.helper-language-stars .active {
    color: #f4b629;
}
.helper-terms-card {
    padding: 0;
    overflow: hidden;
    border-color: #efc5d7;
}
.helper-terms-header {
    margin: 0;
    padding: 16px 18px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(180deg, #c23d79 0%, #a13168 100%);
}
.helper-terms-header i {
    margin-right: 8px;
}
.helper-terms-body {
    padding: 22px 22px 20px;
}
.helper-terms-label {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a8e9b;
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 700;
}
.helper-terms-salary {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}
.helper-terms-salary .helper-match-icon {
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 0.45rem;
    flex: 0 0 auto;
}
.helper-terms-salary small {
    font-size: 1.05rem;
    color: #666c7b;
    font-weight: 600;
}
.helper-negotiable-badge {
    display: inline-block;
    margin-top: 8px;
    background: #d5f4df;
    color: #1f8f4a;
    border-radius: 6px;
    font-size: 0.8rem;
    padding: 3px 9px;
    font-weight: 700;
}
.helper-terms-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.helper-terms-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #444958;
}
.helper-terms-row i {
    color: #8b90a1;
    margin-right: 6px;
}
.helper-terms-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.helper-terms-actions.helper-terms-actions-single {
    grid-template-columns: 1fr;
}
.helper-terms-actions .btn {
    border-radius: 10px;
    font-weight: 700;
}
.share-action-btn {
    border-color: #6f7684;
    color: #4b5563;
    background: #fff;
}
.share-action-btn:hover,
.share-action-btn:focus,
.share-action-btn:active {
    border-color: #6f7684;
    color: #1f2937;
    background: #f8fafc;
    box-shadow: none;
}
.share-action-btn i {
    color: #2f6fb8;
}
.share-modal-content {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}
.share-modal-header {
    display: flex;
    align-items: center;
    padding: 0.95rem 1rem;
    border-bottom: 0;
    background: linear-gradient(180deg, #c23d79 0%, #b33771 100%);
}
.share-modal-header .modal-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}
.share-modal-close {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.26);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.share-modal-body {
    padding: 1.25rem 1rem 1rem;
}
.share-modal-copy {
    color: #2f3640;
    font-size: 1.05rem;
}
.share-modal-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.share-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.share-modal-icon:hover,
.share-modal-icon:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}
.share-facebook {
    background: #4267b2;
}
.share-x {
    background: #000;
}
.share-whatsapp {
    background: #25d366;
}
.share-telegram {
    background: #229ed9;
}
.share-linkedin {
    background: #0a66c2;
}
.share-modal-divider {
    margin: 0 0 1rem;
    border-color: #dbe1ea;
    opacity: 1;
}
.share-modal-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}
.share-modal-link-input {
    border-radius: 10px 0 0 10px;
    border-right: 0;
    font-size: 1rem;
}
.share-modal-copy-btn {
    min-width: 92px;
    border-radius: 0 10px 10px 0;
    border-color: #94a3b8;
    color: #64748b;
}
.share-modal-copy-btn:hover,
.share-modal-copy-btn:focus,
.share-modal-copy-btn:active {
    border-color: #64748b;
    color: #475569;
    background: #f8fafc;
    box-shadow: none;
}
.helper-verified {
    margin-top: 16px;
    text-align: center;
    color: #8d92a1;
    font-size: 0.88rem;
}
.helper-verified i {
    margin-right: 6px;
}

/* Employer Job Posts */
.section-heading {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.section-kicker {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e11d48;
}
.salary-panel {
    padding: 1.25rem;
    border: 1px solid #fbcfe8;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fffafc 0%, #ffffff 100%);
}
.salary-badge {
    background-color: #fce4ec;
    color: #c2185b;
    font-size: 0.9rem;
    padding: 8px 16px;
}
.readonly-field {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    background: #f8fafc;
    color: #1f2937;
}
.job-card-description {
    margin-top: 1rem;
}
.job-card-description-text {
    font-size: 0.98rem;
    color: #4f5c71;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.readonly-field-lg {
    min-height: 140px;
    align-items: flex-start;
    white-space: pre-wrap;
}
.job-description-content {
    display: block;
    white-space: normal;
}
.job-description-content > *:last-child {
    margin-bottom: 0;
}
.empty-state-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1f2;
    color: #e11d48;
    font-size: 1.5rem;
}
.mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #fff1f2;
    color: #be123c;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-badge-published {
    background: #dcfce7;
    color: #166534;
}
.status-badge-draft {
    background: #fef3c7;
    color: #92400e;
}
.status-badge-closed {
    background: #e5e7eb;
    color: #374151;
}

.job-post-actions-toggle {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.job-posts-table-card,
.job-posts-table-responsive {
    overflow: visible;
}
.job-posts-table-card .dropdown-menu {
    z-index: 1050;
}
.job-posts-table-card thead th:first-child {
    border-top-left-radius: 1rem;
}
.job-posts-table-card thead th:last-child {
    border-top-right-radius: 1rem;
}
.first-job-alert {
    background: linear-gradient(135deg, #fff8e6 0%, #fff1f7 100%);
    border: 2px solid rgba(193, 64, 121, 0.28);
    border-left: 6px solid var(--bs-primary);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(193, 64, 121, 0.14);
}
.first-job-alert__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: var(--bs-primary);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 8px 18px rgba(193, 64, 121, 0.24);
}
.first-job-alert__message {
    color: #352531;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .maid-filters-shell,
    .helper-terms-sticky {
        position: sticky;
        top: 108px;
    }
    .maid-filters-shell .offcanvas-header {
        display: none;
    }
    .maid-filters-shell .offcanvas-body {
        padding: 1rem;
    }
}

@media (max-width: 991.98px) {
    .direct-hire-intro {
        position: static;
        max-width: 680px;
    }
    .why-direct-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-direct-header {
        max-width: 720px;
    }
    .cost-direct-panel,
    .agency-reasons-panel {
        padding: 1.75rem;
    }
    .maid-filters-shell {
        border-radius: 0;
        border: 0;
    }
    .maid-filters-form {
        max-height: none;
    }
    .maid-results-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .maid-filter-actions {
        align-items: flex-start;
        flex-direction: column;
    }
    .maid-sort-wrap .form-select {
        min-width: 0;
        width: 100%;
    }
    .maid-result-card {
        grid-template-columns: 1fr;
    }
    .maid-result-cta {
        border-left: 0;
        border-top: 1px solid #ebeff5;
        padding-left: 0;
        padding-top: 0.9rem;
    }
    .maid-salary-title,
    .maid-salary-value {
        text-align: left;
    }
    .helper-overview-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 14px;
    }
    .helper-overview-left,
    .helper-summary {
        display: contents;
    }
    .helper-overview-left > .d-flex {
        grid-column: 1;
        grid-row: 1;
        align-items: flex-start !important;
    }
    .helper-title-row {
        grid-column: 1;
        grid-row: 2;
        min-width: 0;
        margin-bottom: 0;
    }
    .helper-meta {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-bottom: 0;
    }
    .helper-overview-actions {
        grid-column: 2;
        grid-row: 1;
        align-self: flex-start;
        justify-content: flex-end;
    }
    .helper-stat-grid {
        grid-column: 1 / -1;
        grid-row: 4;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .job-posts-table-responsive {
        overflow-x: auto;
        padding-bottom: 9rem;
    }
}

@media (max-width: 767.98px) {
    .direct-hire-step {
        grid-template-columns: 3.25rem minmax(0, 1fr);
        min-height: auto;
    }
    .direct-hire-step:not(:last-child)::after {
        top: 3.5rem;
        bottom: -1.1rem;
        left: 1.6rem;
    }
    .direct-hire-step-number {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 0.9rem;
        font-size: 1.05rem;
    }
    .direct-hire-step-body {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 1rem;
    }
    .direct-hire-step:hover .direct-hire-step-body {
        transform: none;
    }
    .direct-hire-step-icon {
        width: 2.35rem;
        height: 2.35rem;
    }
    .why-direct-panel {
        padding: 1.5rem;
        border-radius: 1.15rem;
    }
    .why-direct-item {
        padding: 1rem;
    }
    .cost-direct-panel,
    .agency-reasons-panel {
        padding: 1.25rem;
        border-radius: 1.15rem;
    }
    .cost-direct-table {
        font-size: 0.9rem;
    }
    .cost-direct-table th,
    .cost-direct-table td {
        padding: 0.65rem 0.75rem;
    }
    .sm-register {
        background-position-y: 5%;
        min-height: calc(100vh - 132px);
    }
    .navbar-brand img {
        width: 140px;
    }
    .floating-buttons {
        bottom: 15px;
    }
    .job-listing-card {
        border-radius: 22px;
        padding: 20px;
    }
    .job-listing-title {
        font-size: 1.35rem;
        min-height: calc(1.2em * 2);
    }
    .job-listing-family {
        font-size: 1.1rem;
    }
    .job-listing-posted {
        font-size: 0.92rem;
    }
    .job-listing-info {
        border-radius: 18px;
        padding: 14px 16px;
    }
    .job-listing-info p {
        font-size: 1rem;
    }
    .job-apply-btn {
        border-radius: 15px;
        padding: 11px 16px;
    }
    .job-save-btn {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.1rem;
    }
    .language-skill-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .language-name-col {
        max-width: 100%;
    }
    .language-rating-col {
        align-items: flex-start;
    }
    .language-row-action {
        width: auto;
        justify-content: flex-start;
    }
    .maid-result-main {
        flex-direction: column;
    }
    .maid-result-avatar-wrap {
        text-align: left;
    }
    .maid-result-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .direct-hire-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .direct-hire-step {
        grid-template-columns: 2.75rem minmax(0, 1fr);
    }
    .direct-hire-step:not(:last-child)::after {
        left: 1.36rem;
    }
    .direct-hire-step-number {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.8rem;
    }
    .direct-hire-step h3 {
        font-size: 1rem;
    }
    .direct-hire-step p {
        font-size: 0.9rem;
    }
    .why-direct-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .why-direct-panel {
        padding: 1.15rem;
    }
    .why-direct-item {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .why-direct-header p,
    .why-direct-item p {
        font-size: 0.92rem;
    }
    .cost-direct-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .agency-reasons-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .cost-direct-panel,
    .agency-reasons-panel {
        padding: 1rem;
    }
    .cost-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }
    .cost-direct-table {
        min-width: 0;
        display: block;
        border-collapse: separate;
        border-spacing: 0;
    }
    .cost-direct-table thead {
        display: none;
    }
    .cost-direct-table tbody {
        display: grid;
        gap: 0.85rem;
    }
    .cost-direct-table tr {
        display: block;
        overflow: hidden;
        border: 1px solid #d8dce2;
        border-radius: 8px;
        background: #ffffff;
    }
    .cost-direct-table tbody th {
        display: block;
        width: 100%;
        padding: 0.8rem 0.9rem;
        border: 0;
        border-bottom: 1px solid #e5e8ed;
        background: #282828;
        color: #ffffff;
        text-align: left;
    }
    .cost-direct-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 0.9rem;
        border: 0;
        border-bottom: 1px solid #edf0f3;
        text-align: left;
    }
    .cost-direct-table td:last-child {
        border-bottom: 0;
    }
    .cost-direct-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.25rem;
        color: #5f6670;
        font-weight: 800;
        text-align: left;
    }
    .cost-direct-save {
        background: #eaf9ef;
    }
    .cost-direct-total th {
        background: var(--bs-primary);
    }
    .cost-direct-total td {
        background: #fff0f4;
    }
    .cost-direct-notes {
        font-size: 0.8rem;
    }
    .agency-reason-item {
        padding-left: 0.85rem;
    }
    .helper-overview-card,
    .helper-section-card {
        padding: 16px;
    }
    .helper-avatar-wrap {
        width: 96px;
        height: 96px;
    }
    .helper-name {
        font-size: 1.7rem;
    }
    .helper-meta {
        font-size: 1rem;
        gap: 10px;
    }
    .helper-stat-grid,
    .helper-skills-grid,
    .helper-terms-actions {
        grid-template-columns: 1fr;
    }
    .share-modal-icons {
        gap: 0.8rem;
    }
    .share-modal-icon {
        width: 44px;
        height: 44px;
    }
    .share-modal-link-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .share-modal-link-input,
    .share-modal-copy-btn {
        border-radius: 10px;
        border-right: 1px solid #ced4da;
    }
}

@media (min-width: 768px) {
    .create-job-post-back-link {
        align-self: flex-start;
        padding-top: 0.25rem;
    }
}
