/* Multi-step booking wizard — LabourWala theme colors */
:root {
    --bw-primary: #00c2ff;
    --bw-primary-dark: #0a84ff;
    --bw-primary-hover: #009fd1;
    --bw-primary-soft: #e8f8ff;
    --bw-primary-border: #4dd1ff;
    --bw-danger: #ff3b30;
}

.bw-booking-wrap {
    background: #f8fbff url('../images/services/blue-brushstrokes.png') no-repeat center top;
    background-size: cover;
    padding: 40px 0 80px;
    min-height: 70vh;
}

/* Side-by-side page: content left, booking right (original LabourWala layout) */
.bw-page-section {
    padding-top: 10px;
    padding-bottom: 60px;
}

.bw-layout-row {
    align-items: flex-start;
    gap: 0;
}

.bw-content-col {
    padding-right: 28px;
}

.bw-booking-col {
    position: relative;
}

.bw-booking-sidebar {
    position: sticky;
    top: 100px;
}

.bw-sidebar-title {
    text-align: center;
    color: var(--bw-primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.bw-page-section .bw-card {
    max-width: none;
    margin: 0;
    border: 2px solid var(--bw-primary-border);
    box-shadow: 0 12px 36px rgba(0, 194, 255, 0.12);
}

.bw-page-section .bw-card-header {
    padding: 16px 18px 10px;
}

.bw-page-section .bw-step-body {
    padding: 6px 18px 16px;
    min-height: 260px;
}

.bw-page-section .bw-progress {
    margin: 0 18px 14px;
}

.bw-page-section .bw-footer {
    padding: 12px 18px;
    flex-direction: column;
    align-items: stretch;
}

.bw-page-section .bw-footer-stat {
    width: 100%;
}

.bw-page-section .bw-next-btn {
    width: 100%;
    margin-left: 0;
}

.bw-page-section .bw-city-tile .circle {
    width: 72px;
    height: 72px;
    font-size: 24px;
}

.bw-page-section .bw-city-grid {
    gap: 14px;
}

.bw-booking-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.bw-booking-title span {
    position: relative;
    z-index: 1;
}

.bw-booking-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    width: min(320px, 70%);
    height: 14px;
    background: rgba(0, 194, 255, 0.28);
    z-index: 0;
    border-radius: 4px;
}

.bw-card {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.bw-card-header {
    padding: 22px 28px 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bw-back-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

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

.bw-progress {
    height: 4px;
    background: #eee;
    margin: 0 28px 20px;
    border-radius: 4px;
    overflow: hidden;
}

.bw-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--bw-primary), var(--bw-primary-dark));
    width: 25%;
    transition: width 0.35s ease;
}

.bw-step-body {
    padding: 8px 28px 24px;
    min-height: 320px;
}

.bw-step {
    display: none;
}

.bw-step.active {
    display: block;
    animation: bwFadeIn 0.3s ease;
}

@keyframes bwFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.bw-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 20px;
    font-size: 15px;
}

.bw-city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 10px 0 20px;
}

.bw-city-tile {
    border: none;
    background: none;
    text-align: center;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s;
}

.bw-city-tile:hover { transform: translateY(-3px); }

.bw-city-tile .circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    font-size: 28px;
    color: #555;
    background: #fafafa;
    transition: all 0.2s;
}

.bw-city-tile.is-active .circle,
.bw-city-tile:hover .circle {
    border-color: var(--bw-primary-border);
    background: var(--bw-primary-soft);
    color: var(--bw-primary);
}

.bw-city-tile .name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.bw-gender-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bw-gender-row label {
    font-weight: 600;
    margin: 0;
}

.bw-gender-pill {
    border: 2px solid #e5e5e5;
    background: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.bw-gender-pill.is-active {
    border-color: var(--bw-primary);
    background: var(--bw-primary-soft);
    color: var(--bw-primary-dark);
}

.bw-gender-pill.is-active::before {
    content: '✓ ';
}

.bw-mandatory-note {
    color: var(--bw-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.bw-service-card {
    display: flex;
    gap: 14px;
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: all 0.2s;
    align-items: center;
}

.bw-service-card:hover {
    border-color: #b8e6ff;
    box-shadow: 0 6px 18px rgba(0, 194, 255, 0.12);
}

.bw-service-card.is-selected {
    border-color: var(--bw-primary);
    background: #f0fbff;
}

.bw-service-card.is-mandatory {
    border-color: var(--bw-primary-border);
    background: #f7fdff;
}

.bw-service-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.bw-service-card .info { flex: 1; }

.bw-service-card .title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.bw-service-card .desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.bw-service-card .price {
    font-weight: 700;
    color: #0a84ff;
    font-size: 14px;
}

.bw-service-card .rating {
    font-size: 12px;
    color: #f5a623;
}

.bw-service-card .action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #0a84ff;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.bw-service-card.is-selected .action-btn {
    background: #ff3b30;
    color: #fff;
}

.bw-addon-card.is-gender-disabled {
    opacity: 0.42;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(0.4);
    border-color: #e8e8e8 !important;
    background: #f9f9f9 !important;
    box-shadow: none !important;
}

.bw-addon-card.is-gender-disabled .action-btn {
    background: #c8c8c8;
    color: #fff;
}

.bw-addon-lock-note {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    font-weight: 600;
}

.bw-option-group {
    margin-bottom: 22px;
}

.bw-option-group h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

.bw-option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bw-option-btn {
    border: 2px solid #e5e5e5;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.bw-option-btn.is-active {
    border-color: #00c2ff;
    background: #e8f8ff;
    font-weight: 600;
}

.bw-option-btn input { display: none; }

.bw-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bw-form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.bw-form-group small {
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.bw-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.bw-summary-row strong { color: #333; }

.bw-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 28px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    flex-wrap: wrap;
}

.bw-footer-stat {
    font-size: 13px;
    color: #666;
}

.bw-footer-stat strong {
    color: #00c2ff;
    font-size: 15px;
}

.bw-footer-note {
    font-size: 11px;
    color: #aaa;
    width: 100%;
    margin-top: -8px;
}

.bw-next-btn {
    background: #00c2ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.2s;
}

.bw-next-btn:hover { background: #009fd1; }

.bw-next-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bw-hero-mini {
    text-align: center;
    padding: 20px 0 10px;
}

.bw-hero-mini h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
}

.bw-hero-mini p {
    color: #666;
    max-width: 600px;
    margin: 8px auto 0;
}

.bw-seo-section {
    padding: 40px 0;
    background: #fff;
}

@media (max-width: 991px) {
    .bw-content-col {
        padding-right: 12px;
        margin-bottom: 28px;
    }

    .bw-booking-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .bw-form-grid { grid-template-columns: 1fr; }
    .bw-footer { flex-direction: column; align-items: stretch; }
    .bw-next-btn { width: 100%; margin-left: 0; }
    .bw-city-tile .circle { width: 72px; height: 72px; font-size: 22px; }
}
