/* =========================================================
   غسيل إكسبرس
   Main Application Stylesheet
========================================================= */

:root {
    --primary: #20a8bb;
    --primary-dark: #15899a;
    --primary-darker: #0d7484;
    --primary-soft: #e7f8fa;

    --secondary: #0c3b66;
    --secondary-light: #145680;
    --secondary-dark: #062c4f;

    --accent: #ff8a32;
    --accent-dark: #e96d16;
    --accent-soft: #fff2e8;

    --background: #f3f8fa;
    --surface: #ffffff;
    --surface-soft: #f8fbfc;

    --text: #17212b;
    --text-soft: #526875;
    --muted: #748793;

    --border: #dce9ed;
    --border-dark: #c9dce2;

    --success: #178b57;
    --success-soft: #e7f7ef;

    --danger: #d63d3d;
    --danger-soft: #fdecec;

    --warning: #db8c1e;
    --warning-soft: #fff5df;

    --shadow-xs: 0 4px 14px rgba(13, 59, 102, 0.05);
    --shadow-sm: 0 10px 30px rgba(13, 59, 102, 0.08);
    --shadow-md: 0 20px 50px rgba(13, 59, 102, 0.12);
    --shadow-lg: 0 30px 80px rgba(13, 59, 102, 0.16);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 34px;

    --header-height: 78px;
    --container-width: 1200px;
}

/* =========================================================
   Reset
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 25px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
    background:
        radial-gradient(
            circle at top right,
            rgba(32, 168, 187, 0.08),
            transparent 32%
        ),
        var(--background);
    color: var(--text);
    font-family: "Tajawal", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::selection {
    color: #ffffff;
    background: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

i {
    line-height: 1;
}

.container {
    width: min(var(--container-width), 92%);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -100px;
    right: 20px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--secondary);
}

.skip-link:focus {
    top: 20px;
}

/* =========================================================
   Header
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(201, 220, 226, 0.75);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 30px rgba(12, 59, 102, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 11px;
}

.brand-mark {
    position: relative;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow:
        0 10px 24px rgba(32, 168, 187, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-washer {
    font-size: 20px;
}

.brand-speed {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--accent);
    box-shadow: 0 3px 8px rgba(255, 138, 50, 0.35);
}

.brand-speed i {
    font-size: 8px;
}

.brand-content {
    display: grid;
    line-height: 1.2;
}

.brand-content strong {
    color: var(--secondary);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.brand-content small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.desktop-nav a {
    position: relative;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 12px;
    color: #3f5867;
    font-size: 14px;
    font-weight: 700;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.desktop-nav a:hover {
    transform: translateY(-1px);
}

.desktop-nav a i {
    font-size: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 9px;
}

.header-login,
.header-order,
.header-account {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.header-login {
    padding: 10px 15px;
    border: 1px solid var(--border);
    color: var(--secondary);
    background: #ffffff;
}

.header-login:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary-darker);
}

.header-order {
    padding: 10px 17px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow: 0 10px 22px rgba(32, 168, 187, 0.22);
}

.header-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 28px rgba(32, 168, 187, 0.3);
}

.header-account {
    justify-content: flex-start;
    padding: 6px 9px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.header-account-icon {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.header-account-text {
    display: grid;
    min-width: 80px;
    line-height: 1.2;
}

.header-account-text small {
    color: var(--muted);
    font-size: 10px;
}

.header-account-text strong {
    max-width: 110px;
    overflow: hidden;
    color: var(--secondary);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   Shared Components
========================================================= */

.site-main {
    min-height: calc(100vh - var(--header-height));
    padding-bottom: 25px;
}

.card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

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

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 14px;
    padding: 12px 19px;
    cursor: pointer;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow: 0 12px 27px rgba(32, 168, 187, 0.24);
}

.btn-secondary {
    color: #ffffff;
    background: var(--secondary);
}

.btn-danger {
    color: #ffffff;
    background: var(--danger);
}

.input,
select,
textarea {
    width: 100%;
    min-height: 49px;
    padding: 12px 14px;
    border: 1px solid var(--border-dark);
    border-radius: 13px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(32, 168, 187, 0.11);
}

label {
    display: block;
    margin-bottom: 7px;
    color: var(--secondary);
    font-weight: 800;
}

.form-group {
    margin-bottom: 15px;
}

.alert {
    padding: 13px 15px;
    border-radius: 12px;
    margin: 12px 0;
}

.alert-success {
    color: #12613f;
    background: var(--success-soft);
}

.alert-danger {
    color: #8b2020;
    background: var(--danger-soft);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #11687a;
    background: var(--primary-soft);
    font-size: 12px;
}

.stat {
    color: var(--secondary);
    font-size: 31px;
    font-weight: 900;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

th,
td {
    padding: 13px;
    border-bottom: 1px solid #e3ecef;
    text-align: right;
}

.login-wrap {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    place-items: center;
    padding: 30px 0;
}

.login-card {
    width: min(460px, 100%);
}

.small {
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   Hero
========================================================= */

.hero-section {
    position: relative;
    min-height: 670px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 65px;
    padding: 75px 0 60px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -180px;
    z-index: -1;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background: rgba(32, 168, 187, 0.12);
    filter: blur(8px);
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 80px;
    left: -220px;
    z-index: -1;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 138, 50, 0.08);
    filter: blur(10px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.hero-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 15px;
    border: 1px solid #bfe9ef;
    border-radius: 999px;
    color: var(--primary-darker);
    background: rgba(231, 248, 250, 0.9);
    font-size: 13px;
    font-weight: 800;
}

.hero-eyebrow-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
}

.hero-title {
    margin: 0;
    color: var(--secondary-dark);
    font-size: clamp(43px, 5.8vw, 73px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
}

.hero-title span {
    display: block;
    margin-top: 6px;
    color: var(--primary);
}

.hero-description {
    max-width: 620px;
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 19px;
    line-height: 1.95;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.hero-main-btn {
    min-height: 58px;
    padding-inline: 25px;
    font-size: 16px;
}

.hero-secondary-btn {
    min-height: 58px;
    padding-inline: 24px;
    border: 1px solid var(--border-dark);
    color: var(--secondary);
    background: #ffffff;
}

.hero-secondary-btn:hover {
    color: var(--primary-darker);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 29px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #425b69;
    font-size: 14px;
    font-weight: 700;
}

.hero-trust-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--success);
    background: var(--success-soft);
}

.hero-trust-icon i {
    font-size: 11px;
}

/* =========================================================
   Hero visual
========================================================= */

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(32, 168, 187, 0.18),
            rgba(32, 168, 187, 0.02) 65%,
            transparent 70%
        );
}

.order-preview {
    position: relative;
    width: min(430px, 100%);
    overflow: hidden;
    border: 1px solid rgba(206, 227, 233, 0.9);
    border-radius: 34px;
    padding: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(240, 250, 252, 0.95)
        );
    box-shadow: var(--shadow-lg);
}

.order-preview::before {
    content: "";
    position: absolute;
    top: -75px;
    left: -60px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(32, 168, 187, 0.1);
}

.order-preview-inner {
    position: relative;
    z-index: 2;
    padding: 23px;
    border: 1px dashed #c5e3e8;
    border-radius: 25px;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 11px;
}

.preview-title-icon {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow: 0 11px 25px rgba(32, 168, 187, 0.24);
}

.preview-title-icon i {
    font-size: 21px;
}

.preview-title-text {
    display: grid;
    line-height: 1.3;
}

.preview-title-text strong {
    color: var(--secondary);
    font-size: 17px;
}

.preview-title-text small {
    color: var(--muted);
    font-size: 11px;
}

.preview-number {
    padding: 7px 10px;
    border-radius: 10px;
    color: var(--secondary);
    background: #eef5f7;
    font-size: 11px;
    font-weight: 800;
}

.order-status-list {
    display: grid;
    gap: 11px;
}

.order-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 61px;
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 16px;
    color: #778b96;
    background: #f2f6f7;
}

.order-status-item.active {
    border-color: #cae8ed;
    color: #176e7d;
    background: #e7f8fa;
}

.order-status-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    color: #70828c;
    background: #e0eaed;
}

.order-status-item.active .order-status-icon {
    color: #ffffff;
    background: var(--primary);
}

.order-status-text {
    display: grid;
    flex-grow: 1;
    line-height: 1.35;
}

.order-status-text strong {
    font-size: 13px;
}

.order-status-text small {
    margin-top: 3px;
    color: inherit;
    font-size: 10px;
    opacity: 0.8;
}

.order-status-check {
    color: var(--success);
    font-size: 14px;
}

.preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 15px;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--secondary),
            var(--secondary-light)
        );
}

.preview-footer-label {
    display: grid;
    line-height: 1.3;
}

.preview-footer-label small {
    color: #b8d7e4;
    font-size: 10px;
}

.preview-footer-label strong {
    font-size: 14px;
}

.preview-driver {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--secondary);
    background: #ffffff;
}

/* =========================================================
   Statistics
========================================================= */

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 85px;
}

.stat-box {
    position: relative;
    overflow: hidden;
    padding: 23px 19px;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-xs);
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );
}

.stat-box-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border-radius: 14px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.stat-box strong {
    display: block;
    margin-bottom: 3px;
    color: var(--secondary);
    font-size: 27px;
    font-weight: 900;
}

.stat-box span {
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   Sections
========================================================= */

.section {
    padding: 75px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--primary-darker);
    font-size: 14px;
    font-weight: 900;
}

.section-heading h2 {
    margin: 0;
    color: var(--secondary);
    font-size: clamp(31px, 4.8vw, 47px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1px;
}

.section-heading p {
    margin: 13px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

/* =========================================================
   Steps
========================================================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.step-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 27px 22px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.step-card:hover {
    transform: translateY(-7px);
    border-color: #bfdee4;
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 14px;
    left: 17px;
    color: #dbe8ec;
    font-size: 31px;
    font-weight: 900;
}

.step-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 19px;
    color: var(--primary-darker);
    background: var(--primary-soft);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.step-icon i {
    font-size: 27px;
}

.step-card:hover .step-icon {
    color: #ffffff;
    background: var(--primary);
    transform: rotate(-4deg) scale(1.04);
}

.step-card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 19px;
    font-weight: 900;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

/* =========================================================
   Services
========================================================= */

.services-section {
    position: relative;
    overflow: hidden;
    margin: 30px 0;
    padding-inline: 28px;
    border: 1px solid #d8ebef;
    border-radius: 35px;
    background:
        linear-gradient(
            145deg,
            #eaf6f8,
            #f5fbfc
        );
}

.services-section::before {
    content: "";
    position: absolute;
    top: -170px;
    left: -150px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(32, 168, 187, 0.08);
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 235px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );
    transition: width 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #bfdfe5;
    box-shadow: var(--shadow-md);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--primary-darker);
    background: var(--primary-soft);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.service-icon i {
    font-size: 27px;
}

.service-card:hover .service-icon {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
    transform: rotate(-4deg) scale(1.05);
}

.service-card h3 {
    margin-bottom: 9px;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 900;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   Advantages
========================================================= */

.advantages-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 55px;
}

.advantages-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 32px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--secondary-dark),
            var(--secondary-light)
        );
    box-shadow: var(--shadow-lg);
}

.advantages-visual::before,
.advantages-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.advantages-visual::before {
    width: 270px;
    height: 270px;
    top: -100px;
    right: -80px;
}

.advantages-visual::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -70px;
}

.advantages-main-icon {
    position: relative;
    z-index: 2;
    width: 165px;
    height: 165px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 46px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 25px 45px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.advantages-main-icon i {
    font-size: 72px;
}

.advantages-floating-card {
    position: absolute;
    z-index: 3;
    min-width: 155px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border-radius: 15px;
    color: var(--secondary);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    font-size: 12px;
    font-weight: 800;
}

.advantages-floating-card i {
    color: var(--primary);
    font-size: 18px;
}

.advantages-floating-card.top {
    top: 45px;
    left: 25px;
}

.advantages-floating-card.bottom {
    right: 25px;
    bottom: 45px;
}

.advantages-content h2 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.3;
}

.advantages-content > p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.advantages-list {
    display: grid;
    gap: 13px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.advantage-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.advantage-text strong {
    display: block;
    margin-bottom: 3px;
    color: var(--secondary);
    font-size: 14px;
}

.advantage-text span {
    color: var(--muted);
    font-size: 12px;
}

/* =========================================================
   Contact and CTA
========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    margin: 80px 0 35px;
    padding: 47px;
    border-radius: 31px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--secondary-dark),
            var(--secondary-light)
        );
    box-shadow: var(--shadow-md);
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -170px;
    left: -90px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(32, 168, 187, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9ee2eb;
    font-size: 14px;
    font-weight: 800;
}

.cta-text h2 {
    margin: 8px 0;
    font-size: clamp(29px, 4vw, 43px);
    font-weight: 900;
}

.cta-text p {
    margin: 0;
    color: #d3eaf1;
}

.cta-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.cta-primary {
    color: var(--secondary);
    background: #ffffff;
}

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.contact-section {
    padding-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
}

.contact-card-icon.whatsapp {
    background:
        linear-gradient(
            145deg,
            #25d366,
            #159447
        );
}

.contact-card-icon.phone {
    background:
        linear-gradient(
            145deg,
            var(--accent),
            var(--accent-dark)
        );
}

.contact-card-content {
    display: grid;
    line-height: 1.4;
}

.contact-card-content small {
    color: var(--muted);
    font-size: 11px;
}

.contact-card-content strong {
    color: var(--secondary);
    font-size: 15px;
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
    margin-top: 50px;
    padding: 45px 0 25px;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 40px;
}

.footer-brand p {
    max-width: 480px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.footer-title {
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 900;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-darker);
    transform: translateX(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

.footer-security {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* =========================================================
   Mobile Floating Navigation
========================================================= */

.mobile-floating-nav {
    display: none;
}

.mobile-nav-item {
    position: relative;
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #778994;
    font-size: 10px;
    font-weight: 800;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.mobile-nav-item i {
    font-size: 19px;
}

.mobile-nav-item.active {
    color: var(--primary-darker);
}

.mobile-nav-item.active::before {
    content: "";
    position: absolute;
    top: -8px;
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--primary);
}

.mobile-nav-item.request {
    transform: translateY(-18px);
}

.mobile-nav-item.request .mobile-request-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 5px solid var(--background);
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow:
        0 12px 25px rgba(32, 168, 187, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-nav-item.request .mobile-request-icon i {
    font-size: 21px;
}

.mobile-nav-item.request span:last-child {
    margin-top: -1px;
    color: var(--secondary);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1080px) {

    .desktop-nav {
        display: none;
    }

    .hero-section {
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {

    .hero-section {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 55px 0;
        text-align: center;
    }

    .hero-content {
        margin-inline: auto;
    }

    .hero-eyebrow {
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 55px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantages-visual {
        min-height: 380px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 650px) {

    :root {
        --header-height: 68px;
    }

    body {
        padding-bottom:
            calc(88px + env(safe-area-inset-bottom));
    }

    .container {
        width: min(94%, var(--container-width));
    }

    .site-header {
        min-height: var(--header-height);
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .brand-content strong {
        font-size: 17px;
    }

    .brand-content small {
        display: none;
    }

    .header-actions {
        gap: 5px;
    }

    .header-order {
        display: none;
    }

    .header-login {
        width: 41px;
        height: 41px;
        min-height: 41px;
        padding: 0;
        border-radius: 13px;
    }

    .header-login span {
        display: none;
    }

    .header-account {
        width: 41px;
        height: 41px;
        min-height: 41px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .header-account-icon {
        width: 41px;
        height: 41px;
        border: 1px solid var(--border);
        background: #ffffff;
    }

    .header-account-text {
        display: none;
    }

    .hero-section {
        gap: 37px;
        padding: 42px 0 45px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.85;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 9px;
    }

    .order-preview {
        border-radius: 26px;
        padding: 13px;
    }

    .order-preview-inner {
        padding: 18px;
        border-radius: 20px;
    }

    .preview-header {
        align-items: flex-start;
    }

    .preview-number {
        display: none;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-box {
        padding: 19px 9px;
    }

    .stat-box strong {
        font-size: 22px;
    }

    .section {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .steps-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .step-card,
    .service-card {
        min-height: auto;
    }

    .services-section {
        margin-inline: -3%;
        padding-inline: 5%;
        border-radius: 26px;
    }

    .advantages-visual {
        min-height: 330px;
        border-radius: 25px;
    }

    .advantages-main-icon {
        width: 125px;
        height: 125px;
        border-radius: 35px;
    }

    .advantages-main-icon i {
        font-size: 54px;
    }

    .advantages-floating-card {
        min-width: auto;
        font-size: 10px;
    }

    .advantages-floating-card.top {
        top: 25px;
        left: 14px;
    }

    .advantages-floating-card.bottom {
        right: 14px;
        bottom: 25px;
    }

    .cta-section {
        margin-top: 55px;
        padding: 29px 21px;
        border-radius: 24px;
    }

    .cta-content {
        align-items: stretch;
        text-align: center;
    }

    .cta-actions {
        display: grid;
        width: 100%;
    }

    .contact-card {
        padding: 16px;
    }

    .site-footer {
        padding-top: 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mobile-floating-nav {
        position: fixed;
        right: 14px;
        bottom:
            calc(10px + env(safe-area-inset-bottom));
        left: 14px;
        z-index: 1200;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 8px 9px;
        border: 1px solid rgba(205, 222, 228, 0.9);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow:
            0 17px 45px rgba(13, 59, 102, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

}

@media (max-width: 380px) {

    .brand-content strong {
        font-size: 15px;
    }

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

    .mobile-floating-nav {
        right: 8px;
        left: 8px;
    }

    .mobile-nav-item {
        font-size: 9px;
    }

}
/* =========================================================
   Authentication
========================================================= */

.auth-page {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    place-items: center;
    padding: 45px 0;
}

.auth-card {
    width: min(480px, 100%);
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 27px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.auth-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--primary),
        var(--primary-darker)
    );
    box-shadow: 0 14px 30px rgba(32, 168, 187, 0.28);
}

.auth-icon i {
    font-size: 28px;
}

.auth-heading {
    margin-bottom: 25px;
    text-align: center;
}

.auth-label {
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

.auth-heading h1 {
    margin: 6px 0 8px;
    color: var(--secondary);
    font-size: 29px;
    font-weight: 900;
}

.auth-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 2;
    color: var(--primary);
    transform: translateY(-50%);
}

.input-with-icon {
    padding-right: 43px;
    direction: ltr;
    text-align: right;
}

.auth-submit {
    width: 100%;
    margin-top: 5px;
}

.auth-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    border-radius: 13px;
    color: #7a621e;
    background: var(--warning-soft);
    font-size: 13px;
}

.otp-input {
    direction: ltr;
    height: 64px;
    text-align: center;
    letter-spacing: 14px;
    font-size: 25px;
    font-weight: 900;
}

.auth-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   Customer Dashboard
========================================================= */

.customer-dashboard {
    padding: 45px 0;
}

.customer-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 27px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--secondary-dark),
        var(--secondary-light)
    );
    box-shadow: var(--shadow-md);
}

.dashboard-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #a9e5ed;
    font-size: 13px;
    font-weight: 800;
}

.customer-welcome h1 {
    margin: 6px 0;
    font-size: 34px;
    font-weight: 900;
}

.customer-welcome p {
    margin: 0;
    color: #d1e8ee;
}

.customer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.customer-stat-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.customer-stat-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.customer-stat-icon.processing {
    color: #9b6b16;
    background: var(--warning-soft);
}

.customer-stat-icon.success {
    color: var(--success);
    background: var(--success-soft);
}

.customer-stat-icon.price {
    color: var(--secondary);
    background: #e9f0f6;
}

.customer-stat-card div {
    display: grid;
}

.customer-stat-card small {
    color: var(--muted);
    font-size: 11px;
}

.customer-stat-card strong {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 900;
}

.dashboard-section-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dashboard-section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

.dashboard-section-heading h2 {
    margin: 5px 0 0;
    color: var(--secondary);
    font-size: 28px;
    font-weight: 900;
}

.customer-orders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.customer-order-card {
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.customer-order-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.customer-order-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 17px;
}

.customer-order-header > div {
    display: grid;
}

.customer-order-header small,
.customer-order-price small {
    color: var(--muted);
    font-size: 10px;
}

.customer-order-header strong {
    color: var(--secondary);
    font-size: 14px;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.status-pending {
    color: #7c671c;
    background: var(--warning-soft);
}

.status-processing {
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.status-success {
    color: var(--success);
    background: var(--success-soft);
}

.status-danger {
    color: var(--danger);
    background: var(--danger-soft);
}

.customer-order-laundry {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    padding: 12px;
    border-radius: 14px;
    background: var(--surface-soft);
}

.customer-order-laundry > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.customer-order-laundry div {
    display: grid;
}

.customer-order-laundry small {
    color: var(--muted);
    font-size: 10px;
}

.customer-order-laundry strong {
    color: var(--secondary);
    font-size: 13px;
}

.order-progress {
    margin-bottom: 18px;
}

.order-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 11px;
}

.order-progress-info strong {
    color: var(--primary-darker);
}

.order-progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eff2;
}

.order-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--primary-darker)
    );
}

.customer-order-times {
    display: grid;
    gap: 9px;
}

.customer-order-times > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.order-time-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.customer-order-times div div {
    display: grid;
}

.customer-order-times small {
    color: var(--muted);
    font-size: 9px;
}

.customer-order-times strong {
    color: var(--secondary);
    font-size: 11px;
}

.customer-order-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.customer-order-price {
    display: grid;
}

.customer-order-price strong {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 900;
}

.order-details-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-darker);
    font-size: 12px;
    font-weight: 800;
}

.empty-orders {
    padding: 55px 20px;
    border: 1px dashed var(--border-dark);
    border-radius: 23px;
    text-align: center;
    background: #ffffff;
}

.empty-orders-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    border-radius: 22px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.empty-orders h3 {
    margin-bottom: 7px;
    color: var(--secondary);
}

.empty-orders p {
    color: var(--muted);
}

/* =========================================================
   Order Details
========================================================= */

.order-details-page {
    padding: 40px 0;
}

.order-details-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

.order-details-top h1 {
    margin: 0;
    color: var(--secondary);
    font-size: 32px;
    font-weight: 900;
}

.order-details-top p {
    margin: 4px 0 0;
    color: var(--muted);
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    align-items: start;
    gap: 19px;
}

.order-details-main,
.order-details-sidebar {
    display: grid;
    gap: 18px;
}

.details-card {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.details-card-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
}

.details-card-heading > span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.details-card-heading div {
    display: grid;
}

.details-card-heading small {
    color: var(--muted);
    font-size: 10px;
}

.details-card-heading h2 {
    margin: 0;
    color: var(--secondary);
    font-size: 18px;
}

.order-progress.large {
    margin-bottom: 23px;
}

.order-progress.large .order-progress-track {
    height: 11px;
}

.order-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.order-time-grid article {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border-radius: 14px;
    background: var(--surface-soft);
}

.order-time-grid article > span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 11px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.order-time-grid article div {
    display: grid;
}

.order-time-grid small {
    color: var(--muted);
    font-size: 9px;
}

.order-time-grid strong {
    color: var(--secondary);
    font-size: 11px;
}

.order-items-list {
    display: grid;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.order-item-row:last-child {
    border-bottom: 0;
}

.order-item-row div {
    display: grid;
}

.order-item-row small {
    color: var(--muted);
    font-size: 11px;
}

.order-item-row strong {
    color: var(--secondary);
}

.order-timeline {
    position: relative;
    display: grid;
    gap: 17px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 12px;
}

.timeline-dot {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
}

.timeline-dot i {
    font-size: 10px;
}

.timeline-item div {
    display: grid;
}

.timeline-item strong {
    color: var(--secondary);
    font-size: 13px;
}

.timeline-item p {
    margin: 3px 0;
    color: var(--muted);
    font-size: 12px;
}

.timeline-item small {
    color: var(--muted);
    font-size: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.price-row strong {
    color: var(--secondary);
}

.price-row.discount strong {
    color: var(--success);
}

.price-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 15px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-light)
    );
}

.price-total strong {
    font-size: 20px;
}

.provider-info {
    display: grid;
    gap: 8px;
}

.provider-info strong {
    color: var(--secondary);
}

.provider-info span {
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 950px) {

    .customer-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .customer-orders-grid {
        grid-template-columns: 1fr;
    }

    .order-details-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 650px) {

    .auth-card {
        padding: 25px 19px;
    }

    .customer-dashboard {
        padding-top: 25px;
    }

    .customer-welcome {
        align-items: stretch;
        flex-direction: column;
        padding: 23px;
    }

    .customer-welcome h1 {
        font-size: 27px;
    }

    .customer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .customer-stat-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px;
    }

    .customer-stat-card strong {
        font-size: 17px;
    }

    .customer-order-header {
        flex-direction: column;
    }

    .customer-order-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .order-details-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-time-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================

   صفحة تسجيل الدخول

========================================================= */

.login-page {

    position: relative;

    min-height: calc(100vh - var(--header-height));

    overflow: hidden;

    padding: 55px 0 70px;

}

.login-background-shape {

    position: absolute;

    z-index: -1;

    border-radius: 50%;

    filter: blur(6px);

    pointer-events: none;

}

.login-shape-one {

    top: 40px;

    right: -180px;

    width: 420px;

    height: 420px;

    background: rgba(32, 168, 187, 0.12);

}

.login-shape-two {

    bottom: -160px;

    left: -130px;

    width: 380px;

    height: 380px;

    background: rgba(255, 138, 50, 0.09);

}

.login-layout {

    width: min(1120px, 94%);

    min-height: 650px;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 70px;

    margin-inline: auto;

}

/* =========================================================

   الجانب التعريفي

========================================================= */

.login-intro {

    position: relative;

    max-width: 600px;

}

.login-intro-badge {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    padding: 8px 15px;

    border: 1px solid #bce8ee;

    border-radius: 999px;

    color: var(--primary-darker);

    background: var(--primary-soft);

    font-size: 13px;

    font-weight: 800;

}

.login-intro-badge span {

    width: 27px;

    height: 27px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background: var(--primary);

}

.login-intro-badge i {

    font-size: 11px;

}

.login-intro h1 {

    margin: 0;

    color: var(--secondary-dark);

    font-size: clamp(44px, 6vw, 72px);

    font-weight: 900;

    line-height: 1.18;

    letter-spacing: -2px;

}

.login-intro h1 span {

    display: block;

    margin-top: 5px;

    color: var(--primary);

}

.login-intro > p {

    max-width: 570px;

    margin: 24px 0;

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.9;

}

.login-features {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

}

.login-features > div {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 12px;

    border: 1px solid var(--border);

    border-radius: 13px;

    color: #425b69;

    background: rgba(255, 255, 255, 0.85);

    box-shadow: var(--shadow-xs);

    font-size: 13px;

    font-weight: 700;

}

.login-features > div > span {

    width: 29px;

    height: 29px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    color: var(--primary-darker);

    background: var(--primary-soft);

}

.login-intro-visual {

    position: relative;

    width: 340px;

    height: 230px;

    display: grid;

    place-items: center;

    margin-top: 35px;

    overflow: hidden;

    border-radius: 32px;

    color: #ffffff;

    background:

        linear-gradient(

            145deg,

            var(--secondary-dark),

            var(--secondary-light)

        );

    box-shadow: var(--shadow-lg);

}

.login-intro-visual::before {

    content: "";

    position: absolute;

    top: -70px;

    right: -50px;

    width: 190px;

    height: 190px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

}

.login-intro-visual::after {

    content: "";

    position: absolute;

    bottom: -60px;

    left: -40px;

    width: 170px;

    height: 170px;

    border-radius: 50%;

    background: rgba(32, 168, 187, 0.2);

}

.visual-main-icon {

    position: relative;

    z-index: 2;

    width: 110px;

    height: 110px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 34px;

    background: rgba(255, 255, 255, 0.12);

    box-shadow:

        inset 0 1px 0 rgba(255, 255, 255, 0.18),

        0 20px 35px rgba(0, 0, 0, 0.16);

}

.visual-main-icon i {

    font-size: 50px;

}

.visual-floating {

    position: absolute;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 11px;

    border-radius: 12px;

    color: var(--secondary);

    background: #ffffff;

    box-shadow: var(--shadow-md);

    font-size: 11px;

    font-weight: 800;

}

.visual-floating i {

    color: var(--primary);

}

.visual-floating-one {

    top: 22px;

    left: 17px;

}

.visual-floating-two {

    right: 17px;

    bottom: 22px;

}

/* =========================================================

   بطاقة تسجيل الدخول

========================================================= */

.login-form-wrapper {

    display: flex;

    justify-content: center;

}

.login-card-premium {

    width: min(470px, 100%);

    padding: 36px;

    border: 1px solid rgba(207, 226, 232, 0.92);

    border-radius: 31px;

    background: rgba(255, 255, 255, 0.93);

    box-shadow:

        0 32px 80px rgba(12, 59, 102, 0.15),

        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

}

.login-card-icon {

    width: 73px;

    height: 73px;

    display: grid;

    place-items: center;

    margin: 0 auto 20px;

    border-radius: 23px;

    color: #ffffff;

    background:

        linear-gradient(

            145deg,

            var(--primary),

            var(--primary-darker)

        );

    box-shadow:

        0 15px 32px rgba(32, 168, 187, 0.3),

        inset 0 1px 0 rgba(255, 255, 255, 0.32);

}

.login-card-icon i {

    font-size: 29px;

}

.login-card-heading {

    margin-bottom: 25px;

    text-align: center;

}

.login-card-heading > span {

    color: var(--primary-darker);

    font-size: 13px;

    font-weight: 800;

}

.login-card-heading h2 {

    margin: 5px 0 8px;

    color: var(--secondary);

    font-size: 29px;

    font-weight: 900;

    line-height: 1.35;

}

.login-card-heading p {

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

}

.login-alert {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 18px;

    padding: 13px;

    border: 1px solid #f4caca;

    border-radius: 13px;

    color: #8b2020;

    background: var(--danger-soft);

}

.login-alert > span {

    flex-shrink: 0;

}

.login-alert p {

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

}

.login-form-group {

    margin-bottom: 17px;

}

.login-form-group label {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 8px;

    color: var(--secondary);

    font-size: 14px;

    font-weight: 900;

}

.login-form-group label i {

    color: var(--primary);

}

.mobile-input-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    border: 1px solid var(--border-dark);

    border-radius: 16px;

    background: #ffffff;

    transition:

        border-color 0.2s ease,

        box-shadow 0.2s ease;

}

.mobile-input-wrapper:focus-within {

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(32, 168, 187, 0.11);

}

.mobile-country-code {

    min-height: 57px;

    display: flex;

    align-items: center;

    padding-inline: 15px;

    border-left: 1px solid var(--border);

    direction: ltr;

    color: var(--secondary);

    background: #f5f9fa;

    font-size: 14px;

    font-weight: 900;

}

.mobile-input-wrapper input {

    width: 100%;

    height: 57px;

    border: 0;

    outline: none;

    padding: 0 15px;

    direction: ltr;

    color: var(--text);

    background: transparent;

    font-size: 17px;

    font-weight: 700;

}

.mobile-input-wrapper input::placeholder {

    color: #9aa9b1;

    font-weight: 500;

}

.mobile-input-icon {

    padding-left: 15px;

    color: var(--primary);

}

.login-form-group small {

    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;

}

.login-submit-button {

    width: 100%;

    min-height: 57px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border: 0;

    border-radius: 16px;

    cursor: pointer;

    color: #ffffff;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            var(--primary-darker)

        );

    box-shadow: 0 14px 30px rgba(32, 168, 187, 0.28);

    font-weight: 900;

    transition:

        transform 0.2s ease,

        box-shadow 0.2s ease;

}

.login-submit-button:hover {

    transform: translateY(-2px);

    box-shadow: 0 18px 35px rgba(32, 168, 187, 0.34);

}

.login-submit-button:active {

    transform: scale(0.98);

}

.login-submit-button i {

    font-size: 15px;

}

.login-otp-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 18px;

    padding: 12px;

    border: 1px solid #f4dfad;

    border-radius: 13px;

    color: #775b15;

    background: var(--warning-soft);

}

.login-otp-note span {

    color: var(--warning);

}

.login-otp-note p {

    margin: 0;

    font-size: 12px;

}

.login-security {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 16px;

    color: var(--muted);

    font-size: 11px;

}

.login-security i {

    color: var(--success);

}

/* =========================================================

   الجوال

========================================================= */

@media (max-width: 900px) {

    .login-layout {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .login-intro {

        display: none;

    }

    .login-page {

        display: flex;

        align-items: flex-start;

        min-height: calc(100vh - var(--header-height));

        padding-top: 38px;

    }

}

@media (max-width: 650px) {

    .login-page {

        padding: 24px 0 45px;

    }

    .login-layout {

        width: 94%;

        min-height: auto;

    }

    .login-card-premium {

        padding: 27px 20px;

        border-radius: 25px;

    }

    .login-card-icon {

        width: 65px;

        height: 65px;

        margin-bottom: 17px;

        border-radius: 20px;

    }

    .login-card-icon i {

        font-size: 25px;

    }

    .login-card-heading h2 {

        font-size: 26px;

    }

    .login-card-heading p {

        font-size: 13px;

    }

    .mobile-country-code {

        min-height: 55px;

        padding-inline: 12px;

    }

    .mobile-input-wrapper input {

        height: 55px;

        font-size: 16px;

    }

    .login-submit-button {

        min-height: 55px;

    }

}
/* =========================================================
   صفحات الدخول والطلبات — غسيل إكسبرس
   login.php
   verify-otp.php
   customer/order-details.php
   customer/new-order.php
========================================================= */


/* =========================================================
   1) صفحة تسجيل الدخول login.php
========================================================= */

.login-page {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 55px 0 75px;
}

.login-page::before,
.login-page::after {
    content: "";
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
}

.login-page::before {
    top: -160px;
    right: -170px;
    width: 480px;
    height: 480px;
    background:
        radial-gradient(
            circle,
            rgba(32, 168, 187, 0.18),
            rgba(32, 168, 187, 0.03) 65%,
            transparent 72%
        );
}

.login-page::after {
    bottom: -180px;
    left: -160px;
    width: 460px;
    height: 460px;
    background:
        radial-gradient(
            circle,
            rgba(255, 138, 50, 0.12),
            rgba(255, 138, 50, 0.02) 67%,
            transparent 74%
        );
}

.login-background-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.login-shape-one {
    top: 8%;
    right: 5%;
    width: 140px;
    height: 140px;
    background: rgba(32, 168, 187, 0.09);
}

.login-shape-two {
    bottom: 10%;
    left: 8%;
    width: 170px;
    height: 170px;
    background: rgba(255, 138, 50, 0.07);
}

.login-layout {
    width: min(1120px, 94%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    margin-inline: auto;
}

.login-intro {
    position: relative;
    max-width: 610px;
}

.login-intro-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 21px;
    padding: 8px 15px;
    border: 1px solid #bce8ee;
    border-radius: 999px;
    color: var(--primary-darker);
    background: rgba(231, 248, 250, 0.92);
    font-size: 13px;
    font-weight: 800;
}

.login-intro-badge span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
}

.login-intro-badge i {
    font-size: 11px;
}

.login-intro h1 {
    margin: 0;
    color: var(--secondary-dark);
    font-size: clamp(45px, 5.7vw, 72px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -2px;
}

.login-intro h1 span {
    display: block;
    margin-top: 5px;
    color: var(--primary);
}

.login-intro > p {
    max-width: 560px;
    margin: 24px 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.95;
}

.login-features {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.login-features > div {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: #405967;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-xs);
    font-size: 12px;
    font-weight: 800;
}

.login-features > div > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.login-intro-visual {
    position: relative;
    width: min(350px, 100%);
    height: 230px;
    display: grid;
    place-items: center;
    margin-top: 35px;
    overflow: hidden;
    border-radius: 32px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--secondary-dark),
            var(--secondary-light)
        );
    box-shadow: var(--shadow-lg);
}

.login-intro-visual::before,
.login-intro-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.login-intro-visual::before {
    top: -70px;
    right: -45px;
    width: 190px;
    height: 190px;
}

.login-intro-visual::after {
    bottom: -60px;
    left: -40px;
    width: 165px;
    height: 165px;
    background: rgba(32, 168, 187, 0.2);
}

.visual-main-icon {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 20px 40px rgba(0, 0, 0, 0.17);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.visual-main-icon i {
    font-size: 50px;
}

.visual-floating {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 13px;
    color: var(--secondary);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    font-size: 11px;
    font-weight: 800;
}

.visual-floating i {
    color: var(--primary);
}

.visual-floating-one {
    top: 21px;
    left: 17px;
}

.visual-floating-two {
    right: 17px;
    bottom: 21px;
}

.login-form-wrapper {
    display: flex;
    justify-content: center;
}

.login-card-premium {
    position: relative;
    width: min(475px, 100%);
    overflow: hidden;
    padding: 37px;
    border: 1px solid rgba(205, 225, 231, 0.94);
    border-radius: 31px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 30px 80px rgba(12, 59, 102, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.login-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    right: 18%;
    left: 18%;
    height: 4px;
    border-radius: 0 0 99px 99px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );
}

.login-card-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 23px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow:
        0 15px 32px rgba(32, 168, 187, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.login-card-icon i {
    font-size: 29px;
}

.login-card-heading {
    margin-bottom: 25px;
    text-align: center;
}

.login-card-heading > span {
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

.login-card-heading h1,
.login-card-heading h2 {
    margin: 5px 0 8px;
    color: var(--secondary);
    font-size: 29px;
    font-weight: 900;
    line-height: 1.35;
}

.login-card-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.login-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 13px 14px;
    border: 1px solid #f4caca;
    border-radius: 14px;
    color: #8b2020;
    background: var(--danger-soft);
}

.login-alert > span {
    flex-shrink: 0;
    padding-top: 3px;
}

.login-alert p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.login-form {
    width: 100%;
}

.login-form-group {
    margin-bottom: 17px;
}

.login-form-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
}

.login-form-group label i {
    color: var(--primary);
}

.mobile-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.mobile-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(32, 168, 187, 0.11);
    transform: translateY(-1px);
}

.mobile-country-code {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding-inline: 15px;
    border-left: 1px solid var(--border);
    direction: ltr;
    color: var(--secondary);
    background: #f5f9fa;
    font-size: 14px;
    font-weight: 900;
}

.mobile-input-wrapper input {
    width: 100%;
    height: 58px;
    border: 0;
    outline: none;
    padding: 0 15px;
    direction: ltr;
    color: var(--text);
    background: transparent;
    font-size: 17px;
    font-weight: 800;
}

.mobile-input-wrapper input::placeholder {
    color: #a0afb6;
    font-weight: 500;
}

.mobile-input-icon {
    padding-left: 15px;
    color: var(--primary);
}

.login-form-group small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.login-submit-button {
    position: relative;
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow: 0 14px 30px rgba(32, 168, 187, 0.28);
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.login-submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.login-submit-button:hover::before {
    left: 130%;
}

.login-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(32, 168, 187, 0.34);
}

.login-submit-button:active {
    transform: scale(0.985);
}

.login-otp-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid #f1ddaa;
    border-radius: 14px;
    color: #775b15;
    background: var(--warning-soft);
}

.login-otp-note span {
    color: var(--warning);
}

.login-otp-note p {
    margin: 0;
    font-size: 12px;
}

.login-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 11px;
}

.login-security i {
    color: var(--success);
}


/* =========================================================
   2) صفحة التحقق verify-otp.php
========================================================= */

.otp-page,
.auth-page {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 48px 0 75px;
}

.otp-page::before,
.auth-page::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -170px;
    z-index: -1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(32, 168, 187, 0.16),
            transparent 70%
        );
}

.otp-card,
.auth-card {
    position: relative;
    width: min(480px, 94%);
    overflow: hidden;
    padding: 36px;
    border: 1px solid rgba(204, 224, 230, 0.94);
    border-radius: 29px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 28px 75px rgba(12, 59, 102, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.otp-card::before,
.auth-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20%;
    left: 20%;
    height: 4px;
    border-radius: 0 0 99px 99px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );
}

.otp-icon,
.auth-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 21px;
    border-radius: 24px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow:
        0 15px 34px rgba(32, 168, 187, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.otp-icon i,
.auth-icon i {
    font-size: 29px;
}

.otp-heading,
.auth-heading {
    margin-bottom: 25px;
    text-align: center;
}

.otp-heading > span,
.auth-label {
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

.otp-heading h1,
.auth-heading h1 {
    margin: 6px 0 8px;
    color: var(--secondary);
    font-size: 29px;
    font-weight: 900;
    line-height: 1.35;
}

.otp-heading p,
.auth-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.otp-mobile-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    direction: ltr;
    color: var(--secondary);
    background: var(--surface-soft);
    font-size: 13px;
    font-weight: 900;
}

.otp-inputs {
    direction: ltr;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
    margin: 23px 0;
}

.otp-inputs input {
    width: 100%;
    height: 67px;
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    outline: none;
    text-align: center;
    color: var(--secondary);
    background: #ffffff;
    font-size: 26px;
    font-weight: 900;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.otp-inputs input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(32, 168, 187, 0.12);
    transform: translateY(-2px);
}

.otp-input {
    width: 100%;
    height: 68px;
    border: 1px solid var(--border-dark);
    border-radius: 17px;
    outline: none;
    direction: ltr;
    text-align: center;
    letter-spacing: 17px;
    color: var(--secondary);
    background: #ffffff;
    font-size: 27px;
    font-weight: 900;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.otp-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(32, 168, 187, 0.12);
}

.otp-submit,
.auth-submit {
    width: 100%;
    min-height: 57px;
    margin-top: 15px;
    border-radius: 16px;
}

.otp-resend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 12px;
}

.otp-resend button,
.otp-resend a {
    border: 0;
    padding: 0;
    cursor: pointer;
    color: var(--primary-darker);
    background: transparent;
    font-weight: 900;
}

.otp-resend button:disabled {
    cursor: not-allowed;
    color: #9aaab2;
}

.otp-countdown {
    min-width: 38px;
    display: inline-flex;
    justify-content: center;
    direction: ltr;
    color: var(--secondary);
    font-weight: 900;
}

.otp-demo-note,
.auth-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 19px;
    padding: 12px;
    border: 1px solid #f1ddaa;
    border-radius: 14px;
    color: #7a6018;
    background: var(--warning-soft);
    font-size: 12px;
}

.otp-back,
.auth-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

.otp-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 15px;
    padding: 13px;
    border-radius: 14px;
    color: var(--success);
    background: var(--success-soft);
    font-size: 13px;
    font-weight: 800;
}

.otp-card.is-success .otp-success {
    display: flex;
}


/* =========================================================
   3) صفحة تفاصيل الطلب customer/order-details.php
========================================================= */

.order-details-page {
    padding: 42px 0 65px;
}

.order-details-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 25px;
}

.order-details-title {
    display: grid;
}

.back-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 800;
}

.back-link:hover {
    color: var(--secondary);
}

.order-details-top h1 {
    margin: 0;
    color: var(--secondary);
    font-size: clamp(29px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.3;
}

.order-details-top p {
    margin: 4px 0 0;
    direction: ltr;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.order-status-badge {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.status-pending {
    color: #7c6215;
    background: var(--warning-soft);
}

.status-processing {
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.status-success {
    color: var(--success);
    background: var(--success-soft);
}

.status-danger {
    color: var(--danger);
    background: var(--danger-soft);
}

.order-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 19px;
}

.order-details-main,
.order-details-sidebar {
    display: grid;
    gap: 18px;
}

.order-details-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.details-card {
    position: relative;
    overflow: hidden;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.details-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 3px;
    border-radius: 0 0 0 99px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );
}

.details-card-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
}

.details-card-heading > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 14px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.details-card-heading > span i {
    font-size: 18px;
}

.details-card-heading div {
    display: grid;
    line-height: 1.35;
}

.details-card-heading small {
    color: var(--muted);
    font-size: 10px;
}

.details-card-heading h2 {
    margin: 0;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 900;
}

.order-progress {
    margin-bottom: 19px;
}

.order-progress.large {
    margin-bottom: 24px;
}

.order-progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
}

.order-progress-info strong {
    direction: ltr;
    color: var(--primary-darker);
    font-size: 13px;
}

.order-progress-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7eff2;
}

.order-progress.large .order-progress-track {
    height: 11px;
}

.order-progress-track span {
    position: relative;
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-darker)
        );
    box-shadow: 0 4px 12px rgba(32, 168, 187, 0.25);
}

.order-progress-track span::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );
    animation: order-progress-shine 2s linear infinite;
}

@keyframes order-progress-shine {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.order-time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.order-time-grid article {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid #edf3f5;
    border-radius: 15px;
    background: var(--surface-soft);
}

.order-time-grid article > span {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.order-time-grid article div {
    min-width: 0;
    display: grid;
    line-height: 1.4;
}

.order-time-grid small {
    color: var(--muted);
    font-size: 9px;
}

.order-time-grid strong {
    overflow: hidden;
    color: var(--secondary);
    font-size: 11px;
    text-overflow: ellipsis;
}

.order-items-list {
    display: grid;
}

.order-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.order-item-row:last-child {
    border-bottom: 0;
}

.order-item-row div {
    min-width: 0;
    display: grid;
}

.order-item-row div strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-item-row small {
    color: var(--muted);
    font-size: 11px;
}

.order-item-row > strong {
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 14px;
}

.details-empty {
    margin: 0;
    padding: 25px 15px;
    border: 1px dashed var(--border-dark);
    border-radius: 15px;
    text-align: center;
    color: var(--muted);
    background: var(--surface-soft);
    font-size: 13px;
}

.order-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.order-timeline::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 15px;
    bottom: 14px;
    width: 2px;
    background: #dce9ed;
}

.timeline-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 4px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: #b8c6cd;
    box-shadow: 0 0 0 1px var(--border);
}

.timeline-item.active .timeline-dot {
    background: var(--primary);
    box-shadow:
        0 0 0 1px var(--primary),
        0 5px 14px rgba(32, 168, 187, 0.23);
}

.timeline-dot i {
    font-size: 9px;
}

.timeline-item > div {
    min-width: 0;
    display: grid;
    padding-top: 3px;
}

.timeline-item strong {
    color: var(--secondary);
    font-size: 13px;
}

.timeline-item p {
    margin: 3px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.timeline-item small {
    color: var(--muted);
    font-size: 10px;
}

.price-summary {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfdfe
        );
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.price-row strong {
    direction: ltr;
    color: var(--secondary);
}

.price-row.discount strong {
    color: var(--success);
}

.price-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    padding: 16px;
    border-radius: 15px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--secondary),
            var(--secondary-light)
        );
    box-shadow: 0 12px 25px rgba(12, 59, 102, 0.16);
}

.price-total strong {
    direction: ltr;
    font-size: 20px;
    font-weight: 900;
}

.provider-info {
    display: grid;
    gap: 9px;
}

.provider-info strong {
    color: var(--secondary);
    font-size: 15px;
}

.provider-info span {
    color: var(--muted);
    font-size: 12px;
}

.provider-info .btn {
    width: 100%;
    margin-top: 8px;
}


/* =========================================================
   4) صفحة إنشاء طلب customer/new-order.php
========================================================= */

.new-order-page {
    padding: 40px 0 70px;
}

.new-order-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 25px;
}

.new-order-header-content {
    max-width: 700px;
}

.new-order-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 900;
}

.new-order-header h1 {
    margin: 0;
    color: var(--secondary);
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.3;
}

.new-order-header p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.new-order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 19px;
}

.new-order-main {
    display: grid;
    gap: 18px;
}

.new-order-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    display: grid;
    gap: 16px;
}

.order-form-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.order-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 3px;
    border-radius: 0 0 0 99px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );
}

.order-form-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
}

.order-form-heading > span {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.order-form-heading > span i {
    font-size: 18px;
}

.order-form-heading div {
    display: grid;
    line-height: 1.35;
}

.order-form-heading small {
    color: var(--muted);
    font-size: 10px;
}

.order-form-heading h2 {
    margin: 0;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 900;
}

.order-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-form-grid.one-column {
    grid-template-columns: 1fr;
}

.order-field {
    min-width: 0;
}

.order-field.full {
    grid-column: 1 / -1;
}

.order-field label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
}

.order-field label i {
    color: var(--primary);
}

.order-field input,
.order-field select,
.order-field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    outline: none;
    padding: 12px 14px;
    color: var(--text);
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.order-field textarea {
    min-height: 110px;
    resize: vertical;
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(32, 168, 187, 0.11);
    transform: translateY(-1px);
}

.order-field small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
}

.address-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.address-option {
    position: relative;
}

.address-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.address-option label {
    min-height: 125px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 17px;
    cursor: pointer;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.address-option label:hover {
    transform: translateY(-2px);
    border-color: #bddfe5;
    box-shadow: var(--shadow-xs);
}

.address-option input:checked + label {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: 0 0 0 3px rgba(32, 168, 187, 0.1);
}

.address-option-icon {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.address-option input:checked + label .address-option-icon {
    color: #ffffff;
    background: var(--primary);
}

.address-option-content {
    min-width: 0;
    display: grid;
}

.address-option-content strong {
    color: var(--secondary);
    font-size: 13px;
}

.address-option-content span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.laundries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.laundry-option {
    position: relative;
}

.laundry-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.laundry-option label {
    min-height: 135px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 18px;
    cursor: pointer;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.laundry-option label:hover {
    transform: translateY(-3px);
    border-color: #bddfe5;
    box-shadow: var(--shadow-sm);
}

.laundry-option input:checked + label {
    border-color: var(--primary);
    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--primary-soft)
        );
    box-shadow: 0 0 0 3px rgba(32, 168, 187, 0.1);
}

.laundry-option-logo {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-darker)
        );
}

.laundry-option-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laundry-option-info {
    min-width: 0;
    display: grid;
    flex: 1;
}

.laundry-option-info strong {
    overflow: hidden;
    color: var(--secondary);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.laundry-option-info small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.laundry-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 7px;
    color: var(--warning);
    font-size: 11px;
    font-weight: 800;
}

.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.service-select-card {
    position: relative;
    overflow: hidden;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.service-select-card:hover {
    transform: translateY(-3px);
    border-color: #bedfe5;
    box-shadow: var(--shadow-sm);
}

.service-select-card.selected {
    border-color: var(--primary);
    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--primary-soft)
        );
    box-shadow: 0 0 0 3px rgba(32, 168, 187, 0.09);
}

.service-select-top {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.service-select-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 14px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.service-select-card.selected .service-select-icon {
    color: #ffffff;
    background: var(--primary);
}

.service-select-info {
    min-width: 0;
    display: grid;
    flex: 1;
}

.service-select-info strong {
    color: var(--secondary);
    font-size: 13px;
}

.service-select-info span {
    color: var(--muted);
    font-size: 10px;
}

.service-price {
    margin-top: 4px;
    direction: ltr;
    color: var(--primary-darker);
    font-size: 13px;
    font-weight: 900;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.quantity-control button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.quantity-control button:hover {
    color: #ffffff;
    background: var(--primary);
}

.quantity-control input {
    width: 55px;
    height: 34px;
    border: 0;
    outline: none;
    text-align: center;
    color: var(--secondary);
    background: transparent;
    font-weight: 900;
}

.schedule-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.schedule-option {
    position: relative;
}

.schedule-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.schedule-option label {
    min-height: 72px;
    display: grid;
    place-items: center;
    gap: 2px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    text-align: center;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.schedule-option label:hover {
    transform: translateY(-2px);
    border-color: #bedfe5;
}

.schedule-option input:checked + label {
    border-color: var(--primary);
    color: var(--primary-darker);
    background: var(--primary-soft);
    box-shadow: 0 0 0 3px rgba(32, 168, 187, 0.08);
}

.schedule-option strong {
    color: inherit;
    font-size: 12px;
}

.schedule-option small {
    color: var(--muted);
    font-size: 9px;
}

.order-summary-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.order-summary-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.order-summary-title span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--primary-darker);
    background: var(--primary-soft);
}

.order-summary-title h3 {
    margin: 0;
    color: var(--secondary);
    font-size: 17px;
    font-weight: 900;
}

.summary-items {
    display: grid;
    gap: 8px;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

.summary-item:last-child {
    border-bottom: 0;
}

.summary-item strong {
    direction: ltr;
    color: var(--secondary);
}

.summary-item.discount strong {
    color: var(--success);
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    border-radius: 15px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--secondary),
            var(--secondary-light)
        );
}

.summary-total strong {
    direction: ltr;
    font-size: 20px;
    font-weight: 900;
}

.submit-order-button {
    width: 100%;
    min-height: 57px;
    margin-top: 15px;
    border-radius: 16px;
}

.order-policy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 13px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.65;
}

.order-policy i {
    flex-shrink: 0;
    padding-top: 3px;
    color: var(--success);
}

.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.order-step {
    position: relative;
    display: flex;
    align-items: center;
}

.order-step-circle {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    color: var(--muted);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.order-step.active .order-step-circle,
.order-step.completed .order-step-circle {
    border-color: var(--primary);
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 7px 17px rgba(32, 168, 187, 0.22);
}

.order-step-label {
    position: absolute;
    top: 44px;
    right: 50%;
    width: 90px;
    text-align: center;
    color: var(--muted);
    font-size: 9px;
    transform: translateX(50%);
}

.order-step.active .order-step-label,
.order-step.completed .order-step-label {
    color: var(--primary-darker);
    font-weight: 800;
}

.order-step-line {
    width: 70px;
    height: 3px;
    background: #dce8ec;
}

.order-step.completed + .order-step-line,
.order-step-line.completed {
    background: var(--primary);
}


/* =========================================================
   حالات التحميل
========================================================= */

.button-loading {
    pointer-events: none;
    opacity: 0.85;
}

.button-loading i {
    animation: button-spin 0.8s linear infinite;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}

.skeleton {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #e8eff2;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent
        );
    animation: skeleton-move 1.3s infinite;
}

@keyframes skeleton-move {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}


/* =========================================================
   تجاوب صفحات الدخول والطلبات
========================================================= */

@media (max-width: 1000px) {

    .login-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .login-intro {
        display: none;
    }

    .order-details-grid,
    .new-order-layout {
        grid-template-columns: 1fr;
    }

    .order-details-sidebar,
    .new-order-sidebar {
        position: static;
    }

}

@media (max-width: 750px) {

    .new-order-header,
    .order-details-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-form-grid,
    .address-cards,
    .laundries-grid,
    .service-selection-grid {
        grid-template-columns: 1fr;
    }

    .schedule-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-time-grid {
        grid-template-columns: 1fr;
    }

    .order-step-line {
        width: 42px;
    }

}

@media (max-width: 650px) {

    .login-page,
    .otp-page,
    .auth-page {
        min-height: calc(100vh - var(--header-height));
        align-items: flex-start;
        padding: 24px 0 45px;
    }

    .login-layout {
        width: 94%;
    }

    .login-card-premium,
    .otp-card,
    .auth-card {
        width: 100%;
        padding: 27px 20px;
        border-radius: 25px;
    }

    .login-card-icon,
    .otp-icon,
    .auth-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 17px;
        border-radius: 20px;
    }

    .login-card-icon i,
    .otp-icon i,
    .auth-icon i {
        font-size: 25px;
    }

    .login-card-heading h1,
    .login-card-heading h2,
    .otp-heading h1,
    .auth-heading h1 {
        font-size: 25px;
    }

    .login-card-heading p,
    .otp-heading p,
    .auth-heading p {
        font-size: 13px;
    }

    .mobile-country-code {
        min-height: 55px;
        padding-inline: 12px;
    }

    .mobile-input-wrapper input {
        height: 55px;
        font-size: 16px;
    }

    .login-submit-button {
        min-height: 55px;
    }

    .otp-inputs {
        gap: 8px;
    }

    .otp-inputs input {
        height: 60px;
        border-radius: 14px;
        font-size: 23px;
    }

    .otp-input {
        height: 62px;
        letter-spacing: 13px;
        font-size: 24px;
    }

    .order-details-page,
    .new-order-page {
        padding-top: 25px;
    }

    .details-card,
    .order-form-card,
    .order-summary-card {
        padding: 18px;
        border-radius: 19px;
    }

    .order-details-top h1,
    .new-order-header h1 {
        font-size: 27px;
    }

    .order-item-row {
        align-items: flex-start;
    }

    .schedule-options {
        grid-template-columns: 1fr 1fr;
    }

    .order-steps {
        margin-bottom: 37px;
    }

    .order-step-circle {
        width: 34px;
        height: 34px;
    }

    .order-step-line {
        width: 28px;
    }

    .order-step-label {
        top: 40px;
        width: 65px;
        font-size: 8px;
    }

}

@media (max-width: 390px) {

    .login-card-premium,
    .otp-card,
    .auth-card {
        padding-inline: 16px;
    }

    .schedule-options {
        grid-template-columns: 1fr;
    }

    .order-step-line {
        width: 18px;
    }

    .order-step-label {
        display: none;
    }

}