body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 24px;
}

.booking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 16px;
}

.step {
    display: flex;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #2563eb;
    border-color: #2563eb;
    color: white;
}

.step.completed .step-number {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
}

.step-label {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.step.active .step-label {
    color: #111827;
}

.step-arrow {
    margin: 0 8px;
    color: #9ca3af;
}

/* Form Sections */
.form-section {
    display: none;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.form-section.active {
    display: block;
}

/* Custom scrollbar */
.form-section::-webkit-scrollbar {
    width: 8px;
}

.form-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.form-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.form-section::-webkit-scrollbar-thumb:hover {
    background: #555;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.section-description {
    color: #6b7280;
    margin-bottom: 24px;
}

/* Selection Cards */
.selection-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.selection-card {
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selection-card:hover {
    border-color: #2563eb;
}

.selection-card.selected {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.location-icon, .service-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #2563eb;
}

/* Services */
.service-category {
    margin-bottom: 24px;
}

.service-category h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-item {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #2563eb;
}

.service-item.selected {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-next-arrow {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2563eb;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.service-next-arrow:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.service-duration {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.service-price {
    font-weight: 600;
}

/* Provider Selection */
.provider-card {
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.provider-card:hover {
    border-color: #2563eb;
}

.provider-card.selected {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.provider-info {
    display: flex;
    align-items: start;
}

.provider-avatar {
    width: 48px;
    height: 48px;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.provider-details h3 {
    font-weight: 600;
    margin-bottom: 4px;
}

.provider-specialty {
    font-size: 14px;
    color: #6b7280;
}

.rating {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.star {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.star.empty {
    color: #e5e7eb;
}

.divider {
    position: relative;
    margin: 24px 0;
}

.divider-line {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
}

.divider-text {
    position: relative;
    background-color: white;
    padding: 0 16px;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.info-box {
    margin-top: 24px;
    padding: 16px;
    background-color: #eff6ff;
    border-radius: 8px;
}

.info-box-header {
    display: flex;
    align-items: start;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: #2563eb;
    margin-right: 12px;
    margin-top: 2px;
}

.info-content {
    font-size: 14px;
    color: #1e3a8a;
}

.info-list {
    margin-top: 8px;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 4px;
}

/* Date Time Selection */
.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.date-card {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-card:hover {
    border-color: #2563eb;
}

.date-card.selected {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.date-weekday {
    font-size: 12px;
    color: #6b7280;
}

.date-day {
    font-size: 18px;
    font-weight: 600;
    margin-top: 4px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 8px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: #2563eb;
}

.time-slot.selected {
    border-color: #2563eb;
    background-color: #eff6ff;
    color: #2563eb;
}

/* Summary */
.summary-box {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    align-items: start;
    margin-bottom: 16px;
}

.summary-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
    margin-right: 12px;
    margin-top: 2px;
}

.summary-label {
    font-size: 14px;
    color: #6b7280;
}

.summary-value {
    font-weight: 500;
    margin-top: 2px;
}

/* Form Inputs */
.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Keep radios native-sized; avoid text-input styling bleed */
input[type="radio"] {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    accent-color: #2563eb;
}

input[type="radio"]:focus {
    box-shadow: none;
}

.package-option {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
    background-color: #ffffff;
}

.package-option:hover {
    border-color: #2563eb;
}

.package-option.selected {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    margin-left: auto;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-primary:disabled {
    background-color: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
}

.btn-success {
    background-color: #10b981;
    color: white;
}

.btn-success:hover {
    background-color: #059669;
}

.btn-success:disabled {
    background-color: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
}

.total-info {
    margin-top: 24px;
    padding: 16px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.hidden {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    color: #2563eb;
    float: right;
}

.logo {
    width: auto;
    height: auto;
    text-align:center;
    margin-bottom: 25px;
    margin-top: 25px;
}

.logo img {
    display:inline-block;
    width: 250px;
}
