.sabzkoshan-booking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.sabzkoshan-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    direction: rtl;
}

.sabzkoshan-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sabzkoshan-progress-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sabzkoshan-progress-step.active .sabzkoshan-progress-circle {
    background: #18b272;
    color: #fff;
}

.sabzkoshan-progress-step span {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.sabzkoshan-progress-step.active span {
    color: #18b272;
    font-weight: 400;
}

.sabzkoshan-progress-line {
    width: 60px;
    height: 2px;
    background: #e5e5e5;
    margin: 0 15px;
}

.sabzkoshan-step {
    display: none;
}

.sabzkoshan-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sabzkoshan-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    justify-content: center;
}

.sabzkoshan-step-header i {
    color: #18b272;
    width: 26px;
    height: 26px;
}

.sabzkoshan-step-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: 400;
}

.sabzkoshan-calendar {
    background: #fafafa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.sabzkoshan-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sabzkoshan-calendar-title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.sabzkoshan-calendar-nav {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sabzkoshan-calendar-nav:hover {
    background: #18b272;
    border-color: #18b272;
    color: #fff;
}

.sabzkoshan-calendar-nav i {
    width: 20px;
    height: 20px;
}

.sabzkoshan-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.sabzkoshan-calendar-weekdays div {
    text-align: center;
    font-weight: 400;
    color: #666;
    font-size: 15px;
    padding: 8px 0;
}

.sabzkoshan-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.sabzkoshan-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
    min-height: 42px;
    border: 1px solid #e5e5e5;
}

.sabzkoshan-calendar-day:hover:not(.disabled):not(.empty) {
    background: #e8f5f0;
    border-color: #18b272;
    color: #18b272;
}

.sabzkoshan-calendar-day.today {
    border: 2px solid #18b272;
}

.sabzkoshan-calendar-day.selected {
    background: #18b272;
    border-color: #18b272;
    color: #fff;
}

.sabzkoshan-calendar-day.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    border-color: #f0f0f0;
}

.sabzkoshan-calendar-day.empty {
    background: transparent;
    cursor: default;
    border: none;
}

.sabzkoshan-working-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f0f9f5;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.sabzkoshan-working-hours i {
    color: #18b272;
    width: 20px;
    height: 20px;
}

.sabzkoshan-working-hours span {
    color: #333;
    font-size: 15px;
    font-weight: 400;
}

.sabzkoshan-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
}

.sabzkoshan-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sabzkoshan-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #333;
    font-size: 16px;
}

.sabzkoshan-form-group label i {
    color: #18b272;
    width: 20px;
    height: 20px;
}

.sabzkoshan-form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    background: #fafafa;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sabzkoshan-form-group input:focus {
    outline: none;
    border-color: #18b272;
    background: #ffffff;
}

.sabzkoshan-form-group input::placeholder {
    color: #999;
    font-weight: 400;
}

.sabzkoshan-form-group input.error {
    border-color: #ff4757;
    background: #fff5f5;
}

.sabzkoshan-error-message {
    color: #ff4757;
    font-size: 14px;
    font-weight: 400;
    display: none;
    margin-top: -5px;
}

.sabzkoshan-error-message.show {
    display: block;
}

.sabzkoshan-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sabzkoshan-service-card {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sabzkoshan-service-card:hover {
    border-color: #18b272;
    transform: translateY(-2px);
}

.sabzkoshan-service-card.selected {
    border-color: #18b272;
    background: #e8f5f0;
}

.sabzkoshan-service-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.sabzkoshan-service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.sabzkoshan-service-icon {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18b272;
    border: 1px solid #e5e5e5;
}

.sabzkoshan-service-card.selected .sabzkoshan-service-icon {
    background: #18b272;
    border-color: #18b272;
    color: #fff;
}

.sabzkoshan-service-title {
    font-size: 17px;
    font-weight: 400;
    color: #333;
}

.sabzkoshan-service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.sabzkoshan-step-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
}

.sabzkoshan-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sabzkoshan-btn i {
    width: 20px;
    height: 20px;
}

.sabzkoshan-btn-primary {
    background: #18b272;
    color: #fff;
}

.sabzkoshan-btn-primary:hover:not(:disabled) {
    background: #15a066;
}

.sabzkoshan-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.sabzkoshan-btn-primary.loading {
    opacity: 0.7;
    cursor: wait;
}

.sabzkoshan-btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #e5e5e5;
}

.sabzkoshan-btn-secondary:hover {
    background: #e8e8e8;
}

.sabzkoshan-success-icon {
    text-align: center;
    margin-bottom: 25px;
}

.sabzkoshan-success-icon i {
    width: 90px;
    height: 90px;
    color: #18b272;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.sabzkoshan-step-4 h2 {
    text-align: center;
    color: #18b272;
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 400;
}

.sabzkoshan-step-4 p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 400;
}

.sabzkoshan-booking-summary {
    background: #fafafa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sabzkoshan-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sabzkoshan-summary-item:last-child {
    border-bottom: none;
}

.sabzkoshan-summary-label {
    font-weight: 400;
    color: #333;
    min-width: 110px;
    font-size: 16px;
}

.sabzkoshan-summary-value {
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.sabzkoshan-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sabzkoshan-service-tag {
    background: #e8f5f0;
    color: #18b272;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #d0ebe0;
}

@media (max-width: 968px) {
    .sabzkoshan-booking-container {
        padding: 20px;
    }
    
    .sabzkoshan-progress-bar {
        margin-bottom: 30px;
    }
    
    .sabzkoshan-progress-line {
        width: 40px;
    }
    
    .sabzkoshan-progress-step span {
        font-size: 12px;
    }
    
    .sabzkoshan-services-grid {
        grid-template-columns: 1fr;
    }
    
    .sabzkoshan-calendar-day {
        font-size: 14px;
        min-height: 38px;
    }
}

@media (max-width: 768px) {
    .sabzkoshan-booking-container {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .sabzkoshan-progress-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .sabzkoshan-progress-line {
        width: 30px;
    }
    
    .sabzkoshan-progress-step span {
        display: none;
    }
    
    .sabzkoshan-step-header h2 {
        font-size: 18px;
    }
    
    .sabzkoshan-step-actions {
        flex-direction: column;
    }
    
    .sabzkoshan-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sabzkoshan-calendar {
        max-width: 100%;
    }
    
    .sabzkoshan-working-hours {
        max-width: 100%;
    }
    
    .sabzkoshan-form {
        max-width: 100%;
    }
    
    .sabzkoshan-calendar-day {
        font-size: 13px;
        min-height: 36px;
    }
}