@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

.booking-hero-wizard-wrap {
    --bh-accent-color: #c90822;
    --bh-danger-color: #c90822;
    --bh-text-main: #ffffff;
    --bh-text-muted: #a0aec0;
    --bh-border-color: rgba(255, 255, 255, 0.08);
    --bh-bg-card: #12141c;
    
    --bh-font-heading: 'Oswald', 'Outfit', sans-serif;
    --bh-font-body: 'Space Grotesk', 'Outfit', sans-serif;
    
    font-family: var(--bh-font-body);
    max-width: 1050px;
    margin: 30px auto;
    color: var(--bh-text-main);
    box-sizing: border-box;
}

.booking-hero-wizard-wrap * {
    box-sizing: border-box;
}

/* Steps management */
.booking-wizard-step {
    display: none;
}

.booking-wizard-step.active {
    display: block;
    animation: bh-fade-in 0.35s ease-out;
}

@keyframes bh-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Back Link */
.back-link {
    display: inline-block;
    color: var(--bh-text-muted);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--bh-accent-color);
}

/* Button styles */
.btn-next-red {
    background-color: var(--bh-danger-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-next-red:hover {
    background-color: #aa061a;
}

.btn-next-black {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.btn-next-black:hover:not(:disabled) {
    background-color: #222222;
}

.btn-next-black:disabled {
    background-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
}

/* ================= STEP 1: ADDONS ================= */
.booking-modal-like-container {
    max-width: 620px;
    margin: 0 auto;
    background: var(--bh-bg-card);
    border: 1px solid var(--bh-border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.booking-modal-header {
    border-bottom: 1px solid var(--bh-border-color);
    padding: 24px 30px;
    position: relative;
}

.booking-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.modal-subtitle {
    margin: 0;
    color: var(--bh-text-muted);
    font-size: 14px;
}

.booking-modal-body {
    padding: 30px;
}

.booking-modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.section-desc {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1px solid var(--bh-border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.addon-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.addon-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.addon-left input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--bh-danger-color);
}

.addon-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.addon-title {
    font-weight: 600;
    font-size: 15px;
}

.addon-subtext {
    font-size: 13px;
    color: var(--bh-text-muted);
}

.addon-price {
    font-weight: 600;
    font-size: 15px;
}

.booking-modal-footer {
    border-top: 1px solid var(--bh-border-color);
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
}

/* ================= STEP 2: SCHEDULE YOUR SERVICE ================= */
.booking-step-header {
    text-align: center;
    margin-bottom: 35px;
}

.booking-step-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.booking-step-header .subtitle {
    margin: 0;
    color: var(--bh-text-muted);
    font-size: 15px;
}

.booking-two-columns {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .booking-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.booking-column-main {
    background: #ffffff;
    border: 1px solid var(--bh-border-color);
    border-radius: 16px;
    padding: 30px;
}

.calendar-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bh-border-color);
    padding-bottom: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.calendar-header-row h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.timezone-selector {
    font-size: 13px;
    color: var(--bh-text-muted);
}

.calendar-and-slots-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .calendar-and-slots-grid {
        grid-template-columns: 1fr;
    }
}

/* Calendar styling */
.calendar-widget {
    user-select: none;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-nav button {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--bh-text-main);
    transition: background-color 0.2s ease;
}

.calendar-nav button:hover {
    background-color: #f1f5f9;
}

.calendar-month-year {
    font-weight: 600;
    font-size: 16px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color: var(--bh-text-muted);
    margin-bottom: 10px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 8px;
}

.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    font-weight: 400;
    transition: all 0.2s ease;
}

.calendar-day-cell:hover:not(.disabled) {
    background-color: #f1f5f9;
}

.calendar-day-cell.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.calendar-day-cell.today {
    font-weight: 700;
    text-decoration: underline;
}

.calendar-day-cell.selected {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
}

.calendar-day-cell.has-availability::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background-color: #000000;
    border-radius: 50%;
}

.calendar-day-cell.selected.has-availability::after {
    background-color: #ffffff;
}

/* Slots styling */
.slots-widget {
    border-left: 1px solid var(--bh-border-color);
    padding-left: 25px;
}

@media (max-width: 768px) {
    .slots-widget {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--bh-border-color);
        padding-top: 25px;
    }
}

.slots-header-date {
    margin: 0 0 15px 0;
    font-size: 15px;
    font-weight: 600;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.slot-btn {
    height: 44px;
    background: #ffffff;
    border: 1px solid var(--bh-border-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bh-text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-btn:hover {
    border-color: #000000;
}

.slot-btn.selected {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.show-all-sessions-link {
    display: inline-block;
    font-size: 13px;
    color: var(--bh-text-muted);
    text-decoration: underline;
    margin-top: 10px;
}

/* Sidebar Details Card */
.booking-column-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-details-card {
    background: #ffffff;
    border: 1px solid var(--bh-border-color);
    border-radius: 16px;
    padding: 25px;
}

.sidebar-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bh-border-color);
    padding-bottom: 14px;
    margin-bottom: 15px;
}

.sidebar-details-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.sidebar-edit-link {
    font-size: 13px;
    color: var(--bh-text-muted);
    text-decoration: underline;
}

.sidebar-service-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.online-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.service-price-desc {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.selected-datetime-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.additional-details {
    border-top: 1px solid var(--bh-border-color);
    padding-top: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

.additional-details p {
    margin: 0;
}

.login-prompt {
    text-align: center;
    font-size: 13px;
    color: var(--bh-text-muted);
    margin: 15px 0 0 0;
}

.login-prompt a {
    color: var(--bh-text-main);
    font-weight: 600;
    text-decoration: underline;
}

/* ================= STEP 3: FORM & PAYMENT ================= */
.form-section-card {
    background: #ffffff;
    border: 1px solid var(--bh-border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
}

.form-section-card h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 700;
}

.login-banner {
    background: #f8fafc;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14px;
    margin-bottom: 25px;
}

.login-banner a {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
}

.booking-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.booking-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .booking-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.booking-field-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--bh-text-main);
}

.booking-field-group input[type="text"],
.booking-field-group input[type="email"],
.booking-field-group textarea,
.booking-field-group select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.booking-field-group input:focus,
.booking-field-group textarea:focus,
.booking-field-group select:focus {
    border-color: #000000;
}

.phone-input-wrapper {
    display: flex;
}

.phone-input-wrapper select {
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
}

.booking-field-group textarea {
    height: 100px;
    resize: vertical;
}

/* Payment packages options */
.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border: 1px solid var(--bh-border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option-card:hover {
    border-color: #cbd5e1;
}

.payment-option-card.checked {
    border-color: #000000;
    background-color: #f8fafc;
}

.payment-option-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-option-left input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #000000;
}

.payment-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-option-title {
    font-weight: 600;
    font-size: 15px;
}

.payment-option-subtext {
    font-size: 13px;
    color: var(--bh-text-muted);
}

.payment-option-price {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: baseline;
}

.payment-frequency {
    font-size: 12px;
    font-weight: 400;
    color: var(--bh-text-muted);
    margin-left: 2px;
}

/* Sidebar detail items specific to Step 3 */
.sidebar-details-toggle {
    font-size: 13px;
    color: var(--bh-text-main);
    text-decoration: none;
    font-weight: 600;
}

.payment-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 16px;
}

.payment-total-row strong {
    font-size: 20px;
}

.payment-required-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--bh-text-muted);
    margin: 15px 0;
}

.view-policy-link {
    display: block;
    font-size: 13px;
    color: var(--bh-text-muted);
    text-decoration: underline;
    margin-bottom: 15px;
}

/* ================= MODAL POPUP LAYOUT ================= */
.booking-hero-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.booking-hero-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-hero-modal-container {
    background: var(--bh-bg-card, #ffffff);
    border-radius: 16px;
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 30px;
}

.booking-hero-modal-overlay.active .booking-hero-modal-container {
    transform: translateY(0);
}

.booking-hero-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--bh-text-muted, #64748b);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 1000;
}

.booking-hero-modal-close:hover {
    color: var(--bh-text-main, #0f172a);
}

.booking-hero-trigger-btn {
    background-color: var(--bh-danger-color, #c90822);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

.booking-hero-trigger-btn:hover {
    background-color: #aa061a;
}

.booking-hero-trigger-btn:active {
    transform: scale(0.98);
}

/* Ensure form overlays and inputs inside modal are correctly positioned */
.booking-hero-modal-container::-webkit-scrollbar {
    width: 8px;
}
.booking-hero-modal-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 8px;
}
.booking-hero-modal-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}
.booking-hero-modal-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ================= DARK THEME PREMIUM OVERRIDES ================= */

/* Service Select Cards on Step 0 */
.service-select-card {
    background: var(--bh-bg-card, #12141c) !important;
    border: 1px solid var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    border-radius: 12px;
    padding: 35px 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.service-select-card:hover {
    border-color: var(--bh-danger-color, #c90822) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(201, 8, 34, 0.18);
}

.service-select-card:hover .bh-card-book-now-link {
    gap: 10px !important;
}

/* Apply Oswald font to headings and steps */
.booking-modal-header h2,
.booking-step-header h2,
.booking-modal-body h3,
.form-section-card h3,
.calendar-header-row h3,
.sidebar-details-header h3,
.sidebar-service-info h4,
.btn-next-red,
.btn-next-black,
.booking-hero-trigger-btn,
.slot-btn,
.calendar-month-year,
.calendar-weekdays {
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
}

/* Apply Space Grotesk to body elements, labels, inputs */
.booking-hero-wizard-wrap,
.booking-hero-wizard-wrap label,
.booking-hero-wizard-wrap input,
.booking-hero-wizard-wrap textarea,
.booking-hero-wizard-wrap select,
.booking-hero-wizard-wrap span,
.booking-hero-wizard-wrap p,
.addon-title,
.payment-option-title,
.payment-option-subtext {
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
}

/* Step wrappers and containers backgrounds */
.booking-modal-like-container,
.booking-column-main,
.sidebar-details-card,
.form-section-card {
    background: var(--bh-bg-card, #12141c) !important;
    border-color: var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    color: var(--bh-text-main, #ffffff) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Form inputs & textareas in dark mode */
.booking-field-group input[type="text"],
.booking-field-group input[type="email"],
.booking-field-group textarea,
.booking-field-group select,
.phone-country-mock {
    background-color: #181b25 !important;
    border-color: var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    color: var(--bh-text-main, #ffffff) !important;
    border-radius: 6px !important;
}

.booking-field-group input:focus,
.booking-field-group textarea:focus,
.booking-field-group select:focus {
    border-color: var(--bh-danger-color, #c90822) !important;
    box-shadow: 0 0 0 1px var(--bh-danger-color, #c90822) !important;
}

/* Addon & payment selection cards */
.addon-card,
.payment-option-card {
    background-color: #181b25 !important;
    border-color: var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    color: var(--bh-text-main, #ffffff) !important;
    border-radius: 8px !important;
}

.addon-card:hover,
.payment-option-card:hover {
    background-color: #202330 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.addon-card.checked,
.payment-option-card.checked {
    border-color: var(--bh-danger-color, #c90822) !important;
    background-color: rgba(201, 8, 34, 0.06) !important;
}

/* Time Slot Buttons */
.slot-btn {
    background: #181b25 !important;
    border-color: var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    color: var(--bh-text-main, #ffffff) !important;
    border-radius: 6px !important;
}

.slot-btn:hover {
    border-color: var(--bh-text-main, #ffffff) !important;
}

.slot-btn.selected {
    background: var(--bh-danger-color, #c90822) !important;
    border-color: var(--bh-danger-color, #c90822) !important;
    color: #ffffff !important;
}

/* Calendar styling in dark mode */
.calendar-day-cell:hover:not(.disabled) {
    background-color: #181b25 !important;
    color: #ffffff !important;
}

.calendar-day-cell.disabled {
    color: rgba(255, 255, 255, 0.2) !important;
}

.calendar-day-cell.selected {
    background-color: var(--bh-danger-color, #c90822) !important;
    color: #ffffff !important;
}

.calendar-day-cell.has-availability::after {
    background-color: var(--bh-danger-color, #c90822) !important;
}

.calendar-day-cell.selected.has-availability::after {
    background-color: #ffffff !important;
}

.calendar-nav button {
    color: var(--bh-text-main, #ffffff) !important;
}

.calendar-nav button:hover {
    background-color: #181b25 !important;
}

/* Modal Overlay backdrop blur and scroll styling */
.booking-hero-modal-overlay {
    background-color: rgba(8, 9, 12, 0.8) !important;
}

.booking-hero-modal-container::-webkit-scrollbar-track {
    background: #12141c;
}
.booking-hero-modal-container::-webkit-scrollbar-thumb {
    background: #2b3040;
}
.booking-hero-modal-container::-webkit-scrollbar-thumb:hover {
    background: #3e455c;
}

.login-banner {
    background: #181b25 !important;
    color: var(--bh-text-muted, #a0aec0) !important;
    border: 1px solid var(--bh-border-color, rgba(255, 255, 255, 0.08));
}

.login-banner a {
    color: #ffffff !important;
}

.phone-input-wrapper select {
    border-color: var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
}

/* Inline auth tabs and switcher styling */
.bh-auth-tabs-wrapper {
    margin-bottom: 25px;
}
.bh-auth-switcher {
    display: flex;
    background: #181b25;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--bh-border-color, rgba(255,255,255,0.08));
}
.bh-auth-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--bh-text-muted, #a0aec0) !important;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
}
.bh-auth-tab-btn:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.02);
}
.bh-auth-tab-btn.active {
    background: var(--bh-danger-color, #c90822) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(201, 8, 34, 0.2);
}

.bh-registration-box {
    margin-top: 15px;
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--bh-border-color, rgba(255,255,255,0.08));
}
.bh-registration-fields {
    display: none;
    margin-top: 15px;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
@media (max-width: 600px) {
    .bh-registration-fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
.bh-login-error {
    display: none;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #f87171;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 15px;
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
}
.bh-logged-in-notice {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--bh-border-color, rgba(255,255,255,0.08));
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--bh-text-muted, #a0aec0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
}

/* ================= CUSTOM REFACTORED CLASSES ================= */
.bh-step0-container {
    max-width: 950px;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
}
.bh-step0-header {
    text-align: center;
    margin-bottom: 45px;
    border-bottom: none;
    padding: 0;
}
.bh-step0-category {
    color: var(--bh-danger-color, #c90822);
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.bh-step0-title {
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 18px 0;
    color: #ffffff;
    letter-spacing: -1px;
}
.booking-modal-header .modal-subtitle {
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--bh-text-muted, #a0aec0);
    max-width: 720px;
    margin: 0 auto;
}
.service-select-card h3 {
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}
.service-select-card p {
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--bh-text-muted, #a0aec0);
    line-height: 1.6;
    margin: 0 0 25px 0;
}
.bh-srv-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
    margin: 0 0 30px 0;
    padding: 0;
    list-style-type: none;
}
.bh-srv-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
    font-size: 13px;
    color: #ffffff;
}
.bh-bullet-dot {
    color: var(--bh-danger-color, #c90822);
    font-size: 16px;
    line-height: 1;
}
.bh-srv-bottom-wrapper {
    margin-top: auto;
    border-top: 1px solid var(--bh-border-color, rgba(255,255,255,0.08));
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bh-srv-price-line {
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
    font-size: 14px;
    color: var(--bh-text-muted, #a0aec0);
}
.bh-srv-base-price {
    color: var(--bh-danger-color, #c90822);
    font-weight: 700;
}
.bh-card-book-now-link {
    color: var(--bh-danger-color, #c90822);
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.bh-section-desc-sub {
    font-family: var(--bh-font-body);
    text-transform: none;
    font-size: 13px;
    color: var(--bh-text-muted, #a0aec0);
    font-weight: normal;
    display: block;
    margin-top: 4px;
    line-height: 1.5;
}
.booking-step-header.bh-align-left {
    text-align: left;
    margin-bottom: 20px;
}
.bh-ajax-login-btn-custom {
    margin-top: 10px;
    width: auto;
    padding: 10px 25px;
    font-size: 13px;
}
.sidebar-details-wrapper {
    border-top: 1px solid var(--bh-border-color, rgba(255,255,255,0.08));
    margin-top: 15px;
    padding-top: 15px;
}
.bh-sidebar-payment-title {
    margin-top: 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--bh-border-color, rgba(255,255,255,0.08));
    padding-bottom: 8px;
}

/* ================= THANK YOU SCREEN & ANIMATED CHECKMARK ================= */
.bh-thankyou-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
}

.bh-thankyou-card {
    background: var(--bh-bg-card, #12141c) !important;
    border: 1px solid var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    color: var(--bh-text-main, #ffffff) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35) !important;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    text-align: center;
    animation: bh-fade-in 0.4s ease-out;
}

.bh-thankyou-title {
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 20px 0 10px 0;
    letter-spacing: -0.5px;
}

.bh-thankyou-subtitle {
    font-family: var(--bh-font-body, 'Space Grotesk', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: var(--bh-text-muted, #a0aec0);
    margin-bottom: 30px;
}

.bh-thankyou-details-box {
    background: #181b25;
    border: 1px solid var(--bh-border-color, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    margin-bottom: 30px;
}

.bh-thankyou-details-box h3 {
    margin: 0 0 15px 0;
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bh-danger-color, #c90822);
}

.bh-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 14px;
}

.bh-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bh-detail-row:first-of-type {
    padding-top: 0;
}

.bh-detail-label {
    color: var(--bh-text-muted, #a0aec0);
    font-weight: 500;
}

.bh-detail-value {
    color: #ffffff;
    font-weight: 600;
}

.bh-badge-plan {
    background: rgba(201, 8, 34, 0.1);
    color: var(--bh-danger-color, #c90822);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(201, 8, 34, 0.2);
}

.bh-thankyou-actions {
    display: flex;
    gap: 15px;
}

@media (max-width: 600px) {
    .bh-thankyou-actions {
        flex-direction: column;
        gap: 10px;
    }
}

.bh-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 6px;
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bh-btn-gcal {
    background-color: #ffffff;
    color: #12141c !important;
    border: 1px solid #ffffff;
}

.bh-btn-gcal:hover {
    background-color: #e2e8f0;
    border-color: #e2e8f0;
}

.bh-btn-gcal .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.bh-btn-meet {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff !important;
    border: 1px solid #4f46e5;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.bh-btn-meet:hover {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
    border-color: #4338ca;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
    transform: translateY(-1px);
}

.bh-btn-meet:active {
    transform: translateY(0);
}

.bh-btn-meet .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.bh-btn-book {
    background-color: var(--bh-danger-color, #c90822);
    color: #ffffff !important;
    border: 1px solid var(--bh-danger-color, #c90822);
}

.bh-btn-book:hover {
    background-color: #aa061a;
    border-color: #aa061a;
}

/* --- ANIMATED SUCCESS CHECKMARK CSS --- */
.bh-success-checkmark-wrapper {
    margin: 0 auto;
    width: 80px;
    height: 80px;
}

.bh-success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.bh-success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--bh-danger-color, #c90822);
}

.bh-success-checkmark .check-icon::before,
.bh-success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: var(--bh-bg-card, #12141c);
    transform: rotate(-45deg);
}

.bh-success-checkmark .check-icon::before {
    border-radius: 100px 0 0 100px;
    top: -9px;
    left: -32px;
    width: 30px;
    transform-origin: 100% 50%;
}

.bh-success-checkmark .check-icon::after {
    border-radius: 0 100px 100px 0;
    top: -24px;
    left: 36px;
    width: 60px;
    transform-origin: 0 50%;
}

.bh-success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    position: absolute;
    box-sizing: content-box;
    width: 80px;
    height: 80px;
    border: 4px solid rgba(201, 8, 34, 0.15);
    border-radius: 50%;
    z-index: 2;
}

.bh-success-checkmark .check-icon .icon-fix {
    top: 8px;
    left: 26px;
    width: 5px;
    height: 70px;
    position: absolute;
    z-index: 1;
    background: var(--bh-bg-card, #12141c);
    transform: rotate(-45deg);
}

.bh-success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: var(--bh-danger-color, #c90822);
    display: block;
    position: absolute;
    z-index: 10;
    border-radius: 2px;
}

.bh-success-checkmark .check-icon .icon-line.line-tip {
    top: 45px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.bh-success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 45px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

/* ================= MEMBER PORTAL DASHBOARD STYLES ================= */
.bh-client-portal-wrapper {
    max-width: 1050px;
    margin: 40px auto;
}

.bh-portal-header-card {
    background: linear-gradient(135deg, #181b25 0%, #1e2230 100%) !important;
    border: 1px solid var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    flex-wrap: wrap;
    gap: 20px;
}

.bh-portal-user-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bh-portal-avatar {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--bh-danger-color, #c90822) 0%, #ff2a44 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 8, 34, 0.4);
}

.bh-portal-user-meta h2 {
    margin: 0 0 6px 0;
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 28px;
    text-transform: uppercase;
    color: #ffffff;
}

.bh-portal-user-meta p {
    margin: 0;
    font-size: 14px;
    color: var(--bh-text-muted, #a0aec0);
}

.bh-portal-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bh-border-color);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bh-portal-logout-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.bh-portal-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .bh-portal-grid {
        grid-template-columns: 1fr;
    }
}

.bh-portal-sidebar {
    background: var(--bh-bg-card, #12141c) !important;
    border: 1px solid var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.bh-portal-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bh-portal-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--bh-text-muted, #a0aec0);
    transition: all 0.2s ease;
}

.bh-portal-nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.bh-portal-nav-item.active {
    background: var(--bh-danger-color, #c90822) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(201, 8, 34, 0.25);
}

.bh-portal-nav-item .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.bh-portal-content {
    background: var(--bh-bg-card, #12141c) !important;
    border: 1px solid var(--bh-border-color, rgba(255, 255, 255, 0.08)) !important;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
    min-height: 400px;
}

.bh-portal-pane {
    display: none;
}

.bh-portal-pane.active {
    display: block;
    animation: bh-fade-in 0.3s ease-out;
}

.bh-portal-pane h3 {
    margin: 0 0 25px 0;
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 24px;
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: 1px solid var(--bh-border-color);
    padding-bottom: 12px;
}

/* Bookings List Table */
.bh-portal-table-container {
    overflow-x: auto;
}

.bh-portal-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.bh-portal-table th, 
.bh-portal-table td {
    padding: 16px;
    border-bottom: 1px solid var(--bh-border-color);
    font-size: 14px;
}

.bh-portal-table th {
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    font-size: 13px;
    color: var(--bh-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-top: 0;
}

.bh-portal-btn-meet {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
    transition: all 0.2s ease;
}

.bh-portal-btn-meet:hover {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

/* Subscriptions List */
.bh-portal-subscriptions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bh-portal-subscription-card {
    background: #181b25;
    border: 1px solid var(--bh-border-color);
    border-radius: 12px;
    padding: 25px;
}

.bh-sub-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-bottom: 1px solid var(--bh-border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.bh-sub-card-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    font-size: 14px;
    margin-bottom: 20px;
}

.bh-portal-btn-cancel-sub {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-family: var(--bh-font-heading, 'Oswald', sans-serif);
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.bh-portal-btn-cancel-sub:hover {
    background: #ef4444;
    color: #ffffff !important;
    border-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Message Box */
.bh-portal-msg {
    display: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
    font-family: var(--bh-font-body, sans-serif);
}

.bh-portal-msg.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #34d399;
}

.bh-portal-msg.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #f87171;
}



