:root {
    /* Primary Colors */
    --mainColor: #5589C0;        /* أزرق أساسي */
    --secondColor: #0C2240;   /* كحلي داكن */
    --secondColor2: #5496BF;     /* أزرق فاتح مساعد */
    --secondColor3: #F2F2F2;

    /* Neutral / Background */
    --bgColor: #F5F8FC;
    --cardBg: #FFFFFF;
    --borderColor: #E3EAF3;

    /* Text */
    --textPrimary: #0C2240;
    --textSecondary: #5C6F82;
    --textMuted: #8FA1B3;

    /* Status Colors */
    --successColor: #2FA36B;
    --warningColor: #F4B740;
    --dangerColor: #E25555;
    --infoColor: #548DBF;

    /* Main Color Shades (Opacity) */
    --mainColor90: rgba(84, 141, 191, 0.9);
    --mainColor80: rgba(84, 141, 191, 0.8);
    --mainColor60: rgba(84, 141, 191, 0.6);
    --mainColor40: rgba(84, 141, 191, 0.4);
    --mainColor20: rgba(84, 141, 191, 0.2);
    --mainColor10: rgba(84, 141, 191, 0.1);

    /* Hover / Active */
    --hoverColor: #4A7FAE;
    --activeColor: #3F6E9A;

    /* Shadow */
    --BigShadow: 0px 8px 24px rgba(84, 141, 191, 0.15);

    --black: #000000;
    --white: #ffffff;
    --gray: #ccc;
    --transition: all 0.3s ease-in-out;
    --shadow: 0px 2px 4px #00000020;
}

.maids-grid {
    margin: 0;
}


.maid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.maid-card .cv_details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.maid-card__image {
    width: 100%;
    text-align: center;
}

.maid-card__image a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* .maid-card__image img {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
} */

.maid-card__info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.maid-card__info-list li {
    width: auto !important;
}

.maid-card__info-list li span {
    color: #8d92a1;
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.maid-card__info-list li h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e2432;
    margin: 0;
    line-height: 1.4;
}

.maid-card .button {
    margin-top: auto;
}

.maid-card .button a {
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.maid-card .button a.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.maids-page {
    background: #f7f8fb;
}

.maids-hero {
    /* padding: 48px 0 32px; */
    padding: 72px 0 24px;
    margin-bottom: 8px;
    /* background: linear-gradient(135deg, #e9f1ff 0%, #e8fff7 100%); */
    background: linear-gradient(135deg, var(--mainColor40) 0%, var(--mainColor90) 100%);
    /* border-radius: 26px; */
    position: relative;
    overflow: hidden;
}

.maids-hero::before,
.maids-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(15, 99, 255, 0.12);
    filter: blur(30px);
}

.maids-hero::before {
    top: -60px;
    left: -60px;
}

.maids-hero::after {
    bottom: -80px;
    right: -40px;
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    /* color: #0f63ff; */
    color: var(--secondColor3);
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-title {
    /* font-size: 36px; */
    font-size: 28px;
    font-weight: 700;
    /* color: #0b1224; */
    color: var(--secondColor3);
    margin-bottom: 10px;
}

.hero-lead {
    max-width: 720px;
    color: var(--secondColor3);
    margin-bottom: 12px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 12px;
    color: #0f172a;
    background: #f5f7fb;
}

.pill-primary {
    background: #0f63ff;
    border-color: #0f63ff;
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 99, 255, 0.22);
}

.pill-soft {
    background: #eef2ff;
    border-color: #e3e7f8;
    color: #1f2937;
}

.pill-outline {
    background: transparent;
    border-color: var(--secondColor3);
    color: var(--secondColor3);
}

.pill-success {
    background: #e7f8f0;
    border-color: #b6ead1;
    color: #0f5132;
}

.pill-warning {
    background: #fff4e5;
    border-color: #ffe2bd;
    color: #92400e;
}

.hero-stats {
    background: var(--mainColor80);
    border: 1px solid #e6e9f2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 12px;
    display: grid;
    gap: 10px;
    display: flex;;
}

.hero-stat {
    background: var(--mainColor90);
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    flex: 1;
}

.hero-stat small {
    display: block;
    color: var(--secondColor3);
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-stat strong {
    font-size: 20px;
    color: var(--secondColor3);
    display: block;
}

.hero-stat span {
    color: var(--secondColor3);
    font-size: 12px;
}

.hero-cta {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f63ff;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(15, 99, 255, 0.25);
}

.maids-layout {
    padding: 8px 0 36px;
}

@media (max-width: 767px) {
    .maids-hero {
        padding: 56px 0 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-stats {
        padding: 10px;
    }

    .hero-stat {
        padding: 8px;
    }
}

.maids-toolbar {
    background: #fff;
    border: 1px solid #e6e9f2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.toolbar-title h3 {
    margin: 6px 0 4px;
    font-weight: 800;
    color: #0b1224;
}

.toolbar-hint {
    margin: 0;
    color: #4b5563;
}

.toolbar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f6f8fc;
    border: 1px solid #e6e9f2;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: #111827;
}

.filter-shell {
    position: sticky;
    top: 120px;
}

.small-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e6e9f2;
    border-radius: 16px 16px 0 0;
    padding: 12px 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.filter-title {
    margin: 0;
    font-weight: 700;
    color: #0b1224;
}

.openfilter {
    background: #0f63ff;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 10px 18px rgba(15, 99, 255, 0.22);
}

.filter-card {
    background: #fff;
    border: 1px solid #e6e9f2;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    padding: 18px;
}

.filter-form .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.filter-form .head h3 {
    margin: 2px 0 0;
    font-weight: 800;
}

/* .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 14px;
} */

/* .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f6f8fc;
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip input {
    appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #cbd3e4;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.filter-chip input:checked {
    border-color: #0f63ff;
    box-shadow: 0 0 0 3px rgba(15, 99, 255, 0.15);
    background: #0f63ff;
}

.filter-chip span {
    font-weight: 600;
    color: #0b1224;
} */

/* .field {
    background: #f6f8fc;
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.field label {
    font-weight: 700;
    color: #0b1224;
    margin-bottom: 6px;
} */

/* .filter-footer {
    display: flex;
    justify-content: flex-end;
} */

/* .apply {
    background: #0f63ff;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(15, 99, 255, 0.24);
} */

@media (max-width: 991px) {

    .filter-shell {
        position: static;
    }

    .filter-card {
        position: fixed;
        inset: 0;
        height: 100vh;
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: all 0.25s ease;
        z-index: 999;
        border-radius: 18px;
    }

    .filter-card.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}


.pill {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.pill-primary { background: #eef2ff; color: #4f46e5; }
.pill-success { background: #ecfdf5; color: #10b981; }
.pill-warning { background: #fffbeb; color: #f59e0b; }

.meta-item {
    font-size: 13px;
    color: #94a3b8;
}



.nationalities-sec{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 0 0;
    max-height: 210px;
    overflow-y: auto;
}

.nationalities-sec .nationality-container{
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
    border-radius: 12px;
    transition: var(--transition);
}

.nationalities-sec .nationality-container img{
    /* width: 72px;
    height: 50px; */
    width: 65px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.nationalities-sec .nationality-container .nationality-text{
    text-align: center;
    font-weight: 600;
    /* color: #0b1224; */
    background-color: var(--secondColor);
    color: var(--secondColor3);
    padding-inline: 2px;
    border-radius: 8px;

    font-size: 13px;
}

.nationalities-sec .nationality-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(12, 34, 64, 0.12);
    background: rgba(255, 255, 255, 0.6);
}

.nationalities-sec .nationality-container.is-active {
    background: rgba(84, 141, 191, 0.15);
    box-shadow: 0 12px 20px rgba(84, 141, 191, 0.25);
}

.nationalities-sec .nationality-container.is-active .nationality-text {
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
}

/* الحاوية الكلية لضمان عدم التأثير على العناصر الخارجية */
.filter-wrapper {
    width: 100%;
    margin-block: 30px;
    direction: rtl;
}

/* الشريط الرئيسي للفلتر */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* تنسيق مجموعات الخيارات (التي كانت Chips) */
.job-types-bar {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
}

.type-item {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.type-item input { display: none; }

.type-item span {
    padding: 6px 18px;
    background: #fdfdfd;
    border: 1px solid var(--secondColor);
    border-radius: 50px;
    font-size: 13px;
    transition: 0.3s;
    color: var(--secondColor);
}

.type-item span:hover {
    background: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor);
}

.type-item input:checked + span {
    background: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* تنسيق الحقول الفردية */
.filter-group {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-right: 5px;
}

.filter-group label i {
    color: #2563eb;
    margin-left: 5px;
}

/* تخصيص الـ Select ليناسب الشكل الأفقي */
.select-custom {
    width: 100% !important;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 0 10px;
    font-size: 14px;
    color: #334155;
    background-color: #f8fafc;
    transition: border-color 0.3s;
}

.select-custom:focus {
    border-color: #2563eb;
    outline: none;
}

/* زر البحث */
.btn-search {
    background: var(--mainColor);
    color: var(--secondColor3);
    border: none;
    padding: 0 25px;
    height: 42px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto; /* للمحاذاة مع الحقول */
    transition: 0.3s;
}

.btn-search:hover {
    background: var(--secondColor);
    transform: translateY(-1px);
}

/* للشاشات الصغيرة */
@media (max-width: 991px) {
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group {
        width: 100%;
    }
}

.filter-group .dropdown.bootstrap-select{
    width: 100% !important;
}

/* Maid CV card redesign */
.cv.maid-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%);
    border: 1px solid #e4ebf5;
    border-radius: 20px;
    box-shadow: 0 20px 55px rgba(12, 34, 64, 0.08);
    direction: rtl;
    border: 1px solid var(--secondColor);
    transition: all 0.2s ease-in;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.maids-grid > [class*="col-"] {
    display: flex;
}

.maids-grid .cv.maid-card {
    width: 100%;
}

.cv.maid-card:hover{
    border: 3px solid var(--mainColor);
}

.cv.maid-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 12%, rgba(84, 141, 191, 0.18), transparent 42%),
        radial-gradient(circle at 82% 4%, rgba(12, 34, 64, 0.18), transparent 38%);
    opacity: 0.9;
    pointer-events: none;
}

.cv.maid-card > * {
    position: relative;
    z-index: 1;
}

.cv.maid-card .maid-card__header {
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    background: linear-gradient(90deg, rgba(84, 141, 191, 0.12), rgba(12, 34, 64, 0.06));
    border-bottom: 1px solid #e7eef7;
}

.cv.maid-card .maid-card__tags {
    gap: 8px;
}

.cv.maid-card .maid-card__tags .pill {
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 700;
    background: rgba(84, 141, 191, 0.1);
    color: var(--secondColor);
    border: 1px solid rgba(84, 141, 191, 0.18);
}

.cv.maid-card .maid-card__tags .pill-primary {
    color: #fff;
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
    border: none;
    box-shadow: 0 12px 24px rgba(84, 141, 191, 0.35);
}

.cv.maid-card .maid-card__tags .pill-success {
    background: #e5f7ee;
    color: #1b7a4c;
    border-color: #bce8cf;
}

.cv.maid-card .maid-card__tags .pill-warning {
    background: #fff5e7;
    color: #9d5800;
    border-color: #ffd9a3;
}

.cv.maid-card .maid-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4ebf5;
    color: var(--textSecondary);
    box-shadow: 0 8px 18px rgba(12, 34, 64, 0.06);
}

.cv.maid-card .maid-card__meta i {
    color: var(--mainColor);
}

.cv.maid-card .maid-card__meta span .pass_num {
    font-weight: 700;
    font-size: 13.5px;
}

.cv.maid-card .cv_details {
    gap: 10px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.cv.maid-card .maid-card__image {
    /* padding: 22px 22px 10px; */
    padding: 10px 16px 6px;
    text-align: center;
}

.cv.maid-card .maid-card__image .swiper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
}

.cv.maid-card .maid-card__image .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv.maid-card .maid-card__image .swiper-pagination {
    bottom: 6px;
}

.cv.maid-card .maid-card__image .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    opacity: 0.35;
    background: #0c2240;
}

.cv.maid-card .maid-card__image .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--mainColor);
}

.cv.maid-card .maid-card__image .swiper-button-prev,
.cv.maid-card .maid-card__image .swiper-button-next {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondColor);
    box-shadow: 0 6px 14px rgba(12, 34, 64, 0.12);
}

.cv.maid-card .maid-card__image .swiper-button-prev:after,
.cv.maid-card .maid-card__image .swiper-button-next:after {
    font-size: 12px;
}

.cv.maid-card .maid-card__image a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cv.maid-card .maid-card__image a::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(84, 141, 191, 0.16), rgba(12, 34, 64, 0.12));
    filter: blur(18px);
    z-index: 0;
}

.cv.maid-card .maid-card__image img {
    /* width: 180px; */
    width: 300px;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    max-width: 100%;
    border-radius: 18px;
    border: 6px solid #ffffff;
    box-shadow: 0 18px 32px rgba(12, 34, 64, 0.12);
    position: relative;
    z-index: 1;
    background: #fff;
}

.cv.maid-card .maid-card__name {
    margin: 0 16px 8px;
    padding: 8px 10px;
    background: linear-gradient(135deg, #2c4b73 0%, #4e7fb4 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(12, 34, 64, 0.15);
}

.cv.maid-card .maid-card__name span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.cv.maid-card .maid-card__name h3 {
    margin: 4px 0 0;
    font-size: 18px;
    font-weight: 800;
    color: #f7fbff;
}

.cv.maid-card .maid-card__stats {
    margin: 0 16px 10px;
    padding: 10px;
    background: #f3f7fc;
    border: 1px solid #e1e9f4;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.cv.maid-card .maid-card__stats .stat {
    background: #ffffff;
    border: 1px solid #e7eef7;
    border-radius: 12px;
    padding: 8px 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(12, 34, 64, 0.05);
}

.cv.maid-card .maid-card__stats .stat small {
    color: #607089;
    font-weight: 700;
}

.cv.maid-card .maid-card__stats .stat strong {
    color: var(--secondColor);
    /* font-size: 18px; */
    font-size: 16px;
}

.cv.maid-card .maid-card__info-list {
    padding: 0 16px 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    flex: 1 1 auto;
}

.cv.maid-card .maid-card__notice {
    margin: 0 16px 12px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #fff3e6;
    border: 1px dashed #f4c79d;
    color: #8a4f00;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.cv.maid-card .maid-card__info-list li {
    background: #ffffff;
    border: 1px solid #e4ebf5;
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 8px 20px rgba(12, 34, 64, 0.04);
}

.cv.maid-card .maid-card__info-list li span {
    color: #607089;
    font-size: 12px;
    font-weight: 700;
}

.cv.maid-card .maid-card__info-list li h3 {
    color: var(--secondColor);
    font-size: 15px;
}

.cv.maid-card .maid-card__info-list li.wide {
    grid-column: span 2;
    background: #fdf7f1;
    border-color: #f4d9b5;
}

.cv.maid-card .maid-card__stack {
    margin-top: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 6px;
}

.cv.maid-card .maid-card__stack-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 8px;
    background: #f6f9fe;
    border: 1px solid #e1e9f5;
    border-radius: 10px;
}

.cv.maid-card .maid-card__stack-label {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12px;
    font-weight: 700;
    color: #41556e;
    text-align: start;
    word-break: break-word;
}

.cv.maid-card .maid-card__stack-level {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondColor);
    background: #ffffff;
    border: 1px solid #dfe8f5;
    padding: 3px 6px;
    border-radius: 999px;
    white-space: nowrap;
}

.cv.maid-card .maid-card__stack-note {
    grid-column: 1 / -1;
    padding: 6px 8px;
    background: #fff7ec;
    border: 1px dashed #f2d3a5;
    border-radius: 10px;
    font-size: 12px;
    color: #7a4b0a;
}

.cv.maid-card .maid-card__info-list .d-block {
    margin-top: 4px;
    padding-right: 0;
    border: 0;
    color: var(--secondColor);
}

.cv.maid-card .maid-card__footer {
    padding: 0 16px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.cv.maid-card .icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    /* background: #f1f5ff;
    color: var(--secondColor); */
    background: #ea545530;
    color: #a81313;
    border: 1px solid #dfe8f5;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(12, 34, 64, 0.05);
    transition: var(--transition);
}

.cv.maid-card .icon-btn:hover {
    background: #f36f6f30;
    color: #e81919;
    transform: translateY(-1px);
}

.cv.maid-card .icon-btn.details-btn {
    background: #e9f1ff;
    color: #1f3b5b;
    border-color: #cfe0f4;
}

.cv.maid-card .icon-btn.details-btn:hover {
    background: #dbe9ff;
    color: #0c2240;
}

.cv.maid-card .button {
    margin: 0;
    flex: 1;
}

.cv.maid-card .button a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
    box-shadow: 0 14px 30px rgba(84, 141, 191, 0.25);
}

.cv.maid-card .button a:hover {
    background: linear-gradient(120deg, var(--mainColor), var(--secondColor2));
}

.cv.maid-card .button a.whatsapp {
    background: linear-gradient(120deg, #1ea754, #29d865);
    box-shadow: 0 14px 24px rgba(30, 167, 84, 0.2);
}

.cv.maid-card .button a.whatsapp:hover {
    background: linear-gradient(120deg, #1b944b, #22c15a);
}

@media (max-width: 767px) {
    .cv.maid-card .maid-card__image img {
        height: 210px;
    }

    .cv.maid-card .maid-card__stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .cv.maid-card .maid-card__info-list {
        grid-template-columns: 1fr;
    }

    .cv.maid-card .maid-card__info-list li.wide {
        grid-column: auto;
    }

    .cv.maid-card .maid-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .cv.maid-card .icon-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Type 1 order customer service dialog */
main .order-type-one .select_cutomer_services.customer-dialog {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 60%);
    border: 1px solid #e2ecf8;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(12, 34, 64, 0.12);
}

main .order-type-one .select_cutomer_services.customer-dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(84, 141, 191, 0.18), transparent 40%),
        radial-gradient(circle at 85% 4%, rgba(12, 34, 64, 0.12), transparent 38%);
    opacity: 0.9;
    pointer-events: none;
}

main .order-type-one .select_cutomer_services.customer-dialog > * {
    position: relative;
    z-index: 1;
}

main .order-type-one .select_cutomer_services .customer-dialog__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(120deg, rgba(84, 141, 191, 0.2), rgba(12, 34, 64, 0.08));
    border-bottom: 1px solid #e4ebf5;
}

main .order-type-one .select_cutomer_services .customer-dialog__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondColor), var(--mainColor));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(12, 34, 64, 0.2);
    font-size: 18px;
}

main .order-type-one .select_cutomer_services .customer-dialog__title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondColor);
}

main .order-type-one .select_cutomer_services .customer-dialog__title p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #5c6f82;
}

main .order-type-one .select_cutomer_services .customer-dialog__body {
    padding: 18px 20px 8px;
}

main .order-type-one .select_cutomer_services .customer-dialog__agents {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

main .order-type-one .select_cutomer_services .agents label.agent-card {
    cursor: pointer;
    position: relative;
    display: block;
    padding: 0;
    min-width: 0;
}

main .order-type-one .select_cutomer_services .agents label.agent-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

main .order-type-one .select_cutomer_services .agents label.agent-card .agent {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px 14px;
    border-radius: 16px;
    border: 1px solid #e2ecf8;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(12, 34, 64, 0.08);
    transition: all 0.2s ease;
    min-height: 140px;
}

main .order-type-one .select_cutomer_services .agents label.agent-card .agent__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f1f6ff;
    border: 1px solid #e2ecf8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

main .order-type-one .select_cutomer_services .agents label.agent-card .agent__avatar img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

main .order-type-one .select_cutomer_services .agents label.agent-card h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #0c2240;
}

main .order-type-one .select_cutomer_services .agents label.agent-card .agent__check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d7e4f3;
    color: #7d8ea1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.2s ease;
    box-shadow: 0 6px 12px rgba(12, 34, 64, 0.1);
}

main .order-type-one .select_cutomer_services .agents label.agent-card:hover .agent {
    transform: translateY(-2px);
    border-color: var(--mainColor);
}

main .order-type-one .select_cutomer_services .agents label.agent-card input:checked + .agent {
    border-color: var(--mainColor);
    background: linear-gradient(135deg, rgba(84, 141, 191, 0.12), #ffffff);
    box-shadow: 0 16px 30px rgba(84, 141, 191, 0.2);
}

main .order-type-one .select_cutomer_services .agents label.agent-card input:checked + .agent .agent__check {
    opacity: 1;
    transform: scale(1);
    background: #e8f8f0;
    color: #1b7a4c;
    border-color: #bfe6d2;
}

main .order-type-one .select_cutomer_services .customer-dialog__footer {
    padding: 0 20px 20px;
    display: grid;
    gap: 12px;
}

main .order-type-one .select_cutomer_services .customer-dialog__footer button,
main .order-type-one .select_cutomer_services .customer-dialog__footer a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-align: center;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
    box-shadow: 0 12px 26px rgba(84, 141, 191, 0.25);
    transition: var(--transition);
    text-decoration: none;
}

main .order-type-one .select_cutomer_services .customer-dialog__footer button:hover,
main .order-type-one .select_cutomer_services .customer-dialog__footer a:hover {
    background: linear-gradient(120deg, var(--mainColor), var(--secondColor2));
}

@media (max-width: 767px) {
    main .order-type-one .select_cutomer_services .customer-dialog__header {
        flex-direction: column;
        align-items: flex-start;
    }

    main .order-type-one .select_cutomer_services .customer-dialog__agents {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

/* Customer service modal on maids listing */
.customer-service-modal .modal-content {
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 60%);
    border: 1px solid #e2ecf8;
    box-shadow: 0 20px 50px rgba(12, 34, 64, 0.18);
    overflow: hidden;
}

.customer-service-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(120deg, rgba(84, 141, 191, 0.2), rgba(12, 34, 64, 0.08));
    border-bottom: 1px solid #e4ebf5;
}

.customer-service-modal .modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondColor);
}

.customer-service-modal__subtitle {
    margin: 6px 0 0;
    font-size: 13px;
    color: #5c6f82;
}

.customer-service-modal__maid {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1f2e45;
    margin-bottom: 14px;
}

.customer-service-modal__maid strong {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 10px;
    background: #eaf2ff;
    font-weight: 800;
    color: #0c2240;
}

.customer-service-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.customer-service-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.customer-service-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.customer-service-option__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 16px;
    border: 1px solid #e2ecf8;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(12, 34, 64, 0.08);
    transition: all 0.2s ease;
    min-height: 140px;
}

.customer-service-option__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1f6ff;
    border: 1px solid #e2ecf8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-service-option__avatar img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.customer-service-option__name {
    font-size: 14px;
    font-weight: 800;
    color: #0c2240;
}

.customer-service-option__check {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d7e4f3;
    color: #7d8ea1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.2s ease;
    box-shadow: 0 6px 12px rgba(12, 34, 64, 0.1);
}

.customer-service-option:hover .customer-service-option__card {
    transform: translateY(-2px);
    border-color: var(--mainColor);
}

.customer-service-option input:checked + .customer-service-option__card {
    border-color: var(--mainColor);
    background: linear-gradient(135deg, rgba(84, 141, 191, 0.12), #ffffff);
    box-shadow: 0 16px 30px rgba(84, 141, 191, 0.2);
}

.customer-service-option input:checked + .customer-service-option__card .customer-service-option__check {
    opacity: 1;
    transform: scale(1);
    background: #e8f8f0;
    color: #1b7a4c;
    border-color: #bfe6d2;
}

.customer-service-empty {
    padding: 16px;
    border-radius: 14px;
    background: #f7f9fd;
    color: #7b8ea3;
    text-align: center;
    border: 1px dashed #dbe6f4;
}

.customer-service-contact {
    margin-top: 16px;
    padding: 14px;
    border-radius: 16px;
    background: #f7fbff;
    border: 1px solid #e2ecf8;
}

.customer-service-contact__title {
    font-weight: 800;
    color: #0c2240;
    margin-bottom: 10px;
}

.customer-service-contact__note {
    margin-top: 8px;
    font-size: 13px;
    color: #7b8ea3;
}

.customer-service-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.customer-service-contact__meta {
    margin-top: 8px;
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: #5c6f82;
}

.customer-service-contact__line {
    display: block;
    font-weight: 700;
}

.customer-service-modal__actions {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.customer-service-proceed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
    box-shadow: 0 12px 26px rgba(84, 141, 191, 0.25);
    text-decoration: none;
    transition: var(--transition);
}

.customer-service-proceed.login {
    background: linear-gradient(120deg, #1d70b7, #4ba3e6);
}

.customer-service-proceed:hover {
    background: linear-gradient(120deg, var(--mainColor), var(--secondColor2));
    color: #ffffff;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
}

.contact-btn.whatsapp {
    background: linear-gradient(120deg, #1ea754, #29d865);
    box-shadow: 0 12px 24px rgba(30, 167, 84, 0.2);
}

.contact-btn.call {
    background: linear-gradient(120deg, #1d70b7, #4ba3e6);
    box-shadow: 0 12px 24px rgba(29, 112, 183, 0.2);
}

.contact-btn:hover {
    transform: translateY(-1px);
    color: #ffffff;
}

@media (max-width: 767px) {
    .customer-service-modal__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .customer-service-modal__grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

/* Auth modern layout */
main .auth_section.auth-section--modern {
    position: relative;
    padding: 70px 12px;
    background: radial-gradient(circle at 12% 20%, rgba(84, 141, 191, 0.18), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(12, 34, 64, 0.16), transparent 50%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    overflow: hidden;
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
}

main .auth_section.auth-section--modern::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(84, 141, 191, 0.22), transparent 70%);
    opacity: 0.85;
}

main .auth_section.auth-section--modern::after {
    content: "";
    position: absolute;
    bottom: -160px;
    right: -160px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(12, 34, 64, 0.18), transparent 70%);
    opacity: 0.85;
}

main .auth_section.auth-section--modern .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(12, 34, 64, 0.16);
    background: #ffffff;
    animation: auth-rise 0.6s ease;
    max-width: 1080px;
    margin: 0 auto;
}

.auth-shell__hero {
    padding: 38px 44px;
    color: #ffffff;
    background: linear-gradient(135deg, #0c2240 0%, #17345d 45%, #5a8fc6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.auth-shell__hero--image {
    background: linear-gradient(140deg, rgba(12, 34, 64, 0.9), rgba(84, 141, 191, 0.65)),
        url("/web/assets/images/SL1.jpg") center/cover no-repeat;
}

.auth-section--otp .auth-shell__hero--image {
    background: linear-gradient(140deg, rgba(12, 34, 64, 0.88), rgba(84, 141, 191, 0.6)),
        url("/web/assets/images/SL2.jpg") center/cover no-repeat;
}

.auth-shell__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 27, 51, 0.3), rgba(10, 27, 51, 0.65));
    opacity: 0;
    z-index: 0;
}

.auth-shell__hero--image::before {
    opacity: 1;
}

.auth-shell__hero > * {
    position: relative;
    z-index: 1;
}

.auth-shell__hero img{
    background-color: white;
    border-radius: 8px;
    height: 95px !important;
}

.auth-shell__hero::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    pointer-events: none;
    z-index: 2;
}

.auth-shell__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
    font-size: 13px;
}

.auth-shell__hero h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--secondColor3);
}

.auth-shell__hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
}

.auth-shell__steps {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 12px;
}

.auth-shell__steps li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    line-height: 1.6;
}

.auth-shell__steps i {
    margin-top: 2px;
    font-size: 18px;
    color: #d7ebff;
}

.auth-shell__panel {
    padding: 38px;
    display: flex;
    align-items: center;
    background: #ffffff;
    animation: auth-fade 0.7s ease;
}

.auth-form--modern {
    width: 100%;
    padding: 0;
    box-shadow: none;
    background: transparent;
    align-items: stretch;
}

.auth-section--modern .auth_form h2 {
    text-align: start;
    font-size: 26px;
    font-weight: 800;
    color: var(--secondColor);
}

.auth-section--modern .auth_form p {
    text-align: start;
    color: #5b6c7d;
    margin-bottom: 18px;
}

.auth-section--modern .auth_form p span {
    color: var(--mainColor);
    font-weight: 700;
}

.auth-section--modern .auth_form .input_filed label {
    color: var(--secondColor);
    font-weight: 700;
}

.auth-section--modern .auth_form .input_filed input {
    height: 52px;
    background: #f5f9ff !important;
    border-radius: 14px;
    border: 1px solid #dbe5f1;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-section--modern .auth_form .input_filed input:focus {
    border-color: var(--mainColor);
    box-shadow: 0 0 0 3px rgba(84, 141, 191, 0.18);
}

.auth-section--modern .auth_form .input_filed input.is-invalid {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.auth-section--modern .auth_form .input_filed .phone_code {
    border-radius: 14px;
    border: 1px solid #dbe5f1;
    background: #f5f9ff;
}

.auth-section--modern .auth_form .input_filed.phone::after {
    color: #334b66;
}

.auth-section--modern .auth_form .log {
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 800;
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
    box-shadow: 0 16px 30px rgba(12, 34, 64, 0.18);
}

.auth-section--modern .auth_form .log:hover {
    background: linear-gradient(120deg, var(--mainColor), var(--secondColor2));
}

.auth-form__alert {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff3f2;
    border: 1px solid #f9c2be;
    color: #b42318;
    font-size: 13px;
    margin-bottom: 14px;
}

.auth-input-hint {
    margin-top: 6px;
    font-size: 12px;
    color: #5b6c7d;
}

.auth-input-hint.is-error {
    color: #b42318;
}

.auth-section--modern #resendOtp.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.auth-section--modern .auth_form .otp-container {
    background: #f2f6fc;
    border-radius: 16px;
    padding: 18px;
    gap: 10px;
    justify-content: center;
}

.auth-section--modern .auth_form .otp-container .otp-input {
    width: 62px;
    height: 64px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #d7e4f2;
    color: var(--secondColor);
    box-shadow: 0 10px 20px rgba(12, 34, 64, 0.08);
}

.auth-section--modern .timer {
    background: #f1f6ff;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #dbe5f1;
}

.admin-auth-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #fff4e6;
    border: 1px solid #ffd8a8;
    color: #b45309;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 12px;
}

.admin-auth-tag i {
    color: #f97316;
}

.admin-auth-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #f7fbff;
    border: 1px solid #dbe5f1;
    border-radius: 12px;
    padding: 10px 12px;
    color: #0c2240;
    font-size: 13px;
    margin-bottom: 16px;
}

.admin-auth-note i {
    color: var(--mainColor);
    margin-top: 3px;
}

.admin-login-form .form-alert {
    margin: 0 0 12px;
    background: #fff8ed;
    border: 1px solid #ffe6c2;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    color: #b45309;
}

.admin-login-form .form-alert:empty {
    display: none;
}

.hidden {
    display: none !important;
}

@keyframes auth-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes auth-fade {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-shell,
    .auth-shell__panel {
        animation: none;
    }
}

@media (max-width: 991px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-shell__hero {
        padding: 30px 28px;
    }

    .auth-shell__panel {
        padding: 30px 24px 34px;
    }
}

@media (max-width: 576px) {
    .auth-section--modern .auth_form .otp-container .otp-input {
        width: 48px;
        height: 52px;
    }
}

/* User dashboard redesign */
.user-dashboard {
    background: radial-gradient(circle at 15% 20%, rgba(84, 141, 191, 0.08), transparent 50%), linear-gradient(180deg, #f7fbff 0%, #ffffff 62%);
}

.dash-hero {
    padding: 110px 12px 24px;
}

.dash-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #0c2240 0%, #1c3a66 35%, #5a8fc6 100%);
    color: #fff;
    padding: 26px 26px 16px;
    box-shadow: 0 26px 60px rgba(12, 34, 64, 0.32);
}

.dash-hero-card::before,
.dash-hero-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.3;
}

.dash-hero-card::before {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.38), transparent 60%);
}

.dash-hero-card::after {
    width: 260px;
    height: 260px;
    bottom: -120px;
    left: -70px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 62%);
}

.dash-hero-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.dash-hero-meta a {
    color: #fff;
    text-decoration: none;
}

.dash-hero-meta i {
    margin: 0 6px;
}

.dash-hero-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.dash-hero-text h1 {
    margin: 8px 0 10px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.01em;

    background: linear-gradient(90deg, var(--secondColor), var(--secondColor3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dash-hero-text p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.dash-hero .hero-pills {
    gap: 8px;
}

.dash-hero .hero-pills .pill {
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.dash-hero .pill.primary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.dash-hero .pill.success {
    background: rgba(46, 204, 113, 0.18);
    color: #e8fff3;
    border: 1px solid rgba(46, 204, 113, 0.32);
}

.dash-hero .pill.ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fbff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.dash-hero-user {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.user-glow {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 34px;
}

.user-meta h3 {
    margin: 0 0 6px;
    font-weight: 800;
    color: #fff;
}

.user-meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.user-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.user-chips span,
.user-chips .soft-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
}

.user-chips .soft-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.dash-hero-footer {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
}

.dash-hero-footer .hero-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.dash-hero-footer .hero-step i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 18px;
}

.dash-body {
    padding: 20px 12px 70px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.neo-stat {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 16px 14px;
    border: 1px solid #e3ebf5;
    box-shadow: 0 16px 36px rgba(12, 34, 64, 0.12);
    overflow: hidden;
}

.neo-stat::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    background: radial-gradient(circle at 20% 20%, rgba(84, 141, 191, 0.08), transparent 42%);
    pointer-events: none;
}

.neo-stat .stat-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.neo-stat .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(84, 141, 191, 0.14), rgba(12, 34, 64, 0.08));
    color: var(--secondColor);
    font-size: 18px;
}

.neo-stat p {
    margin: 0;
    color: #607089;
    font-weight: 700;
}

.neo-stat h3 {
    margin: 2px 0 0;
    font-weight: 800;
    color: var(--secondColor);
}

.neo-stat .stat-foot {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 700;
    color: #4b5563;
}

.neo-stat .stat-foot span{
    display: flex;
    align-items: center;
    gap: 4px;
}

.neo-stat .stat-cta {
    position: absolute;
    inset-inline-end: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #f2f6fc;
    color: var(--secondColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #e2ecf8;
}

.neo-stat.orders::before { background: linear-gradient(180deg, rgba(84, 141, 191, 0.12), transparent); }
.neo-stat.contracts::before { background: linear-gradient(180deg, rgba(46, 204, 113, 0.12), transparent); }
.neo-stat.complaints::before { background: linear-gradient(180deg, rgba(255, 183, 74, 0.14), transparent); }
.neo-stat.transfers::before { background: linear-gradient(180deg, rgba(12, 34, 64, 0.12), transparent); }

.action-grid {
    margin: 22px 0 14px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e3ebf5;
    box-shadow: 0 18px 36px rgba(12, 34, 64, 0.12);
    padding: 18px;
}

.action-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e6edf7;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.action-head .eyebrow {
    margin: 0;
    color: var(--secondColor);
}

.action-head h4 {
    margin: 2px 0 4px;
    font-weight: 800;
    color: var(--secondColor);
}

.action-head span {
    color: #5c6f82;
}

.action-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-weight: 700;
    color: #0c2240;
}

.action-meta i {
    margin-inline-end: 6px;
    color: var(--mainColor);
}

.neo-action {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #e3ebf5;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 85%);
    box-shadow: 0 12px 28px rgba(12, 34, 64, 0.08);
    color: var(--secondColor);
    text-decoration: none;
    min-height: 120px;
}

.neo-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(12, 34, 64, 0.14);
}

.neo-action .action-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eaf2ff;
    color: var(--secondColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.neo-action .action-text h6 {
    margin: 0 0 4px;
    font-weight: 800;
    color: var(--secondColor);
}

.neo-action .action-text p {
    margin: 0;
    color: #5c6f82;
}

.neo-action .action-arrow {
    position: absolute;
    inset-inline-end: 12px;
    bottom: 12px;
    color: var(--mainColor);
}

.activity-board {
    margin-top: 16px;
    display: grid;
    gap: 14px;
}

.activity-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e3ebf5;
    box-shadow: 0 16px 36px rgba(12, 34, 64, 0.12);
    padding: 16px;
}

.activity-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e6edf7;
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.activity-head h5 {
    margin: 4px 0 0;
    font-weight: 800;
    color: var(--secondColor);
}

.ghost-link {
    color: var(--secondColor);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ghost-link.small {
    font-size: 12px;
}

.activity-timeline {
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #e6edf7;
    background: #f9fbff;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: var(--secondColor);
    font-size: 18px;
}

.timeline-body h6 {
    margin: 0;
    font-weight: 800;
    color: var(--secondColor);
}

.timeline-body p {
    margin: 4px 0 6px;
    color: #5c6f82;
}

.timeline-body small {
    color: #8fa1b3;
}

.timeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    background: #eaf2ff;
    color: var(--secondColor);
}

.empty-state {
    background: #ffffff;
    border-radius: 18px;
    border: 1px dashed #d7e4f3;
    padding: 22px;
    text-align: center;
    color: #5c6f82;
}

.empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 20px;
    background: #f2f6fc;
    display: grid;
    place-items: center;
    color: var(--secondColor);
    font-size: 22px;
}

@media (max-width: 991px) {
    .dash-hero-body {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .dash-hero {
        padding: 40px 12px 18px;
    }

    .dash-hero-card {
        padding: 20px;
    }

    .dash-hero-text h1 {
        font-size: 26px;
    }

    .dash-hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .neo-action {
        min-height: 100px;
    }

    .activity-head {
        align-items: flex-start;
    }
}

/* Derived dashboard pages (shared look) */
main .setting_setion {
    padding: 40px 12px 70px;
    background: radial-gradient(circle at 18% 24%, rgba(84, 141, 191, 0.08), transparent 48%), linear-gradient(180deg, #f7fbff 0%, #ffffff 64%);
}

main .setting_setion .container {
    position: relative;
    z-index: 1;
}

main .setting_setion::after {
    content: "";
    position: absolute;
    top: 40px;
    inset-inline: 12px;
    height: 160px;
    border-radius: 26px;
    background: radial-gradient(circle at 82% 18%, rgba(12, 34, 64, 0.08), transparent 60%);
    opacity: 0.65;
    pointer-events: none;
}

main .setting_setion .content-surface,
main .setting_setion .notification,
main .setting_setion .orders .order_card,
main .setting_setion .order_status,
main .setting_setion .no_activities {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e3ebf5;
    box-shadow: 0 16px 36px rgba(12, 34, 64, 0.1);
    padding: 16px;
}

main .setting_setion .orders .nav {
    background: linear-gradient(135deg, var(--secondColor), var(--mainColor));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(12, 34, 64, 0.18);
    padding: 8px;
}

main .setting_setion .orders .nav li button {
    color: #f8fbff;
    border-radius: 10px;
    font-weight: 800;
}

main .setting_setion .orders .nav li button.active {
    background: #ffffff;
    color: var(--secondColor);
    box-shadow: 0 12px 22px rgba(12, 34, 64, 0.12);
}

main .setting_setion .orders .order_card h4 {
    font-weight: 800;
    color: var(--secondColor);
}

main .setting_setion .orders .order_card .title p,
main .setting_setion .orders .order_card .title a {
    color: var(--secondColor);
    font-weight: 800;
}

main .setting_setion .orders .order_card .pro .progress {
    height: 10px;
    background: #e8f1fb;
    border-radius: 10px;
}

main .setting_setion .orders .order_card .pro .progress .progress-bar {
    background: linear-gradient(135deg, var(--secondColor), var(--mainColor));
}

main .setting_setion .orders .order_card .time {
    color: #8fa1b3;
    font-weight: 700;
}

main .setting_setion .order_status {
    gap: 12px;
    padding: 18px;
}

main .setting_setion .order_status .progress_state h4,
main .setting_setion .order_status .progress_state h6 {
    color: var(--secondColor);
}

main .setting_setion .order_status .progress,
main .setting_setion .order_status .progress-stacked {
    height: 10px;
    background: #e8f1fb;
}

main .setting_setion .order_status .progress .progress-bar,
main .setting_setion .order_status .progress-stacked .progress-bar {
    background: linear-gradient(135deg, var(--secondColor), var(--mainColor));
}

main .setting_setion .no_activities {
    text-align: center;
    padding: 26px;
}

main .setting_setion .no_activities .no_activities_icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #f2f6fc;
    display: grid;
    place-items: center;
    color: var(--secondColor);
    margin: 0 auto 12px;
}

main .setting_setion .no_activities h5 {
    font-weight: 800;
    color: var(--secondColor);
}

@media (max-width: 768px) {
    main .setting_setion {
        padding: 32px 12px 50px;
    }
}

/* Order review (type 1 confirmation) */
main .order-review {
    display: grid;
    gap: 16px;
}

main .order-review__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

main .order-review__card {
    background: #ffffff;
    border: 1px solid #e2ecf8;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 14px 30px rgba(12, 34, 64, 0.08);
}

main .order-review__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #5c6f82;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

main .order-review__card h4 {
    margin: 0;
    font-weight: 800;
    color: #0c2240;
}

main .order-review__muted {
    margin: 6px 0 14px;
    font-size: 13px;
    color: #5c6f82;
}

main .order-review__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

main .order-review__contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 18px rgba(12, 34, 64, 0.15);
}

main .order-review__contact-btn.whatsapp {
    background: linear-gradient(120deg, #1ea754, #29d865);
}

main .order-review__contact-btn.call {
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
}

main .order-review__contact-btn:hover {
    transform: translateY(-1px);
}

main .order-review__contact-btn.is-disabled {
    pointer-events: none;
    opacity: 0.5;
    box-shadow: none;
    cursor: not-allowed;
}

main .order-review__meta {
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: #5c6f82;
}

main .order-review__maid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
}

main .order-review__maid-media {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2ecf8;
    background: #f7fbff;
}

main .order-review__maid-media img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

main .order-review__maid-title {
    font-weight: 800;
    margin-bottom: 10px;
    color: #0c2240;
}

main .order-review__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px 14px;
}

main .order-review__list li {
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: #5c6f82;
}

main .order-review__list li strong {
    color: #0c2240;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 768px) {
    main .order-review__maid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    main .order-review__maid-media {
        max-width: 180px;
        margin: 0 auto;
    }
}

/* Order details page layout */
main .order-details {
    margin-top: 4px;
}

main .order-details__card {
    background: #ffffff;
    border: 1px solid #e2ecf8;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 34px rgba(12, 34, 64, 0.08);
}

main .order-details__stack {
    display: grid;
    gap: 16px;
}

main .order-details__summary .order_status {
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

main .order-details__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #5c6f82;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

main .order-details__card--contact h4 {
    margin: 0 0 6px;
    font-weight: 800;
    color: #0c2240;
}

main .order-details__contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0;
}

main .order-details__contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease;
    box-shadow: 0 10px 18px rgba(12, 34, 64, 0.15);
}

main .order-details__contact-btn.whatsapp {
    background: linear-gradient(120deg, #1ea754, #29d865);
}

main .order-details__contact-btn.call {
    background: linear-gradient(120deg, var(--secondColor), var(--mainColor));
}

main .order-details__contact-btn.is-disabled {
    pointer-events: none;
    opacity: 0.5;
    box-shadow: none;
    cursor: not-allowed;
}

main .order-details__contact-note {
    font-size: 13px;
    color: #5c6f82;
    margin-top: 6px;
}

main .order-details__meta {
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: #5c6f82;
}

main .order-details__maid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    align-items: center;
}

main .order-details__maid-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2ecf8;
    background: #f7fbff;
}

main .order-details__maid-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

main .order-details__maid-title {
    font-weight: 800;
    color: #0c2240;
    margin-bottom: 10px;
}

main .order-details__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px 14px;
}

main .order-details__list li {
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: #5c6f82;
}

main .order-details__list li strong {
    color: #0c2240;
    font-weight: 800;
    font-size: 14px;
}

main .order-details__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

main .order-details__card .ppackage,
main .order-details__card .llocation {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

@media (max-width: 992px) {
    main .order-details__maid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    main .order-details__maid-media {
        max-width: 200px;
        margin: 0 auto;
    }

    main .order-details__actions {
        justify-content: flex-start;
    }
}
