.booking-page {
    background: #f5f4f1;
    min-height: 100vh;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

.booking-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1rem 1.5rem;
}

.booking-header__inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-header__back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #c9a962;
    text-decoration: none;
    transition: color 0.2s;
}

.booking-header__back:hover {
    color: #a67c49;
}

.booking-header__steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #999;
}

.step {
    font-weight: 700;
    color: #999;
}

.step--active {
    color: #1a1510;
}

.step-sep {
    color: #ccc;
}

.booking-layout {
    max-width: 1250px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.bform-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 98, 0.12);
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bform-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1510;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bform-card__title i {
    color: #c9a962;
    font-size: 1.4rem;
}

.bform-card__note {
    font-size: 0.95rem;
    color: #777;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.optional-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    background: #f4f4f4;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 4px;
}

.bform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.bform-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.bform-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

.req {
    color: #c9a962;
}

.bform-input,
.bform-select {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e0d8;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: #1a1510;
    background: #faf9f7;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.bform-input:focus,
.bform-select:focus {
    border-color: #c9a962;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.bform-textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e0d8;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: #1a1510;
    background: #faf9f7;
    outline: none;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.bform-textarea:focus {
    border-color: #c9a962;
}

.bform-hint {
    font-size: 0.8rem;
    color: #888;
}

/* Radio Cards */
.bform-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bform-radio-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e0d8;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #faf9f7;
}

.bform-radio-card--active {
    border-color: #c9a962;
    background: rgba(201, 169, 98, 0.05);
}

.bform-radio-input {
    display: none;
}

.bform-radio-icon {
    font-size: 1.75rem;
    color: #c9a962;
    flex-shrink: 0;
}

.bform-radio-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: #1a1510;
}

.bform-radio-desc {
    font-size: 0.82rem;
    color: #888;
}

/* Toggle Items */
.bform-toggle-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.bform-toggle-item:last-child {
    border-bottom: none;
}

.bform-toggle-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.bform-toggle-icon.car {
    background: rgba(201, 169, 98, 0.1);
    color: #c9a962;
}

.bform-toggle-icon.taxi {
    background: rgba(26, 21, 16, 0.06);
    color: #1a1510;
}

.bform-toggle-text {
    flex: 1;
}

.bform-toggle-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1510;
    margin-bottom: 0.3rem;
}

.bform-toggle-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

.bform-toggle-switch {
    flex-shrink: 0;
}

.toggle-input {
    display: none;
}

.toggle-label {
    display: block;
    width: 48px;
    height: 26px;
    background: #ddd;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked+.toggle-label {
    background: #c9a962;
}

.toggle-input:checked+.toggle-label::after {
    transform: translateX(-22px);
}

/* Info Box */
.bform-info-box {
    background: rgba(201, 169, 98, 0.07);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-right: 4px solid #c9a962;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.bform-info-box i {
    color: #c9a962;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Submit */
.bform-submit-wrap {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 98, 0.12);
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bform-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.bform-privacy-note i {
    color: #c9a962;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bform-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #1a1510;
    color: #c9a962;
    border: none;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bform-submit-btn:hover {
    background: #c9a962;
    color: #1a1510;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.3);
}

.bform-submit-btn i {
    font-size: 1.4rem;
}

.booking-sidebar {
    position: sticky;
    top: 100px;
}

.bsidebar-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bsidebar-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.bsidebar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bsidebar-img-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1510;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #c9a962;
}

.bsidebar-body {
    padding: 1.5rem;
}

.bsidebar-branch-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1510;
    margin: 0 0 0.4rem;
}

.bsidebar-address {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.bsidebar-address i {
    color: #c9a962;
    flex-shrink: 0;
    margin-top: 2px;
}

.bsidebar-divider {
    height: 1px;
    background: rgba(201, 169, 98, 0.15);
    margin: 1.25rem 0;
}

.bsidebar-unit-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.bsidebar-unit-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1510;
    margin-bottom: 0.75rem;
}

.bsidebar-unit-props {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.bsidebar-unit-props span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: #555;
    font-weight: 600;
}

.bsidebar-unit-props i {
    color: #c9a962;
}

.bsidebar-price-box {
    background: #faf9f7;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    text-align: center;
}

.bsidebar-price-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bsidebar-price-val {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1510;
}

.price-cur {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1510;
}

.price-per {
    font-size: 0.9rem;
    color: #888;
}

.bsidebar-price-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.4rem;
}

/* Policy Badges */
.bsidebar-policies {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bsidebar-policy-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.bsidebar-policy-item--green {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.07);
}

.bsidebar-policy-item--info {
    color: #555;
    background: rgba(0, 0, 0, 0.03);
}

/* Contacts */
.bsidebar-contacts-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bsidebar-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.bsidebar-contact-link.whatsapp {
    background: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.2);
    color: #16a34a;
}

.bsidebar-contact-link.phone {
    background: rgba(201, 169, 98, 0.07);
    border-color: rgba(201, 169, 98, 0.2);
    color: #1a1510;
}

.bsidebar-contact-link:hover {
    transform: translateX(-3px);
}

.contact-name {
    font-size: 0.82rem;
    font-weight: 800;
    color: inherit;
}

.contact-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
}


@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        order: -1;
        position: static;
    }

    .bform-grid,
    .bform-radio-group {
        grid-template-columns: 1fr;
    }
}