:root {
    --booking-radius: 22px;
}

.booking-page {
    min-height: 60vh;
    direction: rtl;
    text-align: right;
}

.booking-hero {
    padding: 4rem 0 2.25rem;
    background: var(--primary-bg);
}

.booking-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    font-weight: 800;
    color: var(--text-light);
}

.booking-breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
}

.booking-breadcrumb a:hover {
    color: var(--primary-dark);
}

.booking-breadcrumb-sep {
    color: rgba(34, 34, 34, 0.35);
}

.booking-hero-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.35rem;
    align-items: start;
}

.booking-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 950;
    color: rgba(34, 34, 34, 0.90);
    background: rgba(204, 31, 40, 0.10);
    border: 1px solid rgba(204, 31, 40, 0.16);
}

.booking-title {
    margin-top: 0.85rem;
    margin-bottom: 0.55rem;
    font-size: clamp(1.75rem, 1.2rem + 1.2vw, 2.55rem);
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.booking-subtitle {
    margin: 0;
    color: var(--text-light);
    font-weight: 650;
    line-height: 1.7;
    max-width: 62ch;
}

.booking-highlights {
    margin-top: 1.05rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.booking-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(204, 31, 40, 0.10);
    border: 1px solid rgba(204, 31, 40, 0.16);
    color: rgba(34, 34, 34, 0.88);
    font-weight: 900;
    font-size: 0.92rem;
}

.booking-jump {
    margin-top: 1.1rem;
    border-radius: 999px;
}

.booking-hero-card {
    border-radius: var(--booking-radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(204, 31, 40, 0.12);
    box-shadow: 0 18px 52px rgba(34, 34, 34, 0.12);
    overflow: hidden;
    position: relative;
}

.booking-hero-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--brand-primary);
    opacity: 0.95;
}

.booking-hero-card-top {
    padding: 1.05rem 1.05rem 0.75rem;
    display: grid;
    gap: 0.35rem;
}

.booking-hero-card-title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 950;
    color: rgba(34, 34, 34, 0.90);
}

.booking-hero-card-note {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.6;
}

.booking-summary {
    padding: 0 1.05rem 1.05rem;
    display: grid;
    gap: 0.55rem;
}

.sum-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 18px;
    border: 1px solid rgba(204, 31, 40, 0.12);
    background: rgba(255, 255, 255, 0.75);
}

.sum-k {
    color: var(--text-light);
    font-weight: 800;
}

.sum-v {
    color: rgba(34, 34, 34, 0.90);
    font-weight: 950;
}

.booking-hero-foot {
    padding: 0 1.05rem 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.booking-foot-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(204, 31, 40, 0.10);
    border: 1px solid rgba(204, 31, 40, 0.16);
    color: rgba(34, 34, 34, 0.85);
    font-weight: 900;
    font-size: 0.92rem;
}

.booking-section {
    padding: 2.75rem 0 4.75rem;
    background: #ffffff;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.35rem;
    align-items: start;
}

.booking-flow {
    display: grid;
    gap: 1rem;
}

.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(204, 31, 40, 0.12);
    box-shadow: 0 14px 34px rgba(34, 34, 34, 0.10);
}

.step-dot {
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.55rem;
    border-radius: 999px;
    cursor: pointer;
    color: rgba(34, 34, 34, 0.75);
    font-weight: 900;
    transition: transform 180ms ease, background-color 180ms ease;
}

.step-dot:hover {
    transform: translateY(-1px);
    background: rgba(204, 31, 40, 0.06);
}

.step-dot.is-active {
    background: var(--brand-primary);
    color: #ffffff;
}

.dot-num {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(204, 31, 40, 0.16);
    color: var(--primary-dark);
}

.step-dot.is-active .dot-num {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
}

.dot-label {
    display: none;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(34, 34, 34, 0.12);
    border-radius: 999px;
}

.booking-card {
    border-radius: var(--booking-radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(204, 31, 40, 0.12);
    box-shadow: 0 18px 52px rgba(34, 34, 34, 0.12);
    overflow: hidden;
}

.booking-card-head {
    padding: 1.15rem 1.15rem 0;
}

.booking-h2 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

.booking-lead {
    margin-top: 0.45rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-weight: 650;
    line-height: 1.7;
}

.booking-card-body {
    padding: 1.05rem 1.15rem 1.15rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.service-card {
    display: grid;
    gap: 0.25rem;
    padding: 0.95rem 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(204, 31, 40, 0.12);
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    position: relative;
    overflow: hidden;
}

.service-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(34, 34, 34, 0.10);
    border-color: rgba(204, 31, 40, 0.32);
}

.service-card:has(input:checked) {
    border-color: rgba(204, 31, 40, 0.55);
    background: rgba(204, 31, 40, 0.06);
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 31, 40, 0.12);
    border: 1px solid rgba(204, 31, 40, 0.16);
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.service-name {
    font-weight: 950;
    color: rgba(34, 34, 34, 0.92);
    letter-spacing: -0.01em;
}

.service-desc {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.92rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field--full {
    grid-column: 1 / -1;
}

.field-label {
    font-weight: 900;
    color: rgba(34, 34, 34, 0.90);
}

.field-input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(204, 31, 40, 0.16);
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-weight: 700;
    outline: none;
    transition: box-shadow 160ms ease, border-color 160ms ease;
}

.field-input:focus {
    border-color: rgba(204, 31, 40, 0.32);
    box-shadow: 0 0 0 4px rgba(204, 31, 40, 0.14);
}

.field-hint {
    color: rgba(220, 38, 38, 0.9);
    font-weight: 750;
    font-size: 0.9rem;
    display: none;
}

.step.is-invalid .field-hint {
    display: block;
}

.field-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.field-count {
    font-weight: 900;
    color: rgba(34, 34, 34, 0.65);
    font-size: 0.92rem;
}

.checkbox {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--text-light);
    font-weight: 650;
    line-height: 1.55;
}

.checkbox input {
    margin-top: 0.2rem;
    width: 1.15rem;
    height: 1.15rem;
}

.booking-card-foot {
    padding: 0.95rem 1.15rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(204, 31, 40, 0.12);
}

.page-pill {
    min-width: 46px;
    height: 46px;
    padding: 0 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(204, 31, 40, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    font-weight: 950;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-position 300ms ease, border-color 180ms ease;
    background-image: none;
    text-decoration: none;
}

.page-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(34, 34, 34, 0.10);
    border-color: rgba(204, 31, 40, 0.32);
}

.page-pill:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.65);
}

.book-toast {
    padding: 0 1.15rem 1.15rem;
}

.book-toast-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(204, 31, 40, 0.10);
    border: 1px solid rgba(204, 31, 40, 0.16);
    color: rgba(34, 34, 34, 0.90);
    font-weight: 900;
}

.done {
    padding: 0.35rem 0;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.45rem;
}

.done-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 31, 40, 0.12);
    border: 1px solid rgba(204, 31, 40, 0.16);
    color: var(--primary-dark);
    font-size: 1.35rem;
}

.done-title {
    font-weight: 950;
    color: rgba(34, 34, 34, 0.90);
    letter-spacing: -0.01em;
    font-size: 1.2rem;
}

.done-sub {
    color: var(--text-light);
    font-weight: 650;
    line-height: 1.7;
    max-width: 62ch;
}

.done-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
}

.booking-side {
    display: grid;
    gap: 1.05rem;
}

.booking-side-card {
    border-radius: var(--booking-radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(204, 31, 40, 0.12);
    box-shadow: 0 18px 52px rgba(34, 34, 34, 0.12);
    overflow: hidden;
    padding: 1.05rem;
}

.booking-side-title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 950;
    color: rgba(34, 34, 34, 0.90);
}

.booking-side-text {
    margin-top: 0.65rem;
    color: var(--text-light);
    font-weight: 650;
    line-height: 1.7;
}

.booking-side-points {
    margin-top: 0.85rem;
    display: grid;
    gap: 0.6rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 18px;
    border: 1px solid rgba(204, 31, 40, 0.12);
    background: rgba(255, 255, 255, 0.8);
    font-weight: 900;
    color: rgba(34, 34, 34, 0.85);
}

.p-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 31, 40, 0.12);
    border: 1px solid rgba(204, 31, 40, 0.16);
    color: var(--primary-dark);
}

.p-text {
    letter-spacing: -0.01em;
}

.step-dot:focus-visible,
.page-pill:focus-visible,
.service-card:focus-within {
    outline: none;
    box-shadow: 0 0 0 4px rgba(204, 31, 40, 0.18);
}

@media (max-width: 992px) {
    .booking-hero-grid {
        grid-template-columns: 1fr;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .booking-hero {
        padding: 3.25rem 0 2rem;
    }

    .booking-stepper {
        gap: 0.4rem;
    }

    .step-dot {
        padding: 0.35rem 0.45rem;
    }

    .dot-num {
        width: 32px;
        height: 32px;
    }
}
