.tsb-booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tsb-booking-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #c8a96b;
    letter-spacing: 0.5px;
}

.tsb-booking-form {
    max-width: 900px;
    margin: 30px 0;
    padding: 30px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #fff;
}

.tsb-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tsb-form-field {
    flex: 1 1 calc(50% - 10px);
    min-width: 260px;
}

.tsb-form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.tsb-form-field input,
.tsb-form-field select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: #1b1b1b;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
}

.tsb-form-field input:focus,
.tsb-form-field select:focus {
    outline: none;
    border-color: #c8a96b;
}

.tsb-summary-box {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: #1b1b1b;
    color: #fff;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.tsb-form-actions {
    margin-top: 10px;
}

.tsb-form-actions button {
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    background: #c8a96b;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.tsb-form-actions button:hover {
    opacity: 0.92;
}

.tsb-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 20px 60px;
}

.tsb-page-title {
    margin-bottom: 25px;
    color: #fff;
}

.tsb-booking-success {
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #16351f;
    border: 1px solid #2f6b40;
    color: #d7f5df;
}

.tsb-form-field-full {
    flex: 1 1 100%;
    min-width: 100%;
}

.tsb-form-field input[type="file"] {
    width: 100%;
    padding: 12px 0;
    color: #fff;
    background: transparent;
    border: 0;
    height: auto;
}

.tsb-field-note {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 767px) {
    .tsb-form-field {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .tsb-booking-form {
        padding: 20px;
    }
}