/* Enhanced booking UI */
.booking-app {
    max-width: 1100px;
    margin: 0 auto;
    padding: 34px 20px 60px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,.92), rgba(10,10,10,.96));
    border-radius: 24px;
}

.booking-header {
    margin-bottom: 22px;
}

.booking-header h1 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    margin: 0 0 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.03em;
}

.booking-steps {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    margin-bottom: 14px;
}

.booking-progress {
    height: 10px;
    background: rgba(255,255,255,.08);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.booking-progress-bar {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #d4af37, #f0cf5a);
    border-radius: 999px;
    transition: width .35s ease;
}

.booking-form {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.booking-step {
    display: none;
    animation: fadeIn .2s ease;
}

.booking-step.is-active {
    display: block;
}

.booking-step h2 {
    margin: 0 0 18px;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.1;
    color: #fff;
}

.booking-step label {
    display: block;
    margin: 14px 0 8px;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    letter-spacing: .02em;
}

.booking-step input,
.booking-step select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: #0b0b0b;
    color: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.booking-step input:focus,
.booking-step select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212,175,55,.14);
}

.booking-step input[type="file"] {
    padding: 12px 16px;
    height: auto;
}

.booking-note,
.booking-checkbox {
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.booking-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    line-height: 1.5;
}

.booking-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #d4af37;
}

.booking-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 28px;
    flex-wrap: wrap;
}

.booking-next,
.booking-prev,
.booking-submit {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: .02em;
    margin-top: 10px;
    transition: transform .2s, box-shadow .2s, opacity .2s;
}

.booking-next,
.booking-submit {
    background: linear-gradient(180deg, #f0cf5a, #d4af37);
    color: #111;
    box-shadow: 0 10px 26px rgba(212,175,55,.22);
}

.booking-next:hover,
.booking-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(212,175,55,.28);
}

.booking-prev {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
}

.booking-prev:hover {
    transform: translateY(-1px);
    border-color: #d4af37;
    color: #d4af37;
}

.booking-summary {
    margin-top: 8px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    line-height: 1.8;
}

.booking-summary p {
    margin: 0 0 8px;
}

.booking-loader,
.booking-result {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
}

.booking-result h3 {
    margin: 0 0 6px;
    color: #d4af37;
}

.booking-loader {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-loader::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.2);
    border-top-color: #d4af37;
    animation: spin 1s linear infinite;
}
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal[hidden] {
    display: none;
}

.booking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}

.booking-modal__box {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: calc(100% - 30px);
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
    text-align: center;
}

.booking-modal__box h3 {
    margin: 0 0 12px;
    color: #d4af37;
    font-size: 28px;
}

.booking-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    line-height: 1;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .booking-app {
        padding: 18px 12px 34px;
        border-radius: 18px;
        width: 100%;
        box-sizing: border-box;
    }

    .booking-form {
        padding: 18px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .booking-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .booking-actions button {
        width: 100%;
    }

    .booking-step input,
    .booking-step select {
        width: 100%;
       
        height: 48px;
        box-sizing: border-box;
				--webkit-appearance:none;
		appearance: none;
    }
}

@media (min-width: 250px) {
    .booking-app {
        padding: 18px 12px 34px;
        border-radius: 18px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .booking-form {
        padding: 18px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .booking-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .booking-actions button {
        width: 100%;
    }

	.booking-step input[type="date"]{
        width: 100%;

        height: 36px;
        box-sizing: border-box;		
		--webkit-appearance:none;
		appearance: none;
	}
	
    .booking-step select {
        width: 100%;

        height: 36px;
        box-sizing: border-box;
    }
}


