/* ================================================================
   LuxEstate — Book Visit Premium Booking Experience
   ================================================================ */

.bv-page {
    background: var(--lux-navy);
    color: var(--lux-white);
    overflow-x: hidden;
}

/* ---- Hero ---- */
.bv-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    padding: 160px 0 80px;
}

.bv-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bv-hero-media .lux-hero-fallback {
    z-index: 0;
}

.bv-hero-video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bv-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(11, 19, 43, 0.55) 0%,
        rgba(11, 19, 43, 0.75) 45%,
        rgba(11, 19, 43, 0.95) 100%
    );
}

.bv-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.bv-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
}

.bv-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.bv-breadcrumb a:hover { color: var(--lux-gold); }

.bv-breadcrumb-sep { opacity: 0.35; }

.bv-hero-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--lux-gold-soft);
    margin-bottom: 20px;
}

.bv-hero-title {
    font-family: var(--lux-font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 24px;
}

.bv-hero-title em {
    font-style: italic;
    color: var(--lux-gold);
}

.bv-hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
}

/* ---- Booking section ---- */
.bv-booking {
    padding: 0 0 var(--lux-section-pad);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* Progress */
.bv-progress {
    margin-bottom: 48px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.bv-progress-track {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: max-content;
}

.bv-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.35s var(--lux-ease);
    flex-shrink: 0;
}

.bv-progress-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lux-font-num);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: all 0.35s var(--lux-ease);
}

.bv-progress-label {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bv-progress-step.is-active,
.bv-progress-step.is-done {
    color: var(--lux-white);
}

.bv-progress-step.is-active .bv-progress-num,
.bv-progress-step.is-done .bv-progress-num {
    border-color: var(--lux-gold);
    background: rgba(212, 175, 55, 0.12);
    color: var(--lux-gold);
}

.bv-progress-step.is-done .bv-progress-num {
    background: var(--lux-gold);
    color: var(--lux-navy);
}

.bv-progress-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Layout */
.bv-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
}

/* Glass card form */
.bv-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: clamp(28px, 4vw, 48px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.bv-step-panel {
    display: none;
    animation: bvFadeIn 0.5s var(--lux-ease);
}

.bv-step-panel.is-active { display: block; }

@keyframes bvFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.bv-panel-title {
    font-family: var(--lux-font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bv-panel-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Fields */
.bv-field { margin-bottom: 24px; position: relative; }

.bv-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.bv-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 2;
}

.bv-field-float .bv-field-icon { top: 22px; transform: none; }

.bv-input {
    width: 100%;
    padding: 18px 16px 18px 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--lux-white);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.bv-input::placeholder { color: transparent; }

.bv-input:focus {
    outline: none;
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.bv-float-label {
    position: absolute;
    left: 48px;
    top: 18px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
    transition: all 0.25s var(--lux-ease);
}

.bv-input:focus ~ .bv-float-label,
.bv-input:not(:placeholder-shown) ~ .bv-float-label,
.bv-textarea:focus ~ .bv-float-label,
.bv-textarea:not(:placeholder-shown) ~ .bv-float-label {
    top: 8px;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lux-gold-soft);
}

.bv-textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 24px;
}

.bv-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bv-field-error {
    display: block;
    font-size: 0.75rem;
    color: #f87171;
    margin-top: 6px;
    min-height: 1em;
}

.bv-field.is-invalid .bv-input,
.bv-field.is-invalid .bv-select-trigger {
    border-color: #f87171;
}

/* Property selector */
.bv-select-wrap { position: relative; }

.bv-select-trigger {
    width: 100%;
    text-align: left;
    padding: 18px 16px 18px 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--lux-white);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.bv-select-trigger:hover,
.bv-select-trigger.is-open {
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.bv-select-placeholder { color: rgba(255, 255, 255, 0.45); }

.bv-select-trigger .bv-select-value {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bv-select-trigger .bv-select-value img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 2px;
}

.bv-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(17, 24, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 100;
    max-height: 360px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bv-select-dropdown[hidden] { display: none !important; }

.bv-select-search {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lux-white);
    font-size: 0.875rem;
    font-family: inherit;
}

.bv-select-search:focus { outline: none; background: rgba(255, 255, 255, 0.06); }

.bv-select-list {
    list-style: none;
    overflow-y: auto;
    max-height: 300px;
    margin: 0;
    padding: 8px;
}

.bv-select-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.bv-select-item:hover,
.bv-select-item.is-selected {
    background: rgba(212, 175, 55, 0.1);
}

.bv-select-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.bv-select-item-info { flex: 1; min-width: 0; }

.bv-select-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bv-select-item-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bv-select-item-price {
    font-family: var(--lux-font-num);
    color: var(--lux-gold);
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.bv-select-item-badge {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--lux-gold-soft);
    border-radius: 2px;
}

/* Calendar */
.bv-calendar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 8px;
}

.bv-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bv-cal-month {
    font-family: var(--lux-font-display);
    font-size: 1.125rem;
}

.bv-cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--lux-white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.bv-cal-nav:hover {
    border-color: var(--lux-gold);
    color: var(--lux-gold);
}

.bv-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    text-align: center;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.bv-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.bv-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 4px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.25s;
    cursor: pointer;
}

.bv-cal-day:hover:not(:disabled):not(.is-empty) {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--lux-gold);
}

.bv-cal-day.is-selected {
    background: var(--lux-gold);
    color: var(--lux-navy);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.bv-cal-day.is-today:not(.is-selected) {
    border-color: rgba(212, 175, 55, 0.5);
}

.bv-cal-day:disabled,
.bv-cal-day.is-empty {
    opacity: 0.25;
    cursor: not-allowed;
}

.bv-cal-day.is-unavailable {
    opacity: 0.2;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Time slots */
.bv-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 8px;
}

.bv-time-card {
    padding: 16px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.875rem;
    font-family: var(--lux-font-num);
    letter-spacing: 0.04em;
    color: var(--lux-white);
    transition: all 0.3s var(--lux-ease);
    cursor: pointer;
}

.bv-time-card:hover:not(:disabled) {
    border-color: var(--lux-gold);
    color: var(--lux-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bv-time-card.is-active {
    background: var(--lux-gold);
    border-color: var(--lux-gold);
    color: var(--lux-navy);
    font-weight: 600;
}

.bv-time-card:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.bv-time-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 32px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.bv-time-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.45);
}

/* Type & contact buttons */
.bv-type-grid,
.bv-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bv-type-btn,
.bv-contact-btn {
    flex: 1;
    min-width: 120px;
    padding: 14px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.bv-type-btn:hover,
.bv-contact-btn:hover,
.bv-type-btn.is-active,
.bv-contact-btn.is-active {
    border-color: var(--lux-gold);
    color: var(--lux-gold);
    background: rgba(212, 175, 55, 0.08);
}

/* Checkbox */
.bv-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 24px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.bv-checkbox input { position: absolute; opacity: 0; pointer-events: none; }

.bv-checkbox-box {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.25s;
    position: relative;
}

.bv-checkbox input:checked ~ .bv-checkbox-box {
    background: var(--lux-gold);
    border-color: var(--lux-gold);
}

.bv-checkbox input:checked ~ .bv-checkbox-box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--lux-navy);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bv-checkbox a { color: var(--lux-gold); text-decoration: underline; }

/* Buttons */
.bv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s var(--lux-ease);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.bv-btn-gold {
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-soft) 100%);
    color: var(--lux-navy);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}

.bv-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.bv-btn-gold:active { transform: translateY(0); }

.bv-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
}

.bv-btn-ghost:hover {
    border-color: var(--lux-gold);
    color: var(--lux-gold);
}

.bv-btn-outline {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--lux-gold);
}

.bv-btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bv-step-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.bv-btn-submit {
    min-width: 240px;
}

.bv-btn-submit.is-loading .bv-btn-text { opacity: 0; }
.bv-btn-submit.is-loading .bv-btn-loader { display: block !important; }

.bv-btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(11, 19, 43, 0.2);
    border-top-color: var(--lux-navy);
    border-radius: 50%;
    animation: bvSpin 0.7s linear infinite;
    position: absolute;
}

.bv-btn-submit.is-success {
    background: #22c55e;
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.35);
}

.bv-btn-submit.is-success .bv-btn-text,
.bv-btn-submit.is-success .bv-btn-loader { display: none !important; }
.bv-btn-submit.is-success .bv-btn-success { display: block !important; font-size: 1.25rem; }

@keyframes bvSpin { to { transform: rotate(360deg); } }

/* Ripple */
.bv-btn .bv-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: bvRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes bvRipple {
    to { transform: scale(4); opacity: 0; }
}

/* Summary */
.bv-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 24px;
}

.bv-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
}

.bv-summary-row:last-child { border-bottom: none; }

.bv-summary-row span:first-child {
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
}

.bv-summary-row span:last-child {
    text-align: right;
    font-weight: 500;
}

/* Toast */
.bv-toast {
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.bv-toast[hidden] { display: none !important; }

.bv-toast.is-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.bv-toast.is-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* Sidebar */
.bv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.bv-preview-card,
.bv-agent-card,
.bv-contact-card,
.bv-checklist-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.4s var(--lux-ease), box-shadow 0.4s;
}

.bv-preview-card:hover,
.bv-agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.bv-preview-image-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.bv-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--lux-ease);
}

.bv-preview-card:hover .bv-preview-image { transform: scale(1.05); }

.bv-preview-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(11, 19, 43, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--lux-gold);
    backdrop-filter: blur(8px);
}

.bv-preview-body { padding: 24px; }

.bv-preview-title {
    font-family: var(--lux-font-display);
    font-size: 1.25rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bv-preview-price {
    font-family: var(--lux-font-num);
    font-size: 1.375rem;
    color: var(--lux-gold);
    margin-bottom: 12px;
}

.bv-preview-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.bv-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.bv-preview-stats span {
    display: block;
    font-family: var(--lux-font-num);
    font-size: 1.125rem;
    color: var(--lux-white);
}

.bv-preview-stats small {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.bv-card-heading {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lux-gold-soft);
    padding: 20px 20px 0;
}

.bv-agent-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px 20px;
}

.bv-agent-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lux-font-num);
    font-size: 0.875rem;
    color: var(--lux-gold);
    overflow: hidden;
}

.bv-agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bv-agent-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.bv-agent-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.bv-contact-card { padding-bottom: 8px; }

.bv-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.25s, padding-left 0.25s;
}

.bv-contact-link:hover {
    color: var(--lux-gold);
    padding-left: 24px;
}

.bv-checklist {
    list-style: none;
    padding: 12px 20px 20px;
    margin: 0;
}

.bv-checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.bv-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lux-gold);
    font-size: 0.75rem;
}

/* Trust section */
.bv-trust {
    padding: var(--lux-section-pad) 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bv-section-eyebrow {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lux-gold-soft);
    margin-bottom: 12px;
}

.bv-section-title {
    font-family: var(--lux-font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 48px;
}

.bv-trust-header { text-align: center; margin-bottom: 16px; }
.bv-trust-header .bv-section-title { margin-bottom: 0; }

.bv-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.bv-trust-card {
    padding: 32px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    transition: transform 0.4s var(--lux-ease), border-color 0.3s;
}

.bv-trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.25);
}

.bv-trust-icon {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.bv-trust-card h3 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.bv-trust-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* FAQ */
.bv-faq {
    padding: var(--lux-section-pad) 0;
}

.bv-faq-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.bv-faq-intro p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-top: 16px;
}

.bv-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    text-align: left;
    font-family: var(--lux-font-display);
    font-size: 1.0625rem;
    color: var(--lux-white);
    transition: color 0.25s;
}

.bv-faq-trigger:hover { color: var(--lux-gold); }

.bv-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.bv-faq-icon::before,
.bv-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--lux-gold);
    transition: transform 0.3s;
}

.bv-faq-icon::before {
    width: 14px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bv-faq-icon::after {
    width: 1px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bv-faq-item.is-open .bv-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.bv-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--lux-ease);
}

.bv-faq-item.is-open .bv-faq-body {
    max-height: 400px;
}

.bv-faq-body p {
    padding-bottom: 24px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    font-size: 0.9375rem;
}

/* Testimonials */
.bv-testimonials {
    padding: var(--lux-section-pad) 0;
    background: rgba(255, 255, 255, 0.02);
}

.bv-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.bv-testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 2px;
    max-width: 640px;
    margin: 0 auto;
}

.bv-testimonial-stars {
    color: var(--lux-gold);
    font-size: 0.875rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.bv-testimonial-text {
    font-family: var(--lux-font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.bv-testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bv-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lux-font-num);
    color: var(--lux-gold);
}

.bv-testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 2px;
}

.bv-testimonial-card footer span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.bv-testimonial-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.bv-testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--lux-gold);
}

/* CTA */
.bv-cta {
    padding: var(--lux-section-pad) 0;
    text-align: center;
}

.bv-cta-inner {
    padding: 64px 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px;
}

.bv-cta-title {
    font-family: var(--lux-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.bv-cta-inner > p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.bv-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Reveal — visible by default, GSAP enhances */
.bv-reveal { opacity: 1; }

.bv-hero-el { opacity: 0; }

/* Responsive */
@media (max-width: 1200px) {
    .bv-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .bv-layout { grid-template-columns: 1fr; }
    .bv-sidebar { position: static; }
    .bv-faq-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .bv-hero { min-height: 60vh; padding-top: 120px; }
    .bv-field-row { grid-template-columns: 1fr; }
    .bv-trust-grid { grid-template-columns: 1fr 1fr; }
    .bv-progress-label { display: none; }
    .bv-cta-inner { padding: 40px 24px; }
    .bv-glass-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
    .bv-trust-grid { grid-template-columns: 1fr; }
    .bv-time-grid { grid-template-columns: 1fr 1fr; }
    .bv-step-actions { flex-direction: column; }
    .bv-step-actions .bv-btn { width: 100%; }
}
