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

:root {
    --bcf-color-gold: #D4AF37;
    --bcf-color-gold-light: #fffcf5;
    --bcf-color-black: #050505;
    --bcf-color-grey-100: #f8f9fa;
    --bcf-color-grey-200: #eeeeee;
    --bcf-color-grey-500: #888888;
    --bcf-font-main: 'Poppins', sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, button, input, select, textarea, div {
    font-family: var(--bcf-font-main);
}

/* 1. Progress Indicator */
.bcf-booking-progress-bar {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--bcf-color-grey-200);
    margin-top: 70px; /* Offset for fixed navbar */
}

.bcf-progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    gap: 4rem;
}

.bcf-progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    width: 70%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.bcf-progress-step {
    position: relative;
    z-index: 2;
    background: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.bcf-step-circle {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #999;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.bcf-progress-step.bcf-active .bcf-step-circle {
    border-color: var(--bcf-color-gold);
    background: var(--bcf-color-gold);
    color: white;
}

.bcf-progress-step.bcf-completed .bcf-step-circle {
    border-color: var(--bcf-color-gold);
    background: var(--bcf-color-gold);
    color: white;
}

.bcf-step-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    font-weight: 600;
}

.bcf-progress-step.bcf-active .bcf-step-label {
    color: var(--bcf-color-black);
}

/* 2. Step Headings */
.bcf-booking-header {
    margin-bottom: 2rem;
    text-align: center;
}

.bcf-booking-header h1 {
    font-family: var(--bcf-font-main);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: var(--bcf-color-black);
    font-weight: 700;
}

.bcf-booking-header p {
    color: var(--bcf-color-grey-500);
    font-size: 0.95rem;
}

/* 3. Cards & Grids */
.bcf-variant-grid, .bcf-expert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.bcf-variant-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border: 1px solid var(--bcf-color-grey-200);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bcf-expert-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border: 1px solid var(--bcf-color-grey-200);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bcf-variant-card:hover, .bcf-expert-card:hover {
    border-color: var(--bcf-color-gold);
}

.bcf-variant-card.bcf-selected, .bcf-expert-card.bcf-selected {
    border: 1.5px solid var(--bcf-color-gold);
    background: var(--bcf-color-gold-light);
}

.bcf-variant-card h3, .bcf-expert-card h3 {
    font-family: var(--bcf-font-main);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.bcf-variant-desc {
    color: var(--bcf-color-grey-500);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.bcf-variant-price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--bcf-font-main);
}

.bcf-type-features, .bcf-expert-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
    flex-grow: 1;
}

.bcf-type-features li, .bcf-expert-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f8f8;
    color: #777;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.bcf-expert-features li {
    padding: 0.3rem 0;
    border-bottom: none;
    color: #888;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.bcf-type-features li i, .bcf-expert-features li i {
    color: var(--bcf-color-gold);
    margin-right: 1.2rem; /* Consistent distance from icon */
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Expert Specific */
.bcf-expert-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    object-fit: cover;
    border: 2px solid transparent;
    padding: 2px;
    transition: all 0.3s;
}

.bcf-expert-card.bcf-selected .bcf-expert-img {
    border-color: var(--bcf-color-gold);
}

.bcf-expert-role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bcf-color-gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.bcf-expert-sub {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.8rem;
}

.bcf-expert-specialties {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

/* 4. Horizontal Date Picker */
.bcf-date-selector {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bcf-date-selector::-webkit-scrollbar {
    display: none;
}

.bcf-date-option {
    min-width: 80px;
    padding: 1.5rem 1rem;
    background: white;
    border: 1px solid var(--bcf-color-grey-200);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.bcf-date-option:hover {
    border-color: var(--bcf-color-gold);
}

.bcf-date-option.bcf-active {
    background: var(--bcf-color-gold);
    border-color: var(--bcf-color-gold);
    color: white;
}

.bcf-date-option .bcf-day-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.bcf-date-option .bcf-date-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bcf-date-option .bcf-month-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* 5. Time Slots */
.bcf-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.bcf-time-slot-box {
    padding: 1.2rem;
    background: white;
    border: 1px solid var(--bcf-color-grey-200);
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s;
}

.bcf-time-slot-box:hover {
    border-color: var(--bcf-color-gold);
    color: var(--bcf-color-gold);
}

.bcf-time-slot-box.bcf-active {
    background: var(--bcf-color-gold-light);
    border-color: var(--bcf-color-gold);
    color: var(--bcf-color-gold);
    font-weight: 600;
}

/* 6. Buttons */
.bcf-booking-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.bcf-btn-premium {
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--bcf-font-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bcf-btn-gold {
    background: var(--bcf-color-gold);
    color: white;
    border: none;
}

.bcf-btn-gold:hover {
    background: #c5a02c;
    transform: translateY(-2px);
}

.bcf-btn-outline {
    background: white;
    color: #888;
    border: 1.5px solid #ddd;
}

.bcf-btn-outline:hover {
    border-color: var(--bcf-color-gold);
    color: var(--bcf-color-gold);
}

.bcf-btn-text {
    background: transparent;
    border: none;
    color: #777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
}

.bcf-btn-text:hover {
    color: var(--bcf-color-black);
}

/* Desktop/Tablet Adjustments */
@media (max-width: 768px) {
    .bcf-booking-progress-bar { margin-top: 60px; } /* Navbar height changes on mobile */
    .bcf-progress-steps { gap: 1.5rem; }
    .bcf-progress-steps::before { left: 10%; width: 80%; }
    .bcf-step-label { display: none; }
    .bcf-progress-step.bcf-active .bcf-step-label { display: block; position: absolute; bottom: -20px; white-space: nowrap; }
    
    .bcf-variant-grid, .bcf-expert-grid { grid-template-columns: 1fr; }
    .bcf-booking-actions { flex-direction: column-reverse; }
    .bcf-booking-actions button { width: 100%; }
}

@media (max-width: 480px) {
    .bcf-booking-progress-bar { margin-top: 54px; }
}

/* Utility Classes */
.bg-light {
    background-color: #f8f9fa !important;
}

.bcf-section-padding {
    padding: 3rem 0;
}
