    .booking-hero {
        padding: 120px 0 40px;
        background: var(--beige);
        text-align: center;
    }

    .booking-hero h1 {
        font-size: clamp(26px, 4vw, 42px);
        font-weight: 900;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .booking-hero p {
        font-size: 15px;
        color: var(--text-medium);
        max-width: 500px;
        margin: 0 auto;
    }

    /* Steps bar */
    .steps-bar {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
        position: sticky;
        top: 72px;
        z-index: 100;
    }

    .steps-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        max-width: 560px;
        margin: 0 auto;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        flex: 1;
        position: relative;
    }

    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 18px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--border);
        z-index: -1;
    }

    .step-item.done:not(:last-child)::after,
    .step-item.active:not(:last-child)::after {
        background: var(--navy);
    }

    .step-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--beige);
        border: 2px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        color: var(--text-light);
        position: relative;
        z-index: 1;
        transition: var(--transition);
    }

    .step-item.active .step-circle {
        background: var(--navy);
        border-color: var(--navy);
        color: white;
    }

    .step-item.done .step-circle {
        background: var(--green);
        border-color: var(--green);
        color: white;
    }

    .step-label {
        font-size: 11px;
        color: var(--text-light);
        font-weight: 500;
        white-space: nowrap;
    }

    .step-item.active .step-label {
        color: var(--navy);
        font-weight: 700;
    }

    .step-item.done .step-label {
        color: var(--green);
    }

    /* Main layout */
    .booking-layout {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 32px;
        padding: 40px 0 80px;
        align-items: start;
    }

    /* Booking card */
    .booking-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
        overflow: hidden;
    }

    .booking-card-header {
        padding: 20px 28px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .booking-card-header-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--beige);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .booking-card-header h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .booking-card-body {
        padding: 28px;
    }

    /* Service type selector */
    .service-type-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .service-type-card {
        border: 2px solid var(--border);
        border-radius: var(--radius-md);
        padding: 20px;
        cursor: pointer;
        transition: var(--transition);
        position: relative;
    }

    .service-type-card:hover {
        border-color: var(--navy);
        background: rgba(27, 42, 107, 0.02);
    }

    .service-type-card.selected {
        border-color: var(--navy);
        background: rgba(27, 42, 107, 0.03);
    }

    .service-type-card.selected::after {
        content: '✓';
        position: absolute;
        top: 12px;
        left: 12px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--navy);
        color: white;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-type-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .service-type-name {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 6px;
    }

    .service-type-desc {
        font-size: 12px;
        color: var(--text-medium);
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .service-type-price {
        font-size: 14px;
        font-weight: 700;
        color: var(--navy);
    }

    .service-type-duration {
        font-size: 12px;
        color: var(--text-light);
    }

    /* Calendar */
    .calendar-wrap {
        margin-top: 4px;
    }

    .calendar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .calendar-month {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .cal-nav {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--beige);
        border: none;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .cal-nav:hover {
        background: var(--navy);
        color: white;
    }

    .calendar-days-header {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        margin-bottom: 8px;
    }

    .calendar-days-header span {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-light);
        padding: 6px 0;
    }

    .calendar-days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
    }

    .cal-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        transition: var(--transition);
        border: 1.5px solid transparent;
    }

    .cal-day:hover:not(.disabled):not(.empty) {
        background: var(--beige);
    }

    .cal-day.today {
        border-color: var(--navy);
        color: var(--navy);
        font-weight: 700;
    }

    .cal-day.selected {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
    }

    .cal-day.disabled {
        color: var(--border);
        cursor: not-allowed;
    }

    .cal-day.empty {
        cursor: default;
    }

    .cal-day.available:not(.selected) {
        background: var(--green-pale);
        color: var(--green);
        font-weight: 600;
    }

    /* Time slots */
    .time-slots {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 16px;
    }

    .time-slot {
        padding: 10px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-medium);
        cursor: pointer;
        transition: var(--transition);
    }

    .time-slot:hover:not(.unavailable) {
        border-color: var(--navy);
        color: var(--navy);
    }

    .time-slot.selected {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
    }

    .time-slot.unavailable {
        background: var(--beige);
        color: var(--border);
        cursor: not-allowed;
        text-decoration: line-through;
    }

    .time-slot.booked {
        opacity: 0.4;
        pointer-events: none;
        text-decoration: line-through;
    }

    .slots-note {
        font-size: 12px;
        color: var(--text-light);
        margin-top: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .slot-legend {
        width: 12px;
        height: 12px;
        border-radius: 3px;
        display: inline-block;
    }

    /* Form fields */
    .form-group {
        margin-bottom: 18px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
        display: block;
    }

    .form-input,
    .form-textarea,
    .form-select {
        width: 100%;
        padding: 13px 16px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        font-family: var(--font-main);
        font-size: 14px;
        color: var(--text-dark);
        background: var(--white);
        transition: var(--transition);
        outline: none;
        direction: rtl;
    }

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
        border-color: var(--navy);
        box-shadow: 0 0 0 3px rgba(27, 42, 107, 0.08);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: var(--text-light);
    }

    .form-textarea {
        resize: vertical;
        min-height: 100px;
    }

    /* Payment methods */
    .payment-methods {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 16px;
    }

    .payment-method {
        border: 2px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 16px 12px;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
    }

    .payment-method:hover {
        border-color: var(--navy);
    }

    .payment-method.selected {
        border-color: var(--navy);
        background: rgba(27, 42, 107, 0.03);
    }

    .payment-method-icon {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .payment-method-name {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .card-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 16px;
    }

    .secure-note {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: var(--text-light);
        margin-top: 12px;
    }

    /* Summary sidebar */
    .summary-card {
        background: var(--navy);
        border-radius: var(--radius-lg);
        padding: 28px;
        color: white;
        position: sticky;
        top: 140px;
    }

    .summary-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .summary-row-label {
        color: rgba(255, 255, 255, 0.65);
    }

    .summary-row-value {
        font-weight: 600;
    }

    .summary-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        margin: 16px 0;
    }

    .summary-total {
        display: flex;
        justify-content: space-between;
        font-size: 20px;
        font-weight: 800;
        color: white;
    }

    .summary-discount {
        background: rgba(42, 127, 98, 0.2);
        border: 1px solid rgba(42, 127, 98, 0.3);
        border-radius: 10px;
        padding: 10px 14px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 16px 0;
    }

    .confirm-btn {
        width: 100%;
        padding: 16px;
        background: var(--green);
        color: white;
        border: none;
        border-radius: 12px;
        font-family: var(--font-main);
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        margin-top: 20px;
    }

    .confirm-btn:hover {
        background: #236854;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(42, 127, 98, 0.4);
    }

    .whatsapp-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: var(--transition);
    }

    .whatsapp-link:hover {
        color: white;
    }

    .step-nav-btns {
        display: flex;
        gap: 12px;
        margin-top: 28px;
    }

    .btn-next,
    .btn-prev {
        flex: 1;
        padding: 14px;
        border-radius: 10px;
        font-family: var(--font-main);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        border: none;
    }

    .btn-next {
        background: var(--navy);
        color: white;
    }

    .btn-next:hover {
        background: var(--navy-dark);
    }

    .btn-prev {
        background: var(--beige);
        color: var(--text-dark);
    }

    .btn-prev:hover {
        background: var(--border);
    }

    .prod-controls button {
        background-color: var(--green);
        color: #ffffff;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 3px;
        padding: 5px;
        margin: 10px 15px;
    }

    .prod-controls input:hover {
        background-color: var(--green-light);
        ;
    }

    @media (max-width: 900px) {
        .booking-layout {
            grid-template-columns: 1fr;
        }

        .summary-card {
            position: static;
        }

        .service-type-grid {
            grid-template-columns: 1fr;
        }

        .time-slots {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 600px) {
        .form-row {
            grid-template-columns: 1fr;
        }

        .time-slots {
            grid-template-columns: repeat(3, 1fr);
        }

        .payment-methods {
            grid-template-columns: 1fr;
        }

        .steps-inner {
            gap: 0;
        }

        .step-label {
            display: none;
        }
    }