/* Booking page styles – use with ./css/style-b.css */
body.bp-page { font-family: var(--font-inter); background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%); min-height: 100vh; }
.bp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #1a1a1a; color: #fff; padding: 0.875rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.bp-nav a { color: #fff; text-decoration: none; font-weight: 500; }
.bp-nav a:hover { text-decoration: underline; }
.bp-nav .bp-nav-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-left: auto; }
.bp-nav .language-switcher { margin-left: auto; }
.bp-nav .lang-trigger-btn { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.75rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; color: #fff; cursor: pointer; }
.bp-nav .lang-trigger-btn:hover { background: rgba(255,255,255,0.25); }
.bp-main { padding: 6rem 1.25rem 3rem; max-width: 560px; margin: 0 auto; }
.bp-header { text-align: center; margin-bottom: 1.75rem; }
.bp-header-title { font-size: 1.875rem; font-weight: 800; margin: 0 0 0.5rem; color: #1a1a1a; letter-spacing: -0.02em; line-height: 1.2; }
.bp-header-sub { font-size: 1rem; color: #555; margin: 0 0 0.5rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.bp-trust-line { font-size: 0.8125rem; color: #6b7280; margin: 0; }
.bp-progress { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.bp-progress-txt { font-size: 0.8125rem; color: #6b7280; margin-right: 0.25rem; }
.bp-card { background: #fff; border-radius: 16px; padding: 1.75rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.06); }
.bp-step { display: none; }
.bp-step.on, .bp-step.bp-step-on { display: block; }
.bp-step-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.25rem; text-align: center; color: #1a1a1a; }
.bp-step-sub { font-size: 0.9375rem; color: #6b7280; margin: 0 0 1.25rem; text-align: center; }
.bp-type-cards, .bp-types { display: flex; flex-direction: column; gap: 0.75rem; }
.bp-type-btn {
    display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1.125rem 1.25rem;
    border: 2px solid #e5e7eb; border-radius: 12px; background: #fff; cursor: pointer; text-align: left; font-size: 1rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.bp-type-btn:hover { border-color: var(--primary); background: #fffbfc; box-shadow: 0 2px 8px rgba(196,30,58,0.08); }
.bp-type-btn.on, .bp-type-btn.bp-type-btn-on { border-color: var(--primary); background: #fff5f6; box-shadow: 0 0 0 1px var(--primary); }
.bp-type-btn .bp-type-icon { font-size: 1.75rem; line-height: 1; }
.bp-type-btn .bp-type-content { flex: 1; min-width: 0; }
.bp-type-btn .bp-type-name { font-weight: 600; color: #1a1a1a; display: block; margin-bottom: 0.15rem; }
.bp-type-btn .bp-type-desc { font-size: 0.8125rem; color: #6b7280; margin: 0; }
.bp-type-badge { font-size: 0.6875rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin-left: 0.35rem; }
.bp-next-wrap { margin-top: 1.5rem; }
.bp-reassure { font-size: 0.8125rem; color: #6b7280; text-align: center; margin-top: 0.75rem; }
.bp-footer { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e5e7eb; font-size: 0.875rem; color: #6b7280; }
.bp-footer a { color: var(--primary); font-weight: 600; }
/* Form: rows and labels */
.bp-form .bp-row { margin-bottom: 1.125rem; }
.bp-form .bp-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 400px) { .bp-form .bp-row-two { grid-template-columns: 1fr; } }
.bp-form label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.4rem; color: #1a1a1a; }
/* Form: inputs and textarea */
.bp-form .bp-input,
.bp-form .bp-textarea,
.bp-form input[type="text"],
.bp-form input[type="email"],
.bp-form input[type="tel"],
.bp-form textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bp-form .bp-textarea,
.bp-form textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.bp-form .bp-input:focus,
.bp-form .bp-textarea:focus,
.bp-form input:focus,
.bp-form textarea:focus {
    outline: none;
    border-color: #C41E3A;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}
.bp-form .bp-input::placeholder,
.bp-form .bp-textarea::placeholder,
.bp-form input::placeholder,
.bp-form textarea::placeholder { color: #9ca3af; }
/* Form: action buttons */
.bp-form .bp-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.bp-form .bp-actions .bp-btn { flex: 1; min-width: 120px; }
/* Buttons (global on booking page) */
.bp-btn {
    display: inline-block;
    padding: 0.9375rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.bp-btn:active { transform: scale(0.99); }
.bp-btn-primary { color: #fff; background: #C41E3A; }
.bp-btn-primary:hover:not(:disabled) { background: #a01830; }
.bp-btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }
.bp-btn-secondary { background: #f3f4f6; color: #374151; border: 2px solid #e5e7eb; }
.bp-btn-secondary:hover { background: #e5e7eb; }
/* Thank you step */
.bp-thanks { text-align: center; padding: 1rem 0; }
.bp-thanks-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: #ecfdf5; color: #059669; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; }
.bp-thanks-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.5rem; color: #1a1a1a; }
.bp-thanks-txt { font-size: 0.9375rem; color: #6b7280; margin: 0 0 1.5rem; line-height: 1.6; }
.bp-thanks-txt a { color: #C41E3A; font-weight: 600; }
