.booking-stepper-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stepper-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.stepper-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 64rem;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    text-align: center;
    max-width: 5rem;
    line-height: 1.2;
}

.step-connector {
    flex: 1;
    height: 2px;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.stepper-content {
    background: #ffffff;
    min-height: 24rem;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.step-content.hidden {
    display: none;
}

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

.stepper-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    /* ring: 2px;
    ring-color: #ffd700; */
    box-shadow: 0 0 0 2px #ffd700;
}

.service-card {
    padding: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #ffd700;
    background-color: #fffbeb;
}

.service-card.selected {
    border-color: #ffd700;
    background-color: #fef3c7;
}

.time-slot {
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.time-slot:hover:not(:disabled) {
    border-color: #ffd700;
    background-color: #fffbeb;
}

.time-slot.selected {
    border-color: #ffd700;
    background-color: #fef3c7;
}

.time-slot:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.info-box {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.confirmation-summary {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.pricing-summary {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.summary-item {
    margin-bottom: 1rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-details > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .stepper-navigation {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-item {
        flex: 1;
        min-width: 0;
    }
    
    .step-title {
        font-size: 0.625rem;
        max-width: 4rem;
    }
    
    .stepper-header,
    .stepper-footer {
        padding: 1rem;
    }
    
    .step-content {
        padding: 1rem;
    }
}
